Open ghost opened 4 years ago
This is not possible, as the two services use different, incompatible fingerprints. Acoustid uses Chromaprint (https://acoustid.org/chromaprint); Spotify uses Echoprint (https://github.com/spotify/echoprint-codegen).
I'm not 100% sure what you're attempting to do, but it sounds like you want to match tracks from Spotify playlists against your own collection of mp3s. If this is the case, you can do this by running your own Echoprint server: https://github.com/spotify/echoprint-server. I hope this helps.
Thank you so much for your quick reply. Maybe to clarify. There are tons of playlists on Spotify that change all the time. Mostly charts and viral playlists. Since I DJ from clubs to weddings and everything in between, I need a lot of playlists for all these occasions. Updating the ever changing playlists takes up a lot of time. So I am really trying to build some form of automation for it.
@joostvandenoever It sounds like you're djing mp3s of published music that has been distributed. Have you tried to match via the isrc/iswc codes? If you're just trying to match your collection to a playlist, doing this with metadata instead of finger printing will remove a lot of complexity.
MP3s contain ID3 tags, of which ISRC is one. Depending on how these MP3s were acquired, many may already have this information populated.
Also, you might want to give https://musicbrainz.org/ a shot for this. They have a free tool you can download that will analyze a song, check it against their database, and return any relevant metadata. As far as I'm aware their goal when starting it was to be able to easily and automatically add information to mp3 collections lacking metadata, so it's worth a shot.
Hope that helps!
I know the issue has been opened about 7 years ago, but I had difficulty understanding it fully. So I will try to ask again. As a DJ I have a huge MP3 collection, now I would like to analyze my collection and store it in a SQLite database. That would be doable I think. Now Spotify has loads of great playlists created by people. I already have the script down that would be able to download the Spotify tracks fingerprinting. I included the analasys of "Blinding Lights" by "The Weeknd" for no particular reason in the text file: analasys.txt
Would there be a way to compare this to my output that I get when analyzing this to the output gotten by my MP3?
I hope someone can help me. This would make converting playlists to use in my DJ software so much easier. Thank you in advance, I hope this question is a little clear.