Skip to content

A web app that finds and removes duplicates in your Spotify playlists.

License

Notifications You must be signed in to change notification settings

Assios/spotify-deduplicator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spotify Deduplicator

Spotify Deduplicator finds duplicate tracks in your Spotify playlists and lets you remove the duplicates directly from the application.

Local setup

  1. Install Meteor: curl https://install.meteor.com/ | sh
  2. Clone the repo: git clone https://github.com/Assios/Spotify-Deduplicator.git
  3. Go to the Spotify Developer page and create an app.
  4. Add a redirect URI. For this example, use http://localhost:3000/_oauth/spotify?close
  5. Create a file called config.js in the server 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
});
  1. Run meteor run and the app will be running on port 3000.

License

Spotify Deduplicator is released under The MIT License

TODO

  • 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.

About

A web app that finds and removes duplicates in your Spotify playlists.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published