Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- echo vgmstream - simple mass conversion script
- echo michiel@thingmajig.org
- echo.
- echo invoke using: mass_convert.bat DirectoryName
- echo this will convert every .bcstm file in DirectoryName using default settings.
- echo.
- if not exist %1\ (
- echo Directory %1 does not exist. Exiting.
- exit /b 1
- )
- for %%i in (%1\*) do (
- test.exe -o %%i.wav %%i
- )
Add Comment
Please, Sign In to add comment