Want to convert all your favorite tunes from your Spotify playlist to mp3 files that can be imported to iTunes? Look no further. šµ
Disclaimers: I am subscribed to Spotify Premium.
Want to convert all your favorite tunes from your Spotify playlist to mp3 files that can be imported to iTunes? Look no further than this short and sweet tutorial.
Cause Iām about to show you how to convert your favorite Spotify playlist to a bunch of mp3 files in justĀ 5 simple steps.
āĀ Some Terminal experience is required.
š This tutorial is certifiably macOS & developer friendly.
1. Create a playlist of songs you want to download on Spotify.
Here in this playlist called Tutorial, I have 5 songs I want to download for later listening.
IMAGE HERE
2. Go toĀ playlistbuddy.comĀ and login with your Spotify account.
Here, convert your desired playlist to a YouTube playlist.
Iād recommend selecting the filter Lyric Videos so you donāt get that annoying music video dialogue/sound effects.
IMAGE HERE
3. Install Homebrew
HomebrewĀ allows us to install, remove and updated applications and packages. To install it, paste the following command in your Terminal (located underĀ Applications/Utilities/Terminal).
/usr/bin/ruby -e "$(curl -fsSL //raw.githubusercontent.com/Homebrew/install/master/install)"
4. InstallĀ youtube-dl
Ā andĀ libav
Now that you have Homebrew, itāll be super easy to perform the following commands in order to install the command-line programĀ youtube-dlĀ andĀ libav.
To convert music to different audio formats,Ā youtube-dl
Ā needs eitherĀ ffmpeg
Ā orĀ avconv
, and their helper programsĀ ffprobe
Ā orĀ avprobe
. We can just installĀ libav
Ā for all this.
brew install youtube-dl # necessary dependency brew install libav
5. Download your music!
Now that we have all the necessary packages installed, letās explore what command to use!
If you want to download the MP3 file(s) of a YouTube video or playlist and place it in ourĀ Downloads
Ā folder, then we will use the following command:
youtube-dl --extract-audio --audio-format mp3 -o '~/Downloads/%(title)s.%(ext)s' video_playlist_link
And thatās it! Now all those songs I wanted are in myĀ DownloadsĀ folder, ready to use!
Troubleshooting
- If you have any videos that were deleted from the YouTube Playlist due to copyright infringement, then there will be an error so you should remove those from the playlist before trying the command again.
- If you already have a file in yourĀ
Downloads
Ā folder calledĀSong.mp3
Ā and there is a video calledĀSong
Ā in the YouTube Playlist, then that file in yourĀDownloads
Ā folder will beĀ overwritten.