使用 ffmpeg 从图像构建视频,并在帧之间暂停

发布于 2024-11-28 22:47:34 字数 218 浏览 0 评论 0原文

我想要一个 ffmpeg 命令用 x 图像制作视频,并在帧更改之间有 y 秒暂停,以便人们可以实际看到图像。根据我所读到的内容,类似下面的命令似乎很接近,但我可以找到如何添加我想要的暂停。

ffmpeg -f image2 -i img%01d-0.jpg -y test.mpg

知道如何添加暂停吗?

I want a ffmpeg command to make a video out of x images with a y sec pause between frame change, so that one can actually see the image. Something like the below command seems close based on what I've read, but I can find out how to add the pause that I want..

ffmpeg -f image2 -i img%01d-0.jpg -y test.mpg

Any idea how to add the pause?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

有深☉意 2024-12-05 22:47:34

一种解决方案是将输入帧率设置为每秒帧数,然后手动将输出帧率设置为编解码器接受的值。例如:

ffmpeg -f image2 -r 1 -i img%01d-0.jpg -y -r 25 test.mpg

这将导致每个图像显示一秒钟。 -r 0.5 表示 2 秒,依此类推。

One solution would be setting the input framerate to frames per second, and then manually setting the output framerate to something accepted by the codec. For example:

ffmpeg -f image2 -r 1 -i img%01d-0.jpg -y -r 25 test.mpg

This would lead to every image to be shown for one second. -r 0.5 would mean 2 seconds and so on.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文