FFMPEG Watermark in video
Hi guys!
Does anyone know which command to use to watermark(.png) videos during encoding.
This is the regular command line to encode video into mp4
-acodec libfaac -keyint_min 20 -r 20 -vcodec libx264 -crf 22 -b 1000k -bt 1000k -y -v 0 -bf 16 -threads 0
All i need is to add a command to watermark the video.
This is what ffmpeg.org tells
Insert a transparent PNG logo in the bottom left corner of the input, using the ffmpeg tool with the -filter_complex option:
ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
Just can't get this working. Any help would be appreciated. On a side not, i use the mechbunny script in case it's of any usefull info.
|