Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Video creation from series of images?

Tags:

android

How to create the video from series of png images. Is it possible in android can any body suggest me to do that?

like image 686
Raju Avatar asked Jan 31 '12 05:01

Raju


1 Answers

yes its possible to generate a video (not exactly video, but like video) through the series of images.
There is what you call "mpeg stream" which consists of the JPEG images in the multipart fashion that you read from a source (remote basically) and continuously updating the UI on the screen by parsing it nad fetching the binary content and converting it to objects of bitmap.

If you are having the images locally, you can simply instanciate the bitmap objects and the place them periodically on the UI / ImageView on screen.

What you needs to care about is that the updating frequency should be such that user sees it like a video is playing.
If you have to make a short period video (some animation kinda video) with the help of the already made frames/images, you can follow the link
http://android-support-akkilis.blogspot.com/2011/12/animation-drawbles-in-android.html

Hope this helps

like image 113
akkilis Avatar answered Sep 20 '22 16:09

akkilis