FFMPEG An Intermediate Guide/watermarks

< FFMPEG An Intermediate Guide

FFmpeg offers the overlay filter as a way to overlay images (or even other videos) onto video streams.

To centre overlay/watermark on a video, use this command[1]:

ffmpeg -i inputvideo.avi -i watermarklogo.png -filter_complex \
"overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2" -codec:a copy output.flv
  1. http://stackoverflow.com/questions/10918907/how-to-add-transparent-watermark-in-center-of-a-video-with-ffmpeg
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.