我尝试从 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 ...
错字
您的输入被命名为
frame1.jpg
,frame2.jpg
等,但您的命令中有错字。更改
frame-*.jpg
为frame*.jpg
。零填充
frame1.jpg
因为文件名 ( vs )中没有零填充,所以frame01.jpg
在使用 glob 模式时帧顺序可能不正确。您可以使用ls
查看目录中的文件看到相同的效果。为避免这种情况,请改用默认序列模式:-f image2
不需要。不相关,但
--disable-x86asm
不推荐使用,因为它可能会导致缓慢。