Bugzilla – Bug 10335
convert.conf error with M4A bit limiting
Last modified: 2012-02-27 17:33:32 UTC
OK, so I got back to my original problem of M4A files ignoring the bitrate limiting. Doing some digging around I've now found out why. In convert.conf you have the line: mov mp3 * * # FRB:{BITRATE=-B %B} [mov123] $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ $RESAMPLE$-v $BITRATE$ -r --big-endian - - Spot the problem? There's an additional space between $QUALITY$ and $RESAMPLE$ and a missing space between $RESAMPLE$ and -v. The line should read: mov mp3 * * # FRB:{BITRATE=-B %B} [mov123] $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ $RESAMPLE$ -v $BITRATE$ -r --big-endian - - With this change in place it actually works.
Looks to me like a couple of the lines in convert.conf can be cleaned up. I suggest the following: Change: mov mp3 * * # FRB:{BITRATE=-B %B} [mov123] $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ $RESAMPLE$-v $BITRATE$ -r --big-endian - - To: mov mp3 * * # FRB:{BITRATE=-B %B}D:{RESAMPLE=--resample %D} [mov123] $FILE$ | [lame] --silent -q $QUALITY$ $RESAMPLE$ -v $BITRATE$ -r --big-endian - - Change: ape mp3 * * # FB:{BITRATE=-B %B}D:{RESAMPLE=--resample %D} [mac] $FILE$ - -d | [lame] --resample 44100 $-x$ --silent -q $QUALITY$ $RESAMPLE$ -v $BITRATE$ - - To: # FB:{BITRATE=-B %B}D:{RESAMPLE=--resample %D} [mac] $FILE$ - -d | [lame] --silent -q $QUALITY$ $RESAMPLE$ -v $BITRATE$ - - Alan, what do you think?
*** This bug has been marked as a duplicate of bug 10334 ***
Reduce number of active targets for SC
Closing resolved bugs - if you feel this bug still exists please first re-test with the latest SW/FW version. If you are able to reproduce then feel free to reopen and attach new logs / steps to reproduce.