6

How can i create a video out of picture frames? So let's say i have about 60 images, and i want to create a video out of them. The format of the video doesn't matter. What language is the best for this idea? Java, c#, or objective c?

aryaxt
  • 76,198
  • 92
  • 293
  • 442
  • 1
    For questions like this, you'll get better answers if you provide more details about your platform and what you are trying to do. Is this part of a program, or is the program only for creating video from frames? Is this Windows, where DirectShow is available, or something else? The more specifics you provide, the better people can help you out. – GrandmasterB Aug 08 '10 at 18:33
  • I am trying to make a program that creates videos out of an array of images. Platform can be windows or mac. I cannot do this with command line, the program suppose to be receiving images through the socket. – aryaxt Aug 08 '10 at 19:18

3 Answers3

6

Easiest is just to use ffmpeg on the commandline Otherwise OpenCv is pretty easy, or you can use the ffmpeg library

Community
  • 1
  • 1
Martin Beckett
  • 94,801
  • 28
  • 188
  • 263
0

the easiest way to achieve this is using mencoder

i wrote a blog post a while ago that shows how http://www.local-guru.net/blog/2010/01/12/making-a-video-from-single-frames

Nikolaus Gradwohl
  • 19,708
  • 3
  • 45
  • 61
0

If you have Matlab available, you can use its movie creation features as well.

ysap
  • 7,723
  • 7
  • 59
  • 122