Reputation: 446
I having list of Image
instances and want to convert this into a video file it is possible.
List<Images> images..
How can I convert List into a video file?
Upvotes: 5
Views: 6203
Reputation: 6123
You can use xuggler - http://www.xuggle.com/xuggler/ Xuggler is a free open-source library for Java developers for video manipulation, it uses the very powerful FFmpeg media handling libraries under the hood, essentially playing the role of a java wrapper around them.
nice tutorial: http://www.javacodegeeks.com/2011/02/introduction-xuggler-video-manipulation.html
Upvotes: 2
Reputation: 16060
You need a library for creating this. There are some post here about that:
Looking for a java package to create video
Video Creation from a set of images with xuggler
or a tutorial there: http://www.javacodegeeks.com/2011/02/xuggler-tutorial-frames-capture-video.html
Upvotes: 1