Chromaprint itself doesn't have any code for matching, only for
fingerprint generation, if that's what you mean.
If you mean whether you can compare two chromaprint-generated
fingerprints in general, then it depends on what kind of comparison
are you looking for. You can only check if the two fingerprints are
generated from "more or less" the same source recording. If you are
looking for something like checking whether one audio clip sounds
"similar" to another one, then you can't do that with chromaprint.
The fingerprints are arrays of 32-bit numbers and the simplest
comparison involves checking how many bit differences are there
between the two arrays, e.g.:
score = popcnt(a[0] ^ b[0]) + popcnt(a[1] ^ b[1]) + ...
(popcnt is a function that counts the number of set bits)
In reality, you have to do more things, like aligning the two
fingerprints if they do not start from the same position in the audio.
Lukas
> --
> You received this message because you are subscribed to the Google Groups
> "AcoustID" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
acoustid+u...@googlegroups.com.
> For more options, visit
https://groups.google.com/d/optout.