Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FFMPEG watermark video without re encoding or losing quality

I'm trying to watermark on video but there is any way to do it without re encoding video for losing quality?

Im trying with simple command:

ffmpeg -i input.flv -vf "movie=logo.png [watermark]; [in][watermark] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]"  output.flv
like image 349
user994461 Avatar asked Jan 25 '15 18:01

user994461


1 Answers

The answer is no, watermark is designed to merge into the video which is not easy to be removed perfectly, so ffmpeg have to decode original video, merge the original video together with watermark logo, and then re-encode it to form a new video clip.

like image 71
ravin.wang Avatar answered Oct 23 '22 00:10

ravin.wang