I am trying to convert images to video with jcodec. The function to get images is:
public void encodeNativeFrame(Picture pic) throws IOException
I can send to this funciton Bitmap or byte array of the same Bitmap coverted to YUV420.
My question is how to convert Bitmap to Picture or convert byte array (byte[]) to Picture.
First, you will need to create a bitmap :
Then, get a canvas in which you will record =
Then, draw the bitmap on your canvas
Then, end the record
Then, the picture will contain your Bitmap.
Here a method doing that :