files/convert-to-wav.pl
2010-09-19 20:40:32 -04:00

12 lines
169 B
Perl

#!/usr/bin/perl -w
use strict;
foreach my $arg (@ARGV)
{
my $out = $arg;
$out =~ s/\....$//;
system('mplayer', '-vo', 'null', '-ao', "pcm:file=$out.wav", $arg);
}