Guest User

Untitled

a guest
Jul 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #!/usr/bin/perl
  2. foreach $argnum (0 .. $#ARGV) {
  3. $tmp = $ARGV[$argnum];
  4. $ARGV[$argnum] =~ s/\.mp3/\.wav/g;
  5. print "$tmp\n";
  6. system("lame --decode \"$tmp\" \"$ARGV[$argnum]\"");
  7. }
Add Comment
Please, Sign In to add comment