我尝试使用来自 repos 和 github 的 ffmpeg。我尝试了这个(也尝试了-c:v some_codec
):
ffmpeg -f image2 -framerate 24 -pattern_type glob -i 'frame-*.jpg' -s WxH 'foo.avi'
ffmpeg version N-90232-g0645698ecc Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 7 (Ubuntu 7.2.0-8ubuntu3.2)
configuration: --disable-x86asm
libavutil 56. 8.100 / 56. 8.100
libavcodec 58. 13.102 / 58. 13.102
libavformat 58. 10.100 / 58. 10.100
libavdevice 58. 2.100 / 58. 2.100
libavfilter 7. 12.100 / 7. 12.100
libswscale 5. 0.102 / 5. 0.102
libswresample 3. 0.101 / 3. 0.101
[image2 @ 0x5579541a5780] Could not open file : frame-*.jpg
[image2 @ 0x5579541a5780] Could not find codec parameters for stream 0 (Video: mjpeg, none(bt470bg/unknown/unknown)): unspecified size
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, image2, from 'frame-*.jpg':
Duration: 00:00:00.04, start: 0.000000, bitrate: N/A
Stream #0:0: Video: mjpeg, none(bt470bg/unknown/unknown), 24 tbr, 24 tbn, 24 tbc
Output #0, avi, to 'foo.avi':
Output file #0 does not contain any stream
输入图像命名如下:
frame1.jpg frame2.jpg ...
答案1
打字错误
您的输入名为frame1.jpg
、frame2.jpg
等,但您的命令中有拼写错误。
改成。frame-*.jpg
frame*.jpg
零填充
由于文件名中没有零填充(frame1.jpg
vs frame01.jpg
),因此使用 glob 模式时帧顺序可能不正确。您可以使用ls
查看目录中的文件看到相同的效果。为避免这种情况,请改用默认序列模式:
ffmpeg -framerate 24 -i frame%01d.jpg output.avi
-f image2
是不需要的。
无关,但--disable-x86asm
不建议使用,因为它可能会导致速度变慢。