Created
April 20, 2014 15:55
-
-
Save pcp/11117511 to your computer and use it in GitHub Desktop.
livestreamer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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