Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- :menu
- cls
- echo.
- call :check_stream "https://www.huya.com/20072620" "Table 1"
- call :check_stream "https://www.huya.com/20072621" "Table 2"
- call :check_stream "https://www.huya.com/18501408" "Table 3"
- call :check_stream "https://www.huya.com/18501324" "Table 4"
- call :check_stream "https://www.huya.com/17455465" "Table 5"
- call :check_stream "https://www.huya.com/18501329" "Table 6"
- call :check_stream "https://www.huya.com/18501166" "Table 7"
- call :check_stream "https://www.huya.com/17611732" "Table 8"
- echo 9. Exit
- echo.
- set /p choice=Enter your Table (1-8) or 9 to Exit:
- if "%choice%"=="1" goto table1
- if "%choice%"=="2" goto table2
- if "%choice%"=="3" goto table3
- if "%choice%"=="4" goto table4
- if "%choice%"=="5" goto table5
- if "%choice%"=="6" goto table6
- if "%choice%"=="7" goto table7
- if "%choice%"=="8" goto table8
- if "%choice%"=="9" goto exit
- goto menu
- :table1
- streamlink https://www.huya.com/20072620 best
- goto menu
- :table2
- streamlink https://www.huya.com/20072621 best
- goto menu
- :table3
- streamlink https://www.huya.com/18501408 best
- goto menu
- :table4
- streamlink https://www.huya.com/18501324 best
- goto menu
- :table5
- streamlink https://www.huya.com/17455465 best
- goto menu
- :table6
- streamlink https://www.huya.com/18501329 best
- goto menu
- :table7
- streamlink https://www.huya.com/18501166 best
- goto menu
- :table8
- streamlink https://www.huya.com/17611732 best
- goto menu
- :exit
- echo Exiting...
- goto :eof
- :check_stream
- setlocal
- set stream_url=%1
- set stream_name=%2
- streamlink %stream_url% best --stream-url | findstr /c:"error: No playable streams found on this URL:" >nul
- if errorlevel 1 (
- echo %stream_name% - streamlink %stream_url% best - available
- ) else (
- echo %stream_name% - streamlink %stream_url% best - offline
- )
- endlocal
- goto :eof
Advertisement
Add Comment
Please, Sign In to add comment