Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Video processing in .NET

Tags:

.net

video

I want to open .avi file (preferably any video file), to work with that video as a sequence of bitmaps (arrays) and then display it on the screen or save it to the file.

What options do I have in .NET?

like image 346
Jakub Šturc Avatar asked Apr 22 '09 08:04

Jakub Šturc


2 Answers

It turns out that Splicer was the best option for me. It is open source wrapper around DirectShow.Net. The programming model is so simple that even I was able to understand it.

like image 136
Jakub Šturc Avatar answered Nov 10 '22 00:11

Jakub Šturc


I've been using this C# AVIFile wrapper on CodeProject to convert bitmap -> AVI and it can also do the reverse.

like image 38
MrTelly Avatar answered Nov 10 '22 00:11

MrTelly