Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.30 KB | None | 0 0
  1. @echo off
  2. SET /P link="Insert stream link: "
  3. choice /d y /t 99 /m "Do you want to watch while archiving?"
  4. if %errorlevel% equ 1 goto yes
  5. if %errorlevel% equ 2 goto no
  6. :yes
  7. streamlink --retry-streams 10 -r stream.mp4 %link% best
  8. exit
  9. :no
  10. streamlink --retry-streams 10 -o stream.mp4 %link% best
  11. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement