Hi,
so if you check the main playlist HBO_HD.m3u8 then you can find inside 3 links...to 400 / 600 / 800 but not to 1200 which is best Q.If you want to build a batch to choose any Q of all 4 then build a static batch like this...
Code:
@echo off
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
set "SERVER1=smumcdnems02"
set "SERVER2=mumsite"
set "LINK=.cdnsrv.jio.com/jiotv.live.cdn.jio.com/HBO_HD/"
set "EXT=.m3u8"
set "M3U8=HBO_HD_"
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
echo Choose your Stream qualtity of HBO HD Channel
echo===========================================================================
echo [1] %M3U8%400%EXT%
echo [2] %M3U8%600%EXT%
echo [3] %M3U8%800%EXT%
echo [4] %M3U8%1200%EXT%
echo===========================================================================
echo.
set asw=0
set /p asw="Enter your choice: "
if %asw%==1 goto 400
if %asw%==2 goto 600
if %asw%==3 goto 800
if %asw%==4 goto 1200
:400
streamlink.exe hls://http://%SERVER1%%LINK%%M3U8%400%EXT% best
goto END
:600
streamlink.exe hls://http://%SERVER1%%LINK%%M3U8%600%EXT% best
goto END
:800
streamlink.exe hls://http://%SERVER1%%LINK%%M3U8%800%EXT% best
goto END
:1200
streamlink.exe hls://http://%SERVER2%%LINK%%M3U8%1200%EXT% best
goto END
:END
exit
...just only a quick example.
greetz