Spotify Deduplicator finds duplicate tracks in your Spotify playlists and lets you remove the duplicates directly from the application.
- Install Meteor:
curl https://install.meteor.com/ | sh
- Clone the repo:
git clone https://github.com/Assios/Spotify-Deduplicator.git
- Go to the Spotify Developer page and create an app.
- Add a redirect URI. For this example, use
http://localhost:3000/_oauth/spotify?close
- Create a file called
config.js
in theserver
directory and paste the following into it, using the client ID and secret from the app you made:
ServiceConfiguration.configurations.update({
"service": "spotify"
}, {
$set: {
"clientId": "<YOUR_CLIENT_ID>",
"secret": "<YOUR_CLIENT_SECRET>"
}
}, {
upsert: true
});
- Run
meteor run
and the app will be running on port 3000.
Spotify Deduplicator is released under The MIT License
- Add matching on title and artist as well as URI (to also show identical tracks on different albums).
- Add possibility to list duplicates across playlists.