Initial Commit

This commit is contained in:
2021-02-28 15:24:49 -06:00
commit 8b9a79de53
5 changed files with 221 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
:: 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"
)