2

I have a big problem. I don't know how to edit video on Android. What I need to do is grab some photos, video and audio from the gallery and somehow merge it together, convert it and save into the gallery. It Sounds very simple but I don't even know what to use for that. Friend told me Unity for Android could do that. Is there a better way ? Thank you !

Arthur Chaykovski
  • 145
  • 1
  • 3
  • 10
  • 1
    try one of this: http://stackoverflow.com/questions/21662723/how-to-make-a-video-from-set-of-images-in-android-like-flipagram , http://stackoverflow.com/questions/13643046/how-to-convert-images-into-video-in-android-using-javacv , http://stackoverflow.com/questions/19900215/android-ffmpeg-create-video-from-sequnce-of-images-using-jni , http://stackoverflow.com/questions/10284708/android-make-animated-video-from-list-of-images – SacreDeveloper Apr 27 '14 at 11:52

2 Answers2

5

The Android SDK does not contain any helpful API for what you are intending to do.

You will have to use an external open source library like FFMPEG for the rendering/conversion/generation of the video and build your own UI around it.

FD_
  • 12,947
  • 4
  • 35
  • 62
0

You can try INDE Media for mobile - https://software.intel.com/en-us/articles/intel-inde-media-pack-for-android-tutorials

It has transcoding\remuxing functionality as MediaComposer class and a possibility to join videos and images

enter image description here

Marlon
  • 1,473
  • 11
  • 13