The VG Resource

Full Version: Anyone knows a quick way to convert AT9 to WAV?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I need help to convert about 15,000 sounds in AT9 format, in a quickly way. 
Does anyone know of any program that can perform the conversion with several of these files at once?
Can you upload a couple of these?
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:

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!
This works perfect!
Thanks, puggsoy. You are the best!