The VG Resource
Anyone knows a quick way to convert AT9 to WAV? - Printable Version

+- The VG Resource (https://www.vg-resource.com)
+-- Forum: The Resources (https://www.vg-resource.com/forum-109.html)
+--- Forum: The Sounds Resource (https://www.vg-resource.com/forum-112.html)
+---- Forum: Ripping Help (https://www.vg-resource.com/forum-116.html)
+---- Thread: Anyone knows a quick way to convert AT9 to WAV? (/thread-30610.html)



Anyone knows a quick way to convert AT9 to WAV? - Sosfiro - 02-12-2017

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?


RE: Anyone knows a quick way to convert AT9 to WAV? - puggsoy - 02-12-2017

Can you upload a couple of these?


RE: Anyone knows a quick way to convert AT9 to WAV? - Sosfiro - 02-12-2017

Here you have: https://www.mediafire.com/folder/iiyk2ihaq7uyi/AT9


RE: Anyone knows a quick way to convert AT9 to WAV? - puggsoy - 02-12-2017

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!


RE: Anyone knows a quick way to convert AT9 to WAV? - Sosfiro - 02-12-2017

This works perfect!
Thanks, puggsoy. You are the best!