Files
JakAudioTools/out_convert.bat
T
2021-02-28 15:24:49 -06:00

5 lines
177 B
Batchfile

:: This works if all the files in the VAGp folder are mono compressed ADPCM
mkdir "./OUT/WAV"
for %%f in (./OUT/VAGp/*) do (
ffmpeg -i "./OUT/VAGp/%%f" "./OUT/WAV/%%~nf.wav"
)