Did you encounter any kind of solution which would allow me to create a movie from picture frames in Android. This case in iOS is handled by Assets Library Framework, and after my research in Android SDK I need to say there is no similar solution in Android yet.

Do you know any implementation which replicates this feature?

link|improve this question

75% accept rate
feedback

1 Answer

AssetsLibrary Framework allows you to access Video and Photos on iOS. http://developer.apple.com/library/ios/#documentation/AssetsLibrary/Reference/AssetsLibraryFramework/_index.html

MediaStore in android provides similar functionality http://developer.android.com/reference/android/provider/MediaStore.html

link|improve this answer
That is true it's providing me access to this resources, the problem which I'm trying to solve is to create from some pictrues on sdCard a video. In iOS I have a direct access to feature which workes. I don't see anything similar in Android for now. One of possible experiments would be using ffmpg tool, but I would prefere something more native... – Patrick Jan 16 at 11:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.