我正在运行Ubuntu Server 10.04 LTS x64.我一直在这台机器上使用ffmpeg用AAC音频编码H.264视频超过一年.
原文链接:https://www.f2er.com/ubuntu/348026.html本周对ffmpeg软件包进行了更新,似乎打破了AAC编码器.
我正在使用的命令:
/usr/bin/ffmpeg -y -i '/tmp/original.mov' -acodec libfaac -ar 44100 -ab 128k -vcodec libx264 -level 41 -crf 25 -r 25 -s '1280'x'720' -bufsize 250000k -maxrate 2500k -vpre lossless_slower '/tmp/converted.mp4'
转换失败,出现此错误:
Unknown encoder 'libfaac'
输出ffmpeg -v:
FFmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1.2,Copyright (c) 2000-2009 Fabrice Bellard,et al. configuration: --extra-version=4:0.5.1-1ubuntu1.2 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enable-bzlib --enable-libgsm --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis --enable-pthreads --enable-zlib --disable-stripping --disable-vhook --enable-runtime-cpudetect --enable-gpl --enable-postproc --enable-swscale --enable-x11grab --enable-libdc1394 --enable-shared --disable-static libavutil 49.15. 0 / 49.15. 0 libavcodec 52.20. 1 / 52.20. 1 libavformat 52.31. 0 / 52.31. 0 libavdevice 52. 1. 0 / 52. 1. 0 libavfilter 0. 4. 0 / 0. 4. 0 libswscale 0. 7. 1 / 0. 7. 1 libpostproc 51. 2. 0 / 51. 2. 0 built on Sep 16 2011 17:08:44,gcc: 4.4.3 ffmpeg: missing argument for option '-v'
ffmpeg -formats的适用输出:
Codecs: D A aac Advanced Audio Coding
缺少用于编码的E.
我已经安装了libfaac-dev和libfaac0,并在事后安装了faac以查看是否有帮助.没有骰子.
建议?我欢迎任何建议.谢谢.