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.
- Host: GitHub
- URL: https://github.com/assios/spotify-deduplicator
- Owner: Assios
- License: mit
- Created: 2015-08-06T01:35:57.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-09T22:07:16.000Z (almost 10 years ago)
- Last Synced: 2025-01-24T19:36:35.511Z (4 months ago)
- Topics: deduplicator, spotify
- Language: JavaScript
- Homepage:
- Size: 729 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.