views:

278

answers:

4

Hello folks;

Im trying to make a video out of a folder full of jpeg files. I tried google, and everybody is stucked with this. I have downloades de WM SDK and the Encoder, but since the moment I dont know their object model I cant do much.

Does somebody here have some code WORKING about how to create a WMV or an AVI or a MPEG video file out of a folder full of jpegs?? (In C#)

Thanks in advanced ;)

I can see on the answers that apparently there is no way to do it from C#, just using a third party. I will check your suggestions.

A: 

Have you considered using FFMPEG? I've used it to create thumbnails from video in several projects.

CptSkippy
+1  A: 

VirtualDub is capable of making a video out of several image files. Here's a quite overview of how to do it.

FFMPEG, as CptSkippy mentioned, also has this feature.

Falaina
A: 

I finally settled on Splicer. Free, simple to use, and it works. More info at http://stackoverflow.com/questions/539257/working-way-to-make-video-from-images-in-c

Jim Mischel
+1  A: 

Take a look at Corinna John's AVIFile wrapper. I used it in the AVI output plugin for Cropper.

Jon Galloway