OK, I've tried this on windows and it seems to work.
First you'll need to download Sox for Windows, which you can get here:
http://sourceforge.net/projects/sox/fil ... e/download
To install it, run the downloaded file. Take care with the step where you choose to extract (install) it to. Ensure that you extract it somewhere that you can easily find it and get to it, for example in "My Documents".
Now open NotePad (text editor) and copy/paste this:
Code: Select all
cd %~dp0
mkdir converted
FOR %%A IN (%*) DO sox -t raw -s -2 -r 22050 -c 2 %%A "converted/%%~nxA.wav"
pause
Save the file as "convert.bat" (without quotes). Check that Windows has saved it with exactly that name and has not added ".txt" to the end of the file name.
Copy or move the file
convert.bat into the Sox folder (the same folder that contains the file
sox.exe)
Now make a Desktop shortcut to
convert.bat.
You are now ready to start converting.
Drag and drop one or more of your RAW files onto the Desktop shortcut to
convert.bat
If successful the converted files will be written to a folder called
converted which will be inside the Sox folder.
Good luck, let me know how it goes.