02-12-2017, 09:29 AM
OK, first off you need to download a program here. You don't need to extract the whole thing though, the only file you need from the ZIP is at9tool.exe.
Put this file in a folder with the files you want to convert. Make a new .bat file (called something like "convertall.bat") and put this in it:
Now run the .bat. Once it's done you should have a subfolder called "wav_out" with all the files converted to .wav.
Tell me if that works!
Put this file in a folder with the files you want to convert. Make a new .bat file (called something like "convertall.bat") and put this in it:
Code:
@echo off
mkdir wav_out
for %%f in (*.at9) do (
at9tool -d "%%f" "wav_out\%%~nf.wav"
)
Now run the .bat. Once it's done you should have a subfolder called "wav_out" with all the files converted to .wav.
Tell me if that works!