Created
March 22, 2023 06:50
-
-
Save saif71/edd5661a565b3b7e08f5228a32cb1064 to your computer and use it in GitHub Desktop.
Bulk download youtube video as mp3 using youtube-dl in a custom folder
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
youtube-dl 'https://www.youtube.com/watch?v=1JaGpxuG9YE' -x --audio-format mp3 -o '/Users/NyName/Downloads/%(title)s-%(id)s.%(ext)s' && | |
youtube-dl 'https://www.youtube.com/watch?v=mi6bykm2wmg' -x --audio-format mp3 -o '/Users/NyName/Downloads/%(title)s-%(id)s.%(ext)s' && | |
youtube-dl 'https://www.youtube.com/watch?v=ZRJFK5Y5XNs' -x --audio-format mp3 -o '/Users/NyName/Downloads/%(title)s-%(id)s.%(ext)s' && | |
youtube-dl 'https://www.youtube.com/watch?v=CWDsRbwqbKU' -x --audio-format mp3 -o '/Users/NyName/Downloads/%(title)s-%(id)s.%(ext)s' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment