pask23
pask23

Reputation: 734

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?

Upvotes: 4

Views: 5032

Answers (2)

baSSiLL
baSSiLL

Reputation: 276

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

Upvotes: 5

JeffRSon
JeffRSon

Reputation: 11166

Look into the AVIWriter class of Aforge.Net.

Upvotes: 4

Related Questions