4

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.

Erçin Dedeoğlu
  • 4,950
  • 4
  • 49
  • 69

3 Answers3

2

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");
Mohit S
  • 13,723
  • 6
  • 34
  • 69
1

What about the great framework from AForge?

http://www.aforgenet.com/

jmelhus
  • 1,130
  • 2
  • 12
  • 28
0

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

Mohit S
  • 13,723
  • 6
  • 34
  • 69
Brian H
  • 1,033
  • 2
  • 9
  • 28