ata
ata

Reputation: 9011

Transforming AVI video in .NET

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

Answers (2)

Cecil Has a Name
Cecil Has a Name

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

Related Questions