Re: MP3 to WAV converter???

1999-01-06 Thread Pere Camps
Daniel, > >mpg123 -b 1 -s "$1" | sox -t raw -r 44100 -s -w -c2 - "$2" > That's a pretty impressive command line, but I just found out that it > could be done with just 'amp -w mp3name'. Mmmm does amp convert an 112 kb/sec mp3 to the standard 44100/16bit? And anyway, I'm

Re: MP3 to WAV converter???

1999-01-05 Thread Daniel Elenius
Pere Camps writes: >> >> Does anyone know of a MP3 to WAV converter? > >I use mpg123 (there's a debianized package) with sox. The command line is >the following: > >#!/bin/bash ># mp32wav >mpg123 -b 1 -s "$1" | sox -t raw -r 44100 -s -w -

Re: MP3 to WAV converter???

1999-01-05 Thread Mike Deal
> >> Does anyone know of a MP3 to WAV converter? > >> /daniel elenius > > Rheda Barretina writes: > >WinAmp for Windows does it. All you have to do is open the options dialog, > >go to the > >[AUDIO I/O] tab and change "Nullsoft Wave o

Re: MP3 to WAV converter???

1999-01-05 Thread Pere Camps
Hi, > >> Does anyone know of a MP3 to WAV converter? I use mpg123 (there's a debianized package) with sox. The command line is the following: #!/bin/bash # mp32wav mpg123 -b 1 -s "$1" | sox -t raw -r 44100 -s -w -c2 - "$2" And the use is: mp32wav file.mp3 file.wav -- p.

Re: MP3 to WAV converter???

1999-01-05 Thread Daniel Elenius
>> Does anyone know of a MP3 to WAV converter? >> /daniel elenius Rheda Barretina writes: >WinAmp for Windows does it. All you have to do is open the options dialog, go >to the >[AUDIO I/O] tab and change "Nullsoft Wave out (OUT_WAVE.dll)" for "Nulsoft >

MP3 to WAV converter???

1999-01-04 Thread Daniel Elenius
Does anyone know of a MP3 to WAV converter? thanks /daniel elenius