使用ffmpeg

时间:2018-08-11 06:28:53

标签: ffmpeg

我有一个目录,其中包含如下所示的图像:

frame0d.jpg
frame1d.jpg
frame2d.jpg
...
frame4297d.jpg

我需要从中创建30 fps的mp4文件。

我已经尝试过命令:

ffmpeg -framerate 30 -i frame%04d.jpg video.mp4

但是失败并显示错误:

[image2 @ 0000026fd7c5a000] Could find no file with path 'frame%04d.jpg' and index in the range 0-4
frame%04d.jpg: No such file or directory

非常感谢!

1 个答案:

答案 0 :(得分:2)

ffmpeg -framerate 30 -i frame%01dd.jpg video.mp4