Moving Logo Short Clip
Overview
This article explains how to move a logo short clip using FFmpeg. The detailed context topic, key concepts, and subtitles are covered below.
Detailed Context
Input and Output Files
The input file is a .mp4 video (input.mp4), and the output file will be a modified .mp4 video with a moving logo.
Logo File
The logo file is a .png image (logo.png).
Command Syntax
The command syntax for moving the logo is:
ffmpeg -i input.mp4 -i logo.png -filter_complex "[1:v]scale=200:-1[logo];[0:v][logo]overlay=x=(W-w)/2*(1+sin(2*PI*t/5))..."References
- Books: None
- Articles: None
- Online Resources: FFmpeg Official Documentation