gpt4 book ai didi

image - ffmpeg 将播放图像添加到缩略图输出

转载 作者:行者123 更新时间:2023-12-04 22:51:47 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to add transparent watermark in center of a video with ffmpeg?

(1 个回答)


4年前关闭。




大家好,我目前可以通过执行以下命令行从我的 MP4 视频中获取缩略图:

       [Sets Per-file main options time_off start time offset]
|| [The # of start time offsets]
|| || [Sets input video file option]
|| || || [Video file name here]
|| || || || [Sets video option to # of video frames to record]
|| || || || || [Asking for the first frame]
|| || || || || || [Name of the captured video frame]
|| || || || || || ||
\/ \/ \/ \/ \/ \/ \/
ffmpeg -ss 0 -i vidfile.mp4 -vframes 1 frame.png
现在正如我上面所说,这个命令在生成我的 MP3 视频第一帧的缩略图时工作得很好。但是,我需要在新创建的帧图像之上放置一个“播放”按钮的叠加图像。
是否有另一个命令可以告诉它在 frame.png 顶部覆盖另一个图像?
我想覆盖在框架顶部的图像如下所示(透明 PNG):
enter image description here
任何帮助都会很棒!谢谢!

最佳答案

该命令应该为您完成这项工作:

ffmpeg -ss 30 -i movie.mp4 -i play.png -filter_complex \
"[0:v][1:v]overlay=main_w/2-overlay_w/2:main_h/2-overlay_h/2" \
-vframes 1 output.png

引用 the overlay video filter documentation更多细节。

关于image - ffmpeg 将播放图像添加到缩略图输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25498218/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com