Advertisement
Saijin_Naib

OPUSenc Batch

Jan 26th, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. @ECHO OFF
  2. if [%1]==[] goto Quit
  3.  
  4. ECHO OPUS File Encoder.
  5. opusenc.exe --version
  6. ECHO --------------------------------------------------------------------------------
  7.  
  8. :loop
  9. title Encoding "%~nx1" into OPUS
  10. set Filename="%~n1"
  11. ECHO Encoding "%~n1"...
  12. opusenc.exe %1 %Filename%.opus
  13. ECHO Encoded %~nx1 into %~n1.opus
  14. title Encoded "%~nx1..." into OPUS
  15. ECHO.
  16. ECHO --------------------------------------------------------------------------------
  17. ECHO.
  18. shift
  19. if not [%1]==[] goto loop
  20.  
  21. :Quit
  22. title Encoding files into OPUS complete.
  23. ECHO Encoding job complete.
  24. Pause
  25. Exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement