Skip to content

Instantly share code, notes, and snippets.

@GokhanPolat
Last active October 21, 2022 07:36
Show Gist options
  • Save GokhanPolat/d5896d03c1dd85958ef779b24e4e6169 to your computer and use it in GitHub Desktop.
Save GokhanPolat/d5896d03c1dd85958ef779b24e4e6169 to your computer and use it in GitHub Desktop.
Download youtube video as mp3
# For file convention youtube-dl uses "ffmpeg"
# Don't forget install the necessary packages.
# if single video link
youtube-dl -i --extract-audio --audio-format mp3 [youtube link]
# if playlist link with desired naming convention
youtube-dl -i --extract-audio --audio-format mp3 -o "%(playlist_index)s-%(title)s.%(ext)s" [youtube link]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment