Skip to content

Instantly share code, notes, and snippets.

@saif71
Created March 22, 2023 06:50
Show Gist options
  • Save saif71/edd5661a565b3b7e08f5228a32cb1064 to your computer and use it in GitHub Desktop.
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
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