Guest User

vgmstream test.exe mass conversion script for bcstm/wav

a guest
Sep 15th, 2014
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2.  
  3. echo vgmstream - simple mass conversion script
  4. echo michiel@thingmajig.org
  5. echo.
  6. echo invoke using: mass_convert.bat DirectoryName
  7. echo this will convert every .bcstm file in DirectoryName using default settings.
  8. echo.
  9.  
  10. if not exist %1\ (
  11.     echo Directory %1 does not exist. Exiting.
  12.     exit /b 1
  13. )
  14.  
  15. for %%i in (%1\*) do (
  16.    test.exe -o %%i.wav %%i
  17. )
Add Comment
Please, Sign In to add comment