views:

25

answers:

1

Hello,

How can I create a video file from a series of images/photos on Android? Can this be done with the current SDK? or do I need a codec library?

Thanks.

A: 

There is no built-in support for this. You would need to either find some Java source code that does what you need, or some C/C++ code you can turn into a library and use via the NDK. Or, if the end goal is for the video to be on a server, upload the images/photos and have the server create the video.

CommonsWare