Last active
October 21, 2022 07:36
-
-
Save GokhanPolat/d5896d03c1dd85958ef779b24e4e6169 to your computer and use it in GitHub Desktop.
Download youtube video as mp3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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