0

私は周りをグーグルで調べましたが、解決策は見つかりませんでした。rm、rmvb 形式のビデオをサポートするために最新バージョンの FFMPEG をコンパイルするための特定の引数は何ですか? 私はビデオ処理が初めてです。助けてくれてありがとう。

4

1 に答える 1

4

ffmpeg は、Real Video 3.0/4.0 デコードのみをサポートしています。デフォルトで利用できるはずです。実行: ffmpeg -codecs | grep RealVideo. 次のような出力が得られるはずです。

ffmpeg version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers
  built on Jan 25 2013 15:16:27 with llvm_gcc 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/0.11.1 --enable-shared --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --cc=/usr/bin/llvm-gcc --host-cflags='-Os -w -pipe -march=core2 -msse4 -mmacosx-version-min=10.7' --host-ldflags=-L/usr/local/lib --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid
  libavutil      51. 54.100 / 51. 54.100
  libavcodec     54. 23.100 / 54. 23.100
  libavformat    54.  6.100 / 54.  6.100
  libavdevice    54.  0.100 / 54.  0.100
  libavfilter     2. 77.100 /  2. 77.100
  libswscale      2.  1.100 /  2.  1.100
  libswresample   0. 15.100 /  0. 15.100
  libpostproc    52.  0.100 / 52.  0.100
 DEV D  rv10            RealVideo 1.0
 DEV D  rv20            RealVideo 2.0
 D V D  rv30            RealVideo 3.0
 D V D  rv40            RealVideo 4.0

RealVideo 3.0 および 4.0 で Decode(D) オプションが利用可能であることに気付いた場合。

于 2013-03-11T10:09:41.110 に答える