Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @ECHO OFF
  2. @echo URL:
  3. set /p URL=
  4.  
  5. :1
  6. FOR /f %%a IN ('WMIC OS GET LocalDateTime ^| FIND "."') DO SET DTS=%%a
  7. SET DateTime=%DTS:~0,8%-%DTS:~8,6%
  8. echo %DateTime%
  9. echo ######################################################
  10. echo ############   R E C O R D I N G #####################
  11. echo       "%URL%"
  12. echo ######################################################
  13. "C:\Program Files (x86)\Streamlink\bin\streamlink.exe" "%URL%" best --hls-segment-threads 6 -o "D:\rec\rec_%DateTime%.mp4"
  14. goto 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement