如何正确格式化 ffmpeg 使用特定编解码器进行解码的请求?

如何正确格式化 ffmpeg 使用特定编解码器进行解码的请求?

r3d 被列为支持的解码编解码器,但是当我尝试指定 r3d 解码器时,我收到错误消息“未知解码器”。指定解码器编解码器的正确方式是什么?

me$ ffmpeg -c r3d -i one.r3d one.mpg
ffmpeg version 1.2 Copyright (c) 2000-2013 the FFmpeg developers
  built on May  8 2013 19:48:08 with Apple clang version 4.0 (tags/Apple/clang-421.0.57) (based on LLVM 3.1svn)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/1.2 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --enable-avresample --enable-vda --cc=cc --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid
  libavutil      52. 18.100 / 52. 18.100
  libavcodec     54. 92.100 / 54. 92.100
  libavformat    54. 63.104 / 54. 63.104
  libavdevice    54.  3.103 / 54.  3.103
  libavfilter     3. 42.103 /  3. 42.103
  libswscale      2.  2.100 /  2.  2.100
  libswresample   0. 17.102 /  0. 17.102
  libpostproc    52.  2.100 / 52.  2.100
[mp3 @ 0x7fa2e4006600] Format mp3 detected only with low score of 1, misdetection possible!
Unknown decoder 'r3d'

答案1

没有r3d编解码器

$ ffmpeg -codecs -v warning | grep r3d | wc
      0       0       0

答案2

问题是我的 ffmpeg 版本没有使用 r3d 支持进行编译,因此虽然它确实出现在

ffmpeg -formats

它没有出现在

ffmpeg -decoders

相关内容