Users browsing this thread: 1 Guest(s)
Anyone knows a quick way to convert AT9 to WAV?
#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


Messages In This Thread
RE: Anyone knows a quick way to convert AT9 to WAV? - by puggsoy - 02-12-2017, 09:29 AM

Forum Jump: