How can I convert image sequence to quicktime movie?

961 Views Asked by At

I have been searching on this. I Need to build an independent utility that should:

  • Convert image sequence to .mov format
  • Take input from user and display it inside the mov.

I plan to do this using Java since this is a cross platform language.

How to do it?

2

There are 2 best solutions below

0
On BEST ANSWER

See JpegImagesToMovie.java it requires the x-plat version of the JMF (or more importantly jmf.jar).

For a more modern alternative, look to JFFMPEG (JMF with more formats & encodings).

0
On

I have earlier used XUGGLER for making videos from image frames. It is easy to use XUGGLER with the help of the comprehensive tutorials available here. You can also add audio to the video generated from the image frames.

Xuggler supports a large number of video codecs and video container formats so you will have the option of creating the video in different formats, leave alone .mov. Hope this helps. I can post my own code for this utility if required.