How to create avi video from images?

I need to create a video with text input. I successfully generated an image from text input.

Now I need to generate the avi-format video from the image created above.

How can i do this?

+5
source share
2 answers

Use ffmpeg for free and run on cmd line. on the cmd line with ffmpeg cmd and enter the images as arugemnts and set some parameters and it will do your job.

+2
source

Have a look here: http://www.randelshofer.ch/blog/2008/08/writing-avi-videos-in-pure-java/

This was the second hit when you asked google for "Java create AVI".

+1
source

All Articles