Watermarking on existing video

狂风中的少年 提交于 2019-12-06 04:14:36

问题


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

As writing text on it.

Image or text label...

How can I do it? Thanks.


回答1:


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");



回答2:


What about the great framework from AForge?

http://www.aforgenet.com/




回答3:


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



来源:https://stackoverflow.com/questions/21382787/watermarking-on-existing-video

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!