From 4c5423c55db1dce2481adb2c83c5fed1caa28efe Mon Sep 17 00:00:00 2001 From: Thomas Gideon Date: Thu, 14 Oct 2010 13:21:46 -0400 Subject: [PATCH] Change faac arguments to improve subject quality of the encoded file. --- encode.bash | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/encode.bash b/encode.bash index 6846464..c057f45 100755 --- a/encode.bash +++ b/encode.bash @@ -100,9 +100,11 @@ flac \ cmdln.net_${date}.wav # AAC encoding, lossy -faac -q 100 \ --b 128 \ --c 44100 \ +# docs recommend against setting bandwidth and bitrate setting +# doesn't seem to result in the desired quality as tweaking +# the quality setting (max 500)--200 was arrived at by iteratively +# encoding the same raw audio and subjective listening to the results +faac -q 200 \ -o cmdln.net_${date}.m4a \ --title "${title}" \ --artist "${artist}" \