Advertisement
Lucun_Ji

Batch encoding ~ 批量压制

Nov 10th, 2020
2,113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo shutdown after finished?/完成后关机?[Y()/N()]
  2. @choice
  3. set /a shut = %ERRORLEVEL%
  4.  
  5. :loop
  6.     @if "%~1" == "" goto out
  7.     @echo ~~~~ Next: %~1 ~~~~
  8.     ffmpeg <put your parameters here/在这里放上压制参数,去掉括号>
  9.     @shift
  10. @goto loop
  11.  
  12. :out
  13. @if %shut% == 1 shutdown /s /t 0
  14. @pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement