escape commas for mplayer

This commit is contained in:
Josh Holtrop 2012-11-12 22:18:13 -05:00
parent 148105b3d0
commit 751a04e5e4

View File

@ -6,6 +6,7 @@ foreach my $arg (@ARGV)
{
my $out = $arg;
$out =~ s/\....$//;
$out =~ s/\,/\\,/g;
system('mplayer', '-vo', 'null', '-ao', "pcm:file=$out.wav", $arg);
}