Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有 2 个命令,我可以选择将我的水印放在视频的左上角或右上角,但我也有一个水印,我希望将其放在顶部,但我只能将它放在中间视频,有人可以帮我把水印放在视频的顶部吗?这就是我使用的
$watermark = '-vf "movie='.$text_logo_path.' [watermark]; [in][watermark] overlay=10:main_h/2-overlay_h/2 [out]"
我怎样才能让它在 Top-Center 中?
ffmpeg -i input1 -i input2 -filter_complex "overlay=main_w/2-overlay_w/2" out
-filter_complex当您有多个输入和/或输出时使用;此选项还允许您省略movie源过滤器。有关详细信息,请参阅overlay视频过滤器文档。
-filter_complex
movie
overlay