Video Delogo Tool

Helper tool to generate ffmpeg commands using the delogo filter to remove target elements.
Drag and drop a video file here
Docs / FAQ

Overview

FAQ

Example (segment in the middle of a clip)

This produces three segments:

Generated command shape:

ffmpeg -i "MyVideo.mp4" -map 0 -c copy -f segment -segment_times 0:01:30,0:02:30 SEGMENT%02d.mp4 \
&& ffmpeg -i "SEGMENT01.mp4" -map 0 -c copy -c:v libx264 -crf 20 -vf delogo=740:962:416:44 "SEGMENT01_logo_removed.mp4" \
&& echo "file 'SEGMENT00.mp4'" > CONCAT_SEGMENTS.txt \
&& echo "file 'SEGMENT01_logo_removed.mp4'" >> CONCAT_SEGMENTS.txt \
&& echo "file 'SEGMENT02.mp4'" >> CONCAT_SEGMENTS.txt \
&& ffmpeg -f concat -i CONCAT_SEGMENTS.txt -c copy -map 0 "MyVideo_logo_removed.mp4"

What the flags mean (quick)