FFmpeg: How to add watermark after 60 seconds?
You can use the enable
option with the gte
function:
ffmpeg -i input.mp4 -i watermark.png \
-filter_complex "overlay=W-w-5:H-h-5:enable='gte(t,60)'" \
-codec:a copy -preset ultrafast output.mp4
You can use the enable
option with the gte
function:
ffmpeg -i input.mp4 -i watermark.png \
-filter_complex "overlay=W-w-5:H-h-5:enable='gte(t,60)'" \
-codec:a copy -preset ultrafast output.mp4