Skip to content

Instantly share code, notes, and snippets.

@achillesrasquinha
Created August 20, 2017 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save achillesrasquinha/2c4bcfc67964da289abe5332de83e850 to your computer and use it in GitHub Desktop.
Save achillesrasquinha/2c4bcfc67964da289abe5332de83e850 to your computer and use it in GitHub Desktop.
Download MP3s using youtube-dl

Add this to your .bash_profile file.

alias mp3-dl='function _(){ youtube-dl --extract-audio --audio-format mp3 --output "~/Music/%(title)s.%(ext)s" $1; };_'

On the terminal, type:

$ mp3-dl [YOUTUBE-URL]

Voila!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment