Skip to content

Instantly share code, notes, and snippets.

@guibeira
Last active December 28, 2019 23:34
Show Gist options
  • Save guibeira/c53fc457e6e57992db8e181eca6e491e to your computer and use it in GitHub Desktop.
Save guibeira/c53fc457e6e57992db8e181eca6e491e to your computer and use it in GitHub Desktop.
play youtube music on cli
#!/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