5

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?

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
Jigar Patel
  • 436
  • 4
  • 9

2 Answers2

2

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

uris
  • 5,993
  • 3
  • 25
  • 24
1

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

Community
  • 1
  • 1
Christian Kuetbach
  • 15,850
  • 5
  • 43
  • 79