Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
chromaprint.h
✓ #include <chromaprint.h>
Generate an audio fingerprint from raw PCM data.
#include <chromaprint.h>
#include <iostream>
int main() {
ChromaprintContext *ctx = chromaprint_new(CHROMAPRINT_ALGORITHM_DEFAULT);
chromaprint_start(ctx, 44100, 1);
// ... feed audio data ...
chromaprint_finish(ctx);
char *fingerprint = nullptr;
chromaprint_get_fingerprint(ctx, &fingerprint);
std::cout << fingerprint << std::endl;
chromaprint_dealloc(fingerprint);
chromaprint_free(ctx);
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.