web-dev-qa-db-ja.com

ffmpeg:認識されないオプション 'crf'。引数リストの分割中にエラーが発生しました:オプションが見つかりません

2つのビデオ( ここ など)を並べてマージしようとしています。
コマンドを含む完全なログ:

    ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex '[0:v]pad=iw*2:ih[int];[int][1:v]overlay=W/2:0[vid]' -map [vid] -c:v libx264 -crf 23 -preset veryfast output.mp4
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
Unrecognized option 'crf'.
Error splitting the argument list: Option not found

しかし、タイトルにメッセージが記載されています。
Ubuntu17.10リポジトリのffmpegバージョンN-90232-g0645698eccがあります。

2
R S

あなたのffmpegはUbuntu 17.10リポジトリのものではなく、あなたのマシンでコンパイルされたようです。不足している--enable-gpl --enable-libx264を使用するために必要です-c:v libx264。無関係ですが、--disable-x86asm速度が低下するため、お勧めしません。

これを修正するには、いくつかのオプションがあります。

3
llogan