Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert List<images> into a video file?

Tags:

java

image

video

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?

like image 367
Jigar Patel Avatar asked Oct 07 '22 23:10

Jigar Patel


1 Answers

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

like image 98
uris Avatar answered Oct 13 '22 09:10

uris