Last active
December 28, 2019 23:34
-
-
Save guibeira/c53fc457e6e57992db8e181eca6e491e to your computer and use it in GitHub Desktop.
play youtube music on cli
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
#!/bin/bash | |
echo $(pip install --upgrade youtube-dl) | |
args=("$@") | |
echo $args | |
echo $(youtube-dl -f 251 ${args[0]} -o - | ffplay -nodisp -autoexit -i -) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment