Skip to content

Instantly share code, notes, and snippets.

@pcp
Created April 20, 2014 15:55
Show Gist options
  • Select an option

  • Save pcp/11117511 to your computer and use it in GitHub Desktop.

Select an option

Save pcp/11117511 to your computer and use it in GitHub Desktop.
livestreamer
@echo off
::
:: livestreamer script for twitch.tv
:: url: https://github.com/chrippa/livestreamer
::
:: select high, low, medium, mobile, source
set QUALITY=medium
echo twitch.tv
echo ======================
echo.
echo [1] tornis
echo [2] dexter_bl
echo.
set choice=0
set /p choice="channel: "
if %choice%==1 goto TorNis
if %choice%==2 goto dexter_bl
goto END
:: channels
:TorNis
livestreamer twitch.tv/TorNis %QUALITY%
goto END
:dexter_bl
start livestreamer twitch.tv/dexter_bl %QUALITY%
goto END
:END
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment