WebM エンコードの最初のパスを実行するときに FFmpeg エラーが発生します: 認識されないオプション 'auto-alt-ref'

WebM エンコードの最初のパスを実行するときに FFmpeg エラーが発生します: 認識されないオプション 'auto-alt-ref'

私は OS X Mavericks (10.9.4) を使用しており、homebrew から ffmpeg をインストールしました。

このコマンドを実行する場合(入力ファイルが存在すると仮定):

ffmpeg -i ololo.wmv -vf scale=500:-1 -auto-alt-ref 1 -lag-in-frames 20 -pass 1 ololo.webm

次のような出力が得られます:

ffmpeg version 2.3 Copyright (c) 2000-2014 the FFmpeg developers
  built on Jul 18 2014 22:48:21 with Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/2.3 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --enable-avresample --enable-vda --cc=clang --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid
  libavutil      52. 92.100 / 52. 92.100
  libavcodec     55. 69.100 / 55. 69.100
  libavformat    55. 48.100 / 55. 48.100
  libavdevice    55. 13.102 / 55. 13.102
  libavfilter     4. 11.100 /  4. 11.100
  libavresample   1.  3.  0 /  1.  3.  0
  libswscale      2.  6.100 /  2.  6.100
  libswresample   0. 19.100 /  0. 19.100
  libpostproc    52.  3.100 / 52.  3.100
Unrecognized option 'auto-alt-ref'.
Error splitting the argument list: Option not found

なぜでしょうか?webmproject.orgのこのページこのオプションはそこにあるはずです。

答え1

問題は、デフォルトでは ffmpeg に libvpx が含まれていないことです。
実行するとbrew reinstall ffmpeg --with-libvpx問題はなくなりました。この回答が役に立ちました:https://stackoverflow.com/a/13629348/1418097

関連情報