1

ffmpeg 库是否带有 MP3 编码器?

这个:

AVCodec *pCodec = avcodec_find_encoder(AV_CODEC_ID_MP3);

总是返回 null。我还尝试了 AV_CODEC_ID_MP3ADU 和 AV_CODEC_ID_MP3ON4,它们也返回 null。我发现的唯一编码编解码器是 AV_CODEC_ID_MP2。

任何帮助表示赞赏

4

1 回答 1

4

libmp3lamemp3ffmpeg的编码器。它需要在构建的配置阶段启用。--enable-libmp3lame应该启用它。你也应该libmp3lame-dev安装。我按照本指南安装 ffmpeg:https ://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide

要快速检查您是否已经拥有它:

$ ffmpeg -codecs | grep mp3
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
  EA    libmp3lame      libmp3lame MP3 (MPEG audio layer 3)
 D A D  mp3             MP3 (MPEG audio layer 3)
 D A D  mp3adu          ADU (Application Data Unit) MP3 (MPEG audio layer 3)
 D A D  mp3adufloat     ADU (Application Data Unit) MP3 (MPEG audio layer 3)
 D A D  mp3float        MP3 (MPEG audio layer 3)
 D A D  mp3on4          MP3onMP4
 D A D  mp3on4float     MP3onMP4

您可以看到 E(编码器)可用于 libmp3lame。

于 2013-03-13T02:09:42.937 回答