An open API service indexing awesome lists of open source software.

https://github.com/assios/spotify-deduplicator

A web app that finds and removes duplicates in your Spotify playlists.
https://github.com/assios/spotify-deduplicator

deduplicator spotify

Last synced: 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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](https://developer.spotify.com/my-applications) 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": "",
"secret": ""
}
}, {
upsert: true
});
```

6. Run ```meteor run``` and the app will be running on port 3000.

## License

Spotify Deduplicator is released under [The MIT License](http://opensource.org/licenses/MIT)

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