我的测试服务器上已经运行了 ffMpeg。我想将所有可能的音频文件转换为 mp3。
我收到错误“未找到编解码器”。
以下是我输入的内容:
/var/www/i/uploads$ sudo /usr/local/bin/ffmpeg -i a.mp3 -f mp3 con.mp3
FFmpeg version SVN-r25385, Copyright (c) 2000-2010 the FFmpeg developers
built on Oct 7 2010 11:56:13 with gcc 4.2.4 (Ubuntu 4.2.4-1ubuntu4)
configuration: --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-libfaac --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-x11grab --disable-yasm
libavutil 50.32. 2 / 50.32. 2
libavcore 0. 9. 1 / 0. 9. 1
libavcodec 52.92. 0 / 52.92. 0
libavformat 52.80. 0 / 52.80. 0
libavdevice 52. 2. 2 / 52. 2. 2
libavfilter 1.48. 0 / 1.48. 0
libswscale 0.12. 0 / 0.12. 0
libpostproc 51. 2. 0 / 51. 2. 0
[mp3 @ 0x123e470] max_analyze_duration reached
Input #0, mp3, from 'a.mp3':
Metadata:
TCON : Classic Rock
TRCK : 16/16
TLAN : eng
TPE1 : Scorpions
TIT2 : Rock You Like A Hurricane
Rip date : 2008-06-17
TYER : 2008
TDAT : 0000
Source : CD
TSSE : LAME 3.97 -V2 --vbr-new
Ripping tool : EAC
Release type : Undifined
TPUB : Universal Music Canada
TIT1 : Barney's Get Psyched Mix
TALB : Barney's Get Psyched Mix
Duration: 00:04:12.52, start: 0.000000, bitrate: 208 kb/s
Stream #0.0: Audio: mp3, 44100 Hz, 2 channels, s16, 208 kb/s
File 'con.mp3' already exists. Overwrite ? [y/N] y
Output #0, mp3, to 'con.mp3':
Stream #0.0: Audio: [0][0][0][0] / 0x0000, 44100 Hz, 2 channels, s16, 64 kb/s
Stream mapping:
Stream #0.0 -> #0.0
Encoder (codec id 86017) not found for output stream #0.0
如何为 ffmpeg 安装 lame mp3 编解码器?
答案1
首先,我看到这是在 Ubuntu 机器上,所以我首先建议你去 Ubuntu wiki ffmpeg 页面。
基本上,您要做的是从源代码编译 ffmpeg,以便它包含 libmp3lame。他们会告诉您如何在此页面上使用更多选项制作 ffmpeg。当您使用 ./configure 开始构建时,您需要添加 --enable-libmp3lame
答案2
所选答案中的链接现已过时。在 Kubuntu 11.04(及更高版本)上,执行以下操作:
sudo apt-get install ffmpeg libavcodec-extra-53
答案3
解决方案可能是手动编译 ffmpeg:
这篇文章建议自己编译 x264 和 ffmpeg。但是使用 Ubuntu 中的 x264 并编译 ffmpeg 就足够了。因此,步骤如下。首先删除 ffmpeg 并确保 x264 已正确安装。
apt-get remove ffmpeg
apt-get update
apt-get install libx264-106 libx264-dev x264
然后,以root身份登录,下载、编译并安装ffmpeg:
su -
svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg
cd ffmpeg
./configure --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --enable-x11grab
make
make install
答案4
要使用 Aptitude 安装正确的编解码器:
sudo apt-get install libmp3lame-dev
根据您使用的发行版和 FFmpeg 的构建,较旧的解决方案可能是可行的。
如果已经使用源代码安装了 FFmpeg,那么必须使用您想要的编解码器的相应开关进行重新配置、构建和安装。
./configure --enable-libmp3lame
make
make install