I am trying to watermark a video using FFMPEG. I tried following code
NReco.VideoConverter.FFMpegConverter wrap = new FFMpegConverter();
wrap.Invoke("-i D:\\input.mp4 -i D:\\inputImage.png -filter_complex \"overlay=10:10\" D:\\Output.mp4");
but it gives error
ffmpeg: Invalid argument (exit code: 1)
I tried searching if i could use such kind of method(invoke) in AForge, splicer or in other library.
I came across many another questions on stackoverflow like which uses ffmpeg exe. I don't know where i can find it.
I also found this link from official ffmpeg website for windows but can not find any such thing
I have just started working on video processing in c# so i am very confused about the concepts kindly help me to get a start.