add playtwitch script

This commit is contained in:
LordMZTE 2021-07-20 17:02:31 +02:00
parent 65f7f34f69
commit ff5490d490

18
scripts/playtwitch Executable file
View file

@ -0,0 +1,18 @@
#!/bin/sh
# play a twitch stream using streamlink
__usage="
USAGE:
$0 <stream_name> [quality]
ARGS:
<stream_name> Name of the stream to play
[quality] quality to use [default: best]
"
if [ -z $1 ] || [ $# -gt 2 ] || [ $1 = "--help" ]; then
echo -e "$__usage"
else
streamlink https://twitch.tv/$1 ${2:-best}
fi