Changes between Version 10 and Version 11 of Encode/AAC
- Timestamp:
- May 1, 2013, 7:45:41 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Encode/AAC
v10 v11 122 122 Freeware Advanced Audio Coder. Requires ffmpeg configuration with the ironic options of `--enable-libfaac --enable-nonfree`. Note that you will not get as good results as with libfdk_aac. 123 123 124 ==== V BRExample ====124 ==== Variable Bit Rate (VBR) Example ==== 125 125 {{{ 126 126 ffmpeg -i input.wav -c:a libfaac -q:a 100 output.m4a … … 129 129 Range for `-q:a` is 10-500 and is similar to using the `-q` option in standalone `faac`. 100 is a good value to try. 130 130 131 ==== CBRExample ====131 ==== Average Bit Rate (ABR) Example ==== 132 132 {{{ 133 133 ffmpeg -i input.wav -c:a libfaac -b:a 128k output.m4a 134 134 }}} 135 136 `libfaac` does not support a true Constant Bit Rate (CBR) mode. 135 137 136 138 ----
