Index: convert.conf =================================================================== --- convert.conf (revision 4041) +++ convert.conf (working copy) @@ -37,31 +37,31 @@ [mov123] $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ -r - - #ogg mp3 * * -# [oggdec] -Q -o - -R $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ -r -x - - +# [oggdec] -Q -o - -R $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ -r -x - - ogg mp3 * * - [sox] -t ogg $FILE$ -t raw -r 44100 -c 2 -w -s $-x$ - | [lame] --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ -r - - + [sox] -t ogg $FILE$ -t raw -r 44100 -c 2 -w -s $-x$ - | [lame] --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ -r - - wav mp3 * * - [lame] --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ $FILE$ - + [lame] --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ $FILE$ - aif mp3 * * - [lame] --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ $FILE$ - + [lame] --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ $FILE$ - shn mp3 * * - [shorten] -x $FILE$ - | [lame] --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ - - + [shorten] -x $FILE$ - | [lame] --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ - - flc mp3 * * - [flac] -dcs --skip=$START$ --until=$END$ -- $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ - - + [flac] -dcs --skip=$START$ --until=$END$ -- $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ - - wma mp3 * * - [wmadec] -r 44100 -b 16 -n 2 $FILE$ | [lame] -x --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ - - + [wmadec] -r 44100 --abr 16 -n 2 $FILE$ | [lame] -x --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ - - mpc mp3 * * - [mppdec] --raw-le --silent --prev --gain 3 $FILE$ - | [lame] -x --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ - - + [mppdec] --raw-le --silent --prev --gain 3 $FILE$ - | [lame] -x --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ - - ape mp3 * * - [mac] $FILE$ - -d | [lame] --resample 44100 -x --silent -q 9 -b $BITRATE$ - - + [mac] $FILE$ - -d | [lame] --resample 44100 -x --silent -q 9 --abr $BITRATE$ - - mp3 mp3 * * - @@ -139,7 +139,7 @@ # special case for smart bitrates on mp3 input mp3 mp3 transcode * - [lame] --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ $FILE$ - + [lame] --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ $FILE$ - flc flc transcode * [flac] -dcs --skip=$START$ --until=$END$ -- $FILE$ | [flac] -cs --totally-silent --compression-level-0 - Index: Slim/Buttons/TrackInfo.pm =================================================================== --- Slim/Buttons/TrackInfo.pm (revision 4041) +++ Slim/Buttons/TrackInfo.pm (working copy) @@ -343,7 +343,7 @@ my $undermax = Slim::Player::Source::underMax($client, $url); - my $rate = (defined $undermax && $undermax) ? $bitrate : Slim::Utils::Prefs::maxRate($client).$client->string('KBPS')." CBR"; + my $rate = (defined $undermax && $undermax) ? $bitrate : Slim::Utils::Prefs::maxRate($client).$client->string('KBPS')." ABR"; push (@{$client->trackInfoLines}, $client->string('BITRATE').": $bitrate " . Index: Slim/Web/Pages.pm =================================================================== --- Slim/Web/Pages.pm (revision 4041) +++ Slim/Web/Pages.pm (working copy) @@ -321,7 +321,7 @@ # for current song, display the playback bitrate instead. my $undermax = Slim::Player::Source::underMax($client,$song); if (defined $undermax && !$undermax) { - $params->{'bitrate'} = string('CONVERTED_TO')." ".Slim::Utils::Prefs::maxRate($client).Slim::Utils::Strings::string('KBPS').' CBR'; + $params->{'bitrate'} = string('CONVERTED_TO')." ".Slim::Utils::Prefs::maxRate($client).Slim::Utils::Strings::string('KBPS').' ABR'; } if (Slim::Utils::Prefs::get("playlistdir")) { $params->{'cansave'} = 1;