Reputation: 9011
I am doing a project in C#.Net. I wanted to read frames of AVI video, edit them, and then write them in a new AVI file (something like a transform filter)
I know a process in which I can create my own direct show transform filter, but that would be in C++ and I wanted to avoid it.
Is there anyway to accomplish this in .NET?
Upvotes: 2
Views: 1739
Reputation: 4992
There's Splicer which was development specifically for creating or editing video files in .NET, and it is mostly completed. I believe one of the listed features is exactly what you want:
Modify individual video frames during encoding via standard C# mage Drawing code
Upvotes: 1
Reputation: 24515
Have a look at this: http://ffmpegdotnet.codeplex.com/
Edit:
or http://sourceforge.net/projects/taoframework/
Upvotes: 1