1

I have successfully build ffmpeg for Android and now I need to create video from sequence images so it look like animation video with some default audio. I have found some solution but it all says using command like.

How to do same thing using jni on Android?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Sameer Z.
  • 3,265
  • 9
  • 48
  • 72
  • this can be easily done using [javacv](http://code.google.com/p/javacv/) – Pawan Kumar Nov 11 '13 at 06:35
  • hi,can u create video from the images?i am stuck with in last 2days,i am working on a app in which i have get images from libraries and then make a video of that images,,can you please help me out?? – Farhan Shah Apr 07 '14 at 05:45
  • Sameer if you solved your problem then please share it to me this is a big issue for me. – Farhan Shah Apr 07 '14 at 07:43

1 Answers1

1

try the answer here requiring more chops with jni interfaces that running on CLI like here

You will probably need to do some more reading on the JNI interface and specifically how to integrate call on 'ffmpeg.main()' with the JNI.

Once you have that down, creating mp4 from list of photos and audio is kind of like following in android/JNI...

from git, an example of the interface

Community
  • 1
  • 1
Robert Rowntree
  • 6,230
  • 2
  • 24
  • 43
  • Thank you for answer,i have get the more details from here https://github.com/JayH5/android-ffmpeg-cmdline – Sameer Z. Nov 21 '13 at 05:31