Ubuntu

FFMPEG AAC 編碼器消失了?

  • June 26, 2012

我正在執行 Ubuntu Server 10.04 LTS x64。一年多來,我一直在這台機器上使用 ffmpeg 用 AAC 音頻對 H.264 影片進行編碼。

本週 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缺少 for 編碼。

我已經安裝libfaac-devlibfaac0安裝了,faac事後安裝,看看是否有幫助。沒有骰子。

建議?我歡迎任何建議。謝謝你。

ffmpeg 的各種建構都啟用/禁用了某些模組,通常是出於法律原因。(某些獲得專利的編解碼器以及不能分發的內容通常不能分發,除非以源形式存在,具體取決於國家/地區。)

如果您想要完整的軟體包,您可能必須自己建構它,或者瀏覽 Google 一個小時,搜尋包含您正在尋找的模組的二進製文件。

您可以嘗試使用 Medibuntu 儲存庫。它是一個第三方儲存庫,其中包含無法包含在官方 Ubuntu 儲存庫中的軟體包。

有關詳細資訊,請參閱http://ubuntuforums.org/showthread.php?t=1117283

引用自:https://serverfault.com/questions/313958