diff options
| author | Misty De Meo | 2014-12-30 12:47:31 -0800 |
|---|---|---|
| committer | Misty De Meo | 2014-12-30 12:47:31 -0800 |
| commit | 62865eaac13d8cd015390a052bcc4bf21026998d (patch) | |
| tree | 40e73bad9a418c06d151b9423c0e8a39bec54288 /Library | |
| parent | 9f6926265f8e4be7cc80dfe9042f2cd3c1e8dc9e (diff) | |
| download | homebrew-62865eaac13d8cd015390a052bcc4bf21026998d.tar.bz2 | |
ffmpeg: add caveats to document AAC encoder switch
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ffmpeg.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/ffmpeg.rb b/Library/Formula/ffmpeg.rb index b8dafc961..591225ca8 100644 --- a/Library/Formula/ffmpeg.rb +++ b/Library/Formula/ffmpeg.rb @@ -155,4 +155,16 @@ class Ffmpeg < Formula end end + def caveats; <<-EOS.undent + FFmpeg has been built without libfaac for licensing reasons. + To install with libfaac, you can: + brew reinstall ffmpeg --with-faac + + You can also use the libvo-acenc or experimental FFmpeg encoder to + encode AAC audio: + -c:a libvo_aacenc + Or: + -c:a aac -strict -2 + EOS + end unless build.with? "faac" end |
