Skip to content

Instantly share code, notes, and snippets.

@rm77
Last active July 19, 2021 03:08
Show Gist options
  • Save rm77/af0ea7911fdca26c2b8e6a972cfae1de to your computer and use it in GitHub Desktop.
Save rm77/af0ea7911fdca26c2b8e6a972cfae1de to your computer and use it in GitHub Desktop.
play url from command line
#!/bin/sh
#need to install youtube-dl and mplayer
#apt install -y mplayer youtube-dl
URL=$1
mplayer $(youtube-dl -x --audio-format mp3 -g $URL)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment