使用 ffmpeg 从图像构建视频,并在帧之间暂停
我想要一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种解决方案是将输入帧率设置为每秒帧数,然后手动将输出帧率设置为编解码器接受的值。例如:
这将导致每个图像显示一秒钟。
-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:
This would lead to every image to be shown for one second.
-r 0.5
would mean 2 seconds and so on.