Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I create an H.264 encoded movie from a set of images in c#?

I have been doing a lot of searching today for C# libraries which will allow me to create H.264 encoded video files. Does anyone know if any such libraries or 3rd party components exist?

like image 728
jessegavin Avatar asked Mar 24 '10 16:03

jessegavin


2 Answers

Use ffmpeg. I suggest to run a ffmpeg process directly, like in this sample: http://jasonjano.wordpress.com/2010/02/09/a-simple-c-wrapper-for-ffmpeg/

While the sample doesn't deal with the operation you need, I suggest to adapt it to your needs.

like image 62
eglasius Avatar answered Sep 24 '22 10:09

eglasius


ffmpeg-sharp is probably a good starting point.

like image 21
Diego Mijelshon Avatar answered Sep 22 '22 10:09

Diego Mijelshon