Any chance you could have the following defaults when they're not
explicitly defined?

$BITRATE$ = %B
$START$ = %t
$END$ = %v

So instead of:


Code:
--------------------
    wvp mp3 * *
        # FB:{BITRATE=-B %B}T:{START=--skip=%t}U:{END=--until=%v}
        [wvunpack] $FILE$ -wq $START$ $END$ -o - | [lame] --resample 44100 
--silent -q $QUALITY$ -v $BITRATE$ - -
--------------------


You'd have the much simpler rule:


Code:
--------------------
    wvp mp3 * *
        # F
        [wvunpack] $FILE$ -wq --skip=$START$ --until=$END$ -o - | [lame] 
--resample 44100 --silent -q $QUALITY$ -v -B $BITRATE$ - -
--------------------


And from the look of the current rules, # F would be a better default
than # IF and would again give better backward compatibility to custom
rules that users may already have defined.


-- 
JJZolx

Jim
------------------------------------------------------------------------
JJZolx's Profile: http://forums.slimdevices.com/member.php?userid=10
View this thread: http://forums.slimdevices.com/showthread.php?t=54331

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

Reply via email to