aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMisty De Meo2014-12-30 12:47:31 -0800
committerMisty De Meo2014-12-30 12:47:31 -0800
commit62865eaac13d8cd015390a052bcc4bf21026998d (patch)
tree40e73bad9a418c06d151b9423c0e8a39bec54288 /Library/Formula
parent9f6926265f8e4be7cc80dfe9042f2cd3c1e8dc9e (diff)
downloadhomebrew-62865eaac13d8cd015390a052bcc4bf21026998d.tar.bz2
ffmpeg: add caveats to document AAC encoder switch
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ffmpeg.rb12
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