Skip to content

Match your local files to Spotify's database, so you can listen to them anywhere you go!

License

Notifications You must be signed in to change notification settings

BoscoDomingo/SpotifyMatcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SpotifyMatcher

Logo image

Cross-platform tool to match your local files to Spotify's database. Easily transfer all your local songs over to a playlist on Spotify in just a few minutes. Migrating your local library has never been easier!

  1. Before you start (5 minutes)
    1. Install Python >=3.10
    2. Using poetry (OPTIONAL, RECOMMENDED)
    3. Using venv (OPTIONAL)
      1. Installing the libraries
    4. Creating a Spotify Developer Application
  2. Using SpotifyMatcher 1. CAREFUL
  3. Getting your username and playlist ids
    1. Username
    2. Playlist id

Before you start (5 minutes)

This isn't infalible, and it would be quite surprising if it matched 100% of songs. Be aware you'll probably have to do a bit of manual searching, but this will significantly reduce that amount by automating the majority of the process.

On to the requirements and instructions:

Install Python >=3.10

Make sure you have Python 3.10+ installed, preferably the latest version (I tested it with Python 3.12.4 on an x64 PC with Windows 11).

You'll need to install the libraries spotipy, tinytag and eyed3

I suggest you create a virtual environment so you don't mess other libraries, with the built-in venv or via poetry.

Using poetry (OPTIONAL, RECOMMENDED)

Simply run poetry install and it'll create a venv with the correct requirements inside. If you don't have poetry, I suggest you install it globally using pip install poetry.

Using venv (OPTIONAL)

For this, simply navigate to or open a terminal in the folder that the code is in (type wt in the Windows Explorer address bar for Windows Terminal, or cmd if that doesn't work) and write the following commands (make sure to change <MyEnv> for your desired folder name):

python -m pip install --upgrade pip
python -m venv <MyEnv>
<MyEnv>\Scripts\activate.bat # <- on cmd
<MyEnv>\Scripts\Activate.ps1 # <- on PowerShell

This should make the terminal look something like this:

Terminal with venv active

To exit the virtual environment, simply type deactivate and press Enter. It is not necessary, though, as you'll be working within the environment and you can just close the console once it is done.

Installing the libraries

You can now install spotipy, tinytag and eyed3 inside the venv with:

pip install -r .\requirements.txt

or

pip install --upgrade spotipy
pip install -U eyed3
pip install -U tinytag

Creating a Spotify Developer Application

Head over to the Spotify Developer website, log in with your Spotify account and create a new application (name doesn't matter).

Copy the client id and the client secret, open the settings and make sure to add a URL to the "Redirect URIs". It doesn't really matter what, try https://localhost/ if not sure, but take note of it because you'll need to write it in the source code later.

With these 3, open the file main.py with whatever IDE or Text Editor you like (preferably Notepad++, Wordpad or TextEdit if you use a text editor), and change this bit of code:

connect_to_spotify code

(Use the Find function to find it if you don't see it. It is inside the connect_to_spotify function)

Paste the aforementioned ids and the URL you chose in the corresponding lines. With this, setup is done and you can now use the tool!

Using SpotifyMatcher

Usage is very, very simple. You only have to call the program from a Terminal of your choice with

python ./main.py username playlist_id

(may have to use python3 if you have several versions of Python installed or if you're not on Windows).

With this, the application should open a new tab on your default browser. Accept the permissions it asks for, and copy the URL of the page it takes you to (if it's localhost, it will probably not load anything, that's perfectly ok. We only need the URL). Paste it in the terminal.

With that, authentication should be done and you can move on to the good stuff. Simply paste the path to your music directory (Tip: right click the address bar on Windows Explorer, 'Copy address as text'). You can also bypass this step if you manually enter a path in the source code. Simply find the music_dir variable and paste it there before you execute the program:

Imgur

If the path is valid, the program should start identifying your files and subsequently searching Spotify for a match. This may take several minutes, depending on your processor, internet speed, number of files... Just be patient!

Once done, if you specified a playlist_id it will try to add the matches to said playlist.

CAREFUL

If you don't own said playlist, can't add tracks or it has been deleted, the program will fail, and you'll have to start again, so make sure you have said permissions.

I recommend either leaving it blank, so the program creates a new one for you or creating a new playlist and getting its id (simply open it in the browser and copy the final string of numbers and letters).

Only thing left is to check the .txt file with the failed matches and search those manually (sucks but it is the best we can do with Spotify's search!)

Getting your username and playlist ids

Username

Open Spotify on PC, go to your user profile and click the 3 dots. Click share and "Copy Spotify URI". Paste and remove the spotify:user:

You can also copy your profile link and just take the stuff after /user but before the ?

Playlist id

I recommend you don't actually use a playlist id and rather leave it blank so the program creates one for you automatically, but if you insist, simply open the playlist, click the 3 dots > Share > Copy Spotify URI. As with the username, remove the spotify:playlist:.

Alternatively, you can simply copy the playlist link and just take the final string of numbers and letters. Same thing.

About

Match your local files to Spotify's database, so you can listen to them anywhere you go!

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages