Farrakh Javed
Farrakh Javed

Reputation: 153

Create video from series of images using android

I'm trying to write an android application in which we allow user to create video from series of images. I did lot of investigation like C/C++ libraries FFMPEG, X264. These can be used using NDK, but i dont know how to use it via NDK, i also did investigation but did not get about this. I find another library JCodec It is java based. I tried different codes of JCodec but did not get any success. Below are Links related to JCodec:

this, this and this.

Now can anyone guide me about this question and can i have some suggestion how to implement this feature.

Upvotes: 0

Views: 1538

Answers (1)

G3M
G3M

Reputation: 1031

FFMpeg or X264 is your best bet to create videos from a series of images. Both of them have detailed instructions on how to integrate this library into an android application. You can just add the *.so files into your jni/libs folder and invoke them from your Java code. I recommend you read thru the instructions provided on the FFMPeg site. You can also find the precompiled FFMPeg library here

Upvotes: 2

Related Questions