Skip to content

Instantly share code, notes, and snippets.

@rdapaz
Last active October 16, 2025 23:23
Show Gist options
  • Select an option

  • Save rdapaz/53e3d2a050cbba513157caa441c1b485 to your computer and use it in GitHub Desktop.

Select an option

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
#
yt-dlp -f 140 -x --audio-format m4a --no-playlist $url
# 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