Batch Command for Converting mp3 to wav in Sound Forge?
-
- KVRer
- 6 posts since 22 Apr, 2004 from Portland, OR, USA
Is there a batch command that will convert multiple mp3 files to wav files in Sound Forge or any other wav editor app?
-
- KVRAF
- 3476 posts since 9 Apr, 2003 from NE Ohio, USA
Not a direct answer to your question, but it's free:Joseph Isaac wrote:Is there a batch command that will convert multiple mp3 files to wav files in Sound Forge or any other wav editor app?
I do batch converts between MP3 and WAV with Musicmatch Jukebox.
Doug
Logic is a pretty flower that smells bad - Spock, in "I, Mudd"
For a good time click http://www.belindabedekovic.com/video_fl_en.htm
For a good time click http://www.belindabedekovic.com/video_fl_en.htm
-
- KVRAF
- 13444 posts since 14 Nov, 2000 from Hannover / Germany
I'm using dbpoweramp (www.dbpoweramp.com ), IMO easily the best free en/decoder for a lot of formats.
Integrates nicely into your right click context menus.
Btw, in case I'm using WaveLab, I can just drag and drop as many MP3s as I like, straight to the program window. Well ok, might not work for hundreds of files... but dbpoweramp will.
Integrates nicely into your right click context menus.
Btw, in case I'm using WaveLab, I can just drag and drop as many MP3s as I like, straight to the program window. Well ok, might not work for hundreds of files... but dbpoweramp will.
There are 3 kinds of people:
Those who can do maths and those who can't.
Those who can do maths and those who can't.
-
- KVRer
- Topic Starter
- 6 posts since 22 Apr, 2004 from Portland, OR, USA
-
- KVRer
- 28 posts since 19 Apr, 2001 from The Palace Of Glittering Delight, UK
you could use winamp. put all of the files into a playlist and use the disk writer output plugin.
- KVRAF
- 2696 posts since 3 Aug, 2003 from Narnia
I thought "Batch Converter" came with Soundforge... Have a look on your Soundforge CD.
Or maybe Sony stopped this when they took it over.

Or maybe Sony stopped this when they took it over.
-
- KVRist
- 450 posts since 2 Nov, 2003 from 'sunny' Gaylord, Michigan, USA
i'd rather have a mullet than a comb-over.
fortunately, i have neither.
fortunately, i have neither.
-
- KVRAF
- 13444 posts since 14 Nov, 2000 from Hannover / Germany
As said before: Why don't you folks just use dbpoweramp? It does EXACTLY what was asked for brilliantly (and a whole bunch of other things as well).
/me shakes head in disbelief
/me shakes head in disbelief
There are 3 kinds of people:
Those who can do maths and those who can't.
Those who can do maths and those who can't.
- KVRAF
- 8114 posts since 13 Jan, 2003 from Darkest Kent, UK
As uncadave shows, this is the case...andywanders wrote:Or maybe Sony stopped this when they took it over.
I never got a working copy anyway, even though I think I was entitled to a copy (free towards the end) I never got it registered successfully...
As much as I love Sound Forge, the lack of inbuilt batch facilities is a major oversight. All these free converters are great (especially DBpoweramp as mentioned) but they can't do the little chopping/trimming/fading jobs that you often need.
.g
-
- KVRAF
- 3964 posts since 31 Aug, 2003 from In a foreign town, in a foreign land
Goldwave?
Groet, Erik
Groet, Erik
Pop music delenda est.


-
- KVRAF
- 1972 posts since 18 Apr, 2004
itunes does batch conversion from mp3 to wav vice versa and other formats too. not to mention it's pi to use and free.
-
- KVRer
- 1 posts since 24 Sep, 2004
unix way (sox and mpg123 or mpg321 are available as
source and are known to run also in windows):
this example uses zsh-syntax
foreach s in ( *.mp3 ) { mpg123 -s $s | sox -t raw -r 44100 -s -w -c 2 - $s.wav }
source and are known to run also in windows):
this example uses zsh-syntax
foreach s in ( *.mp3 ) { mpg123 -s $s | sox -t raw -r 44100 -s -w -c 2 - $s.wav }
-
- KVRAF
- 3964 posts since 31 Aug, 2003 from In a foreign town, in a foreign land
How do you use these in Windows? CygWin?frankzechmann wrote:unix way (sox and mpg123 or mpg321 are available as
source and are known to run also in windows):
this example uses zsh-syntax
foreach s in ( *.mp3 ) { mpg123 -s $s | sox -t raw -r 44100 -s -w -c 2 - $s.wav }
Groet, Erik
Pop music delenda est.

