On Tuesday 23 November 2004 04:33 pm, Aron Smith wrote:
> On Tuesday 23 November 2004 11:42 am, Anders Lind wrote:
> > Hello again,
> >
> > another question, is there a software to convert MP3 to wav with...I
> > tried using XMMS but it seems that the plugin that is supposed to be
> > there for it is not.
> >
> > Best Regards,
> > Anders
>
> mp32wav i think

Heres a little script I use that was posted a long, long time ago here.  
Requires mpg123 installed to work:

#!/bin/bash
# mp32wav

mp3file="$*"
mkdir wav


for file in "$@"  ; do
        #echo "$file"
        wavfile=`echo "$file" | sed s/\\.mp3/.wav/`
        printf "%-50s %-50s\n" "$file" "--> $wavfile"

        # to encode wav-->mp3
        #lame -h "$file" "$mp3file"

        # to encode mp3-->wav
        mpg123 -b 10000 -s "$file" | sox -t raw -r 44100 -s -w -c2 - 
"wav/$wavfile"
done

HTH

-- 
Chris
Registered Linux User 283774 http://counter.li.org
8:53pm up 20 days, 1:21, 1 user, load average: 0.67, 0.61, 0.54
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Life is the childhood of our immortality.
                -- Goethe
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Live - From Virgin Radio UK Cars - Just what I needed


____________________________________________________
Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com
____________________________________________________

Reply via email to