I'm not sure that I would classify it as a bug, just an omitted piece of
functionality.

If you want to hack up a solution yourself, then just add a *g* to the
variable substitution in TranscodingHelper.pm:

Code:
--------------------
    
        foreach (keys %subs) {
                $command =~ s/\$$_\$/$subs{$_}/;
        }
  
--------------------

with

Code:
--------------------
    
        foreach (keys %subs) {
                $command =~ s/\$$_\$/$subs{$_}/g;
        }
  
--------------------


You could also file an enhancement request.

Alan.


-- 
awy
------------------------------------------------------------------------
awy's Profile: http://forums.slimdevices.com/member.php?userid=7480
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