打字錯誤

打字錯誤

我嘗試從 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.jpgframe2.jpg等,但您的命令中有一個拼字錯誤。

改成。frame-*.jpgframe*.jpg

零填充

frame1.jpg由於檔案名稱 ( vs )中沒有零填充,因此frame01.jpg使用 glob 模式時幀順序可能不正確。使用ls查看目錄中的檔案可以看到相同的效果。為了避免這種情況,請改用預設序列模式:

ffmpeg -framerate 24 -i frame%01d.jpg output.avi

-f image2不需要。

不相關,但--disable-x86asm不建議使用 進行構建,因為它可能會導致速度緩慢。

相關內容