What you could do is force all formats to be played through lame under
file types, and change the transcoding options to force a non-vbr
bitrate.

You may want to look at the convert.conf config file.

Take this entry for example:

Code:
--------------------
    
  wav mp3 * *
  [lame] --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ $FILE$ -
  
--------------------


You would want to change it to this:

Code:
--------------------
    
  wav mp3 * *
  [lame] --resample 44100 --silent -q 2 --cbr -b 128 $FILE$ -
  
--------------------


As long as your CPU can handle that quality rate at 128kbps, it will
force-format the output to the correct bitrate.


-- 
SuperQ
------------------------------------------------------------------------
SuperQ's Profile: http://forums.slimdevices.com/member.php?userid=2139
View this thread: http://forums.slimdevices.com/showthread.php?t=46262

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/plugins

Reply via email to