Test.exe| convert entire directory of files to wav. by Jack Krowell at 2:10 AM EDT on March 22, 2020
I have a bunch of (and I literally mean a mass ton of) .adpcm files I'm wanting to convert to wav.
How do I convert them all at once using test.exe, you know all as separate .wav files for every corresponding .adpcm file?
convert to wav by MDHEXT at 3:50 AM EDT on March 26, 2020
Try this, I used it in a project. "FOR %%a IN (*.adpcm) DO C:\Users\%USERNAME%\(Directory of test.exe relative to your user folder here)\test.exe -L -o %%~na.wav"
Keep in mind my command isn't looped but includes looping info in the header of the wav file. If opened with fb2k with the vgmstream component installed, the wav file will loop. If played by a normal sound player, it will not loop.