How to Download a YouTube Playlist as MP3 in File Manager

Deepak ModiDeepak Modi
2 min read

If you want to download an entire YouTube playlist as MP3 files and save them in your File Manager, follow this step-by-step guide using yt-dlp and FFmpeg.


πŸ”§ Requirements

  • Windows OS

  • Python (for installing yt-dlp)

  • yt-dlp (YouTube video downloader)

  • FFmpeg (for converting audio to MP3)


πŸ“Œ Step 1: Install Dependencies

1️⃣ Install Python (if not installed)

Check if Python is installed by running:

python --version

If not installed, download and install it from Python.org.

2️⃣ Install yt-dlp

Open Command Prompt (cmd) and run:

pip install yt-dlp

Verify installation:

yt-dlp --version

3️⃣ Install FFmpeg (Required for MP3 Conversion)

  1. Go to Gyan.dev FFmpeg Builds.

  2. Download the "ffmpeg-git-full.7z" file.

  3. Extract it and rename the folder to ffmpeg.

  4. Move the ffmpeg folder to C:\ so the full path is: C:\ffmpeg\bin\

  5. Add C:\ffmpeg\bin\ to the system PATH:

    • Search "Environment Variables" β†’ Edit system environment variables β†’ Edit Path β†’ Add C:\ffmpeg\bin\
  6. Verify by running:

     ffmpeg -version
    

🎡 Step 2: Download YouTube Playlist as MP3

Now, use this command to download and convert an entire YouTube playlist to MP3:

yt-dlp -f bestaudio --extract-audio --audio-format mp3 --audio-quality 320K --embed-metadata --embed-thumbnail -o "%(playlist_title)s/%(title)s.%(ext)s" "PASTE_YOUR_PLAYLIST_URL_HERE"

πŸ”Ή Explanation of the Command:

βœ… -f bestaudio β†’ Downloads the best audio quality
βœ… --extract-audio β†’ Extracts audio from the video
βœ… --audio-format mp3 β†’ Converts it to MP3
βœ… --audio-quality 320K β†’ Sets 320Kbps quality
βœ… --embed-metadata β†’ Adds song metadata
βœ… --embed-thumbnail β†’ Adds album art
βœ… -o "%(playlist_title)s/%(title)s.%(ext)s" β†’ Saves files inside a folder with the playlist name


πŸ“‚ Step 3: Locate Your Downloaded Files

  • By default, the MP3 files will be stored in your current directory under a folder with the playlist name.

  • To save them in a specific folder, navigate to that folder before running the command. Example:

      cd C:\Users\YourUsername\Music
    

❌ How to Stop the Download?

Press:

CTRL + C

to cancel the ongoing download.


πŸŽ‰ Conclusion

Now, you have successfully: βœ… Installed yt-dlp & FFmpeg
βœ… Downloaded a YouTube playlist as MP3
βœ… Saved files inside File Manager
βœ… Embedded metadata & thumbnails

Enjoy your offline music collection! πŸŽΆπŸš€ Let me know if you have any questions! 😊

0
Subscribe to my newsletter

Read articles from Deepak Modi directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Deepak Modi
Deepak Modi

Hey! I'm Deepak, a Full-Stack Developer passionate about web development, DSA, and building innovative projects. I share my learnings through blogs and tutorials.