How can I download a YouTube Playlist and save it as mp3?

Problem:

How can I download a YouTube Playlist and save it as mp3?

Solution:

First download youtube-dl.exe from here 

Then run this command:

youtube-dl --rm-cache-dir -o "c:\<output location>\%(title)s-%(id)s.%(ext)s" --extract-audio --audio-format mp3 --audio-quality 0 --yes-playlist "https://www.youtube.com/watch?v=enPA<Add your playlist link here>"

 

If you have any issues you can instead use yt-dlp from here

You can then just use the same commands:

yt-dlp --rm-cache-dir -o "c:\<output location>\%(title)s-%(id)s.%(ext)s" --extract-audio --audio-format mp3 --audio-quality 0 --yes-playlist "https://www.youtube.com/watch?v=enPA<Add your playlist link here>"

 

To download an mp4 playlist you can do this:

yt-dlp --rm-cache-dir -i -f mp4 --yes-playlist "https://www.youtube.com/watch?v=-Denciie5oA&list=PLHdssdsd23232sdd62Finx_gGS8bKMVr23dDZ"

Leave a Reply

Your email address will not be published. Required fields are marked *