Erçin Dedeoğlu
Erçin Dedeoğlu

Reputation: 5383

Watermarking on existing video

I'm looking for a method to watermarking on a video with C#.

As writing text on it.

Image or text label...

enter image description here

How can I do it? Thanks.

Upvotes: 4

Views: 4106

Answers (3)

Brian H
Brian H

Reputation: 1041

The great people at Splicer for .Net have already developed some C# code that does what you are looking for, but unfortunately I have heard that it takes a while to complete.

At least this can serve as a starting point if nothing else

Upvotes: 0

Amit Baghel
Amit Baghel

Reputation: 31

You can use Nreco Video Converter

The Code will look like

NReco.VideoConverter.FFMpegConverter wrap = new FFMpegConverter();
wrap.Invoke("-i D:\\input.mp4 -i D:\\inputImage.png -filter_complex \"overlay=10:10\" D:\\Output.mp4");

Upvotes: 2

jmelhus
jmelhus

Reputation: 1140

What about the great framework from AForge?

http://www.aforgenet.com/

Upvotes: 1

Related Questions