嘿伙计们,我试图在ffmpeg的视频中覆盖图像,如下所示:
ffmpeg -i video.mp4 -i image.png -filter_complex "[0:v][1:v] overlay=25:25:enable='between(t,0,20)'" -pix_fmt yuv420p -c:a copy output.mp4
但图像放在视频的左上角。如何将图像调整到中心?
答案 0 :(得分:9)
使用
ffmpeg -i video.mp4 -i image.png -filter_complex "[0:v][1:v] overlay=(W-w)/2:(H-h)/2:enable='between(t,0,20)'" -pix_fmt yuv420p -c:a copy output.mp4
W
amd H
是基本视频的尺寸。 w
和h
叠加视频。