tuplaylist - scripts - various script and utils
HTML git clone git://z3bra.org/scripts
DIR Log
DIR Files
DIR Refs
---
tuplaylist (221B)
---
1 #!/bin/sh
2 #
3 # play a youtube playlist with player
4
5 curl -s $1 | grep -oP '/watch\?v=[^";]*[";]' | cut -d\" -f1 | sed 's@^@https://youtube.com@' | xargs -I% sh -c "youtube-dl -g '%'|tail -n1|xargs curl|mplayer -nocache -"