If your files are *.wma, i have a perl script to convert wma in mp3 file.
--------------------------------
#!/usr/bin/perl -w
use strict;
my $log="\n";
foreach my $file (@ARGV) {
next if ($file !~ /\.wma$/i);
my $base = $file; $base =~ s/\.wma$//i;
system "mplayer -quiet \"$file\" -ao pcm -aofile \"$base.wav\"";
system "lame -h \"$base.wav\" \"$base.mp3\"";
unlink("$base.wav");
$log.="$base.wma converted to mp3.\n";
}
print "$log";
--------------------------------
you must emerge lame and mplayer, it's all.

Alexander Plank wrote:
I dont think .wav files are a microsoft format. Do you mean .wma files?


-- [EMAIL PROTECTED] mailing list




--
[EMAIL PROTECTED] mailing list



Reply via email to