Users browsing this thread: 1 Guest(s)
Anyone knows a quick way to convert AT9 to WAV?
#1
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?
Reply
Thanked by:
#2
Can you upload a couple of these?
You may have a fresh start any moment you choose, for this thing that we call "failure" is not the falling down, but the staying down. -Mary Pickford
Reply
Thanked by:
#3
Here you have: https://www.mediafire.com/folder/iiyk2ihaq7uyi/AT9
Reply
Thanked by:
#4
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!
You may have a fresh start any moment you choose, for this thing that we call "failure" is not the falling down, but the staying down. -Mary Pickford
Reply
Thanked by: Sosfiro
#5
This works perfect!
Thanks, puggsoy. You are the best!
Reply
Thanked by: puggsoy


Forum Jump: