initial commit
This commit is contained in:
commit
27cdbc317c
|
@ -0,0 +1,13 @@
|
||||||
|
Create a stream launcher with:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
./new name url
|
||||||
|
```
|
||||||
|
|
||||||
|
Launch an mpv cam feed with:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
./cam/name [max-quality]
|
||||||
|
```
|
||||||
|
|
||||||
|
Where `max-quality` is a height (e.g., `720` means a maximum quality of '720p').
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
./launcher.sh "https://www.youtube.com/watch?v=Wi2h6BpRcns" "$1"
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
./launcher.sh "https://www.youtube.com/watch?v=dSycFECDqME" "$1"
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
./launcher.sh "https://www.youtube.com/watch?v=Z591sNEtPgs" "$1"
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/sh
|
||||||
|
if [ -n "$2" ] ; then
|
||||||
|
_max_quality="$2"
|
||||||
|
else
|
||||||
|
_max_quality="480"
|
||||||
|
fi
|
||||||
|
bspc rule --add mpv --one-shot state=tiled && mpv --ytdl-raw-options=format='best[height<='"$_max_quality"']' "$1" & disown
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
./launcher.sh "https://www.youtube.com/watch?v=Z591sNEtPgs" "$1"
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
./launcher.sh "https://www.youtube.com/watch?v=G05wmWFDtSo" "$1"
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
./launcher.sh "https://www.youtube.com/watch?v=hO9Nkorupv4" "$1"
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
./launcher.sh "https://www.youtube.com/watch?v=0Ns1sNoUSaY" "$1"
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
./launcher.sh "https://www.youtube.com/watch?v=neo1hRZTO0s" "$1"
|
Loading…
Reference in New Issue