Neil Hollow wrote:
> Can anyone recommend software converting mp3 to wavs pref X window point and
> click.  Ta. NH

I was faced with (and asked) this same question recently.  I was unable to find any 
GUI applications to accomplish this, however, thanks to the fine folks on this list, I 
arrived at the following solution:

#!/usr/bin/perl
# makewav
# 
# this programs converts mp3 files to wav files.
# it asumes that the mp3 files to be converted are located in /music/wavs
# it places the newly created wav file in the current working directory

# get the list of songs (change dir to suit your needs)
@list = `ls -A /music/wavs/*.mp3`;

# convert to wav files
foreach $file (@list) {
        chomp($file);
        print("processing $file\n");
        `mpg123 -q -b 10000 -s "$file" | sox -t raw -r 44100 -s -w -c2 - "$(basename 
'$file' mp3)wav"`;
}

Hope this helps.
--
steve



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to