Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C#: convert a stream of bitmap images to avi file

My application receives a sequence of images (BitmapImage) from an external device with rate 30 fps.

I need to create an avi file from this images and then, save it on filesystem. How can I obtain this result? Are there any C# libraries can I use for this purpose?

like image 823
pask23 Avatar asked Jan 13 '23 08:01

pask23


2 Answers

Check out the SharpAvi library I've written for my projects. It supports large file sizes (no 2GB limit).

like image 158
baSSiLL Avatar answered Jan 15 '23 21:01

baSSiLL


Look into the AVIWriter class of Aforge.Net.

like image 21
JeffRSon Avatar answered Jan 15 '23 22:01

JeffRSon