Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create Video out of image files?

I'm trying to make a video out of a folder full of jpeg files. I tried Google, and everybody is stuck with this. I have downloaded the WM SDK and the Encoder, but since the moment I don't 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#)

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.

like image 288
MRFerocius Avatar asked Dec 23 '22 10:12

MRFerocius


2 Answers

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

like image 57
Jon Galloway Avatar answered Jan 26 '23 00:01

Jon Galloway


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.

like image 28
Falaina Avatar answered Jan 26 '23 00:01

Falaina