I need to create video from images, I have seen jcodec and I think it is what I need: http://jcodec.org/
How do I add jcodec to my project? I have seen there is a version for android. Correct me if I am wrong, but I added jcodec-0.1.5.jar to my project under the libs folder. Then added SequenceEncoder.java and BitmapUtil.java from jcodec-android-0.1.7.zip to my package but when I add:
public void encodeImage(Bitmap bi) throws IOException
{
encodeNativeFrame(BitmapUtil.fromBitmap(bi));
}
It gives me error on package com.example.seqtest and asks me to configure build path.
So how I use it, How can I input sequence of images? Can you provide me some example?