Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @ECHO OFF
- if [%1]==[] goto Quit
- ECHO OPUS File Encoder.
- opusenc.exe --version
- ECHO --------------------------------------------------------------------------------
- :loop
- title Encoding "%~nx1" into OPUS
- set Filename="%~n1"
- ECHO Encoding "%~n1"...
- opusenc.exe %1 %Filename%.opus
- ECHO Encoded %~nx1 into %~n1.opus
- title Encoded "%~nx1..." into OPUS
- ECHO.
- ECHO --------------------------------------------------------------------------------
- ECHO.
- shift
- if not [%1]==[] goto loop
- :Quit
- title Encoding files into OPUS complete.
- ECHO Encoding job complete.
- Pause
- Exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement