I want to make video of my android screen(what i am doing on the android screen) programatically.
Is there any best tutorial or help regarding this. I have searched a lot but i found that thing...(Capture the android screen picture programtically). Ok fine if i capture a lot of images after each milliseconds than how i make video with a lot of captured images in android programmatic.
As long as you have bitmaps you can flip it into video using JCodec ( http://jcodec.org ).
Here's a sample image sequence encoder: https://github.com/jcodec/jcodec/blob/master/src/main/java/org/jcodec/api/SequenceEncoder.java . You can modify it for your purposes by replacing BufferedImage with Bitmap.
Use these helper methods:
You can as well wait for JCodec team to implement full Android support, they are working on it according to this: http://jcodec.org/news/no_deps.html
you can use following code for screen capturing in Android.
Please view this url..... http://android-coding.blogspot.in/2011/05/create-custom-dialog-with-dynamic.html
you can use following code for screen capturing in Android.
For Creating Video from Images visit this link.