Skip to content

Instantly share code, notes, and snippets.

@rdapaz
Created October 21, 2020 12:17
Show Gist options
  • Save rdapaz/53e3d2a050cbba513157caa441c1b485 to your computer and use it in GitHub Desktop.
Save rdapaz/53e3d2a050cbba513157caa441c1b485 to your computer and use it in GitHub Desktop.
Download youtube video as mp3
# Note to future self...
# Preparatory Steps
# -----------------
# pip3 install youtube-dl
# sudo apt-get install ffmpeg
url=https://www.youtube.com/watch?v=b9fUdJdlExU
youtube-dl -F $url
# This gives list of available formats
youtube-dl -f 140 $url
# Say if file was downloaded as input.m4a
# Convert it to mp3 with:
ffmpeg -i input.m4a music.mp3
# That's it!!! Enjoy!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment