mirror of
https://github.com/jwetzell/JakAudioTools.git
synced 2026-07-26 10:08:39 +00:00
5 lines
177 B
Batchfile
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"
|
|
) |