Skip to main content

clapback-client

The contract a tool follows to take part in the clapback commons — look up before you contribute, send what the records require, back off when told to — with no dependency beyond the standard library.

pip install clapback-client
from clapback_client import Corpus, fingerprint_file, hash_fingerprint

key = hash_fingerprint(fingerprint_file("track.flac"))
corpus = Corpus()

row = corpus.lookup(key, pipeline_version)   # or lookup(recording_mbid=mbid, ...) if you hold one
if row is not None:
    vector = row["embedding"]          # the commons already had it — skip the model
else:
    vector = my_embedder(path)         # your pipeline, declared by `pipeline_version`
    corpus.contribute(
        fingerprint_hash=key,
        embedding=vector,
        pipeline_version=pipeline_version,
        client_id=client_id,
    )

What a tool has to do

Four things. Each is decided in one of the project's records, and this package is those decisions as code so a tool does not have to reimplement them.

  1. Fingerprint the audio and hash it canonically. hash_fingerprint is SHA256 of the AcoustID fingerprint exactly as chromaprint returns it — not as your database happened to store it. That distinction split a corpus once; canonical() is the guard. The string is a function of the audio and of the fingerprinting path. Measured 2026-09-16 on 56 FLACs: the fpcalc binary (what Picard and Familiar run) and pyacoustid's library path (what beets runs) return the same string for 24 of them, and for 10 of the 24 CD-quality ones; two official fpcalc builds from different ffmpeg generations agree on 37. The rest differ by a few bits of ~30,000 — which AcoustID's matcher absorbs and a SHA256 cannot. So the key is exact within one path and may differ across two, and a miss on lookup does not mean the corpus lacks the recording. The fix is not a better hash: it is the recording id, below, which is the same on every path (ADR-0019).
  2. Produce the vector through a declared pipeline. This package never embeds. The reference pipeline is clapback-embed, whose PIPELINE_VERSION is the identity to send. A tool with its own pipeline declares its own identity, and its vectors are comparable with each other rather than with the reference's.
  3. Look up before contributing — by recording if you hold an id, by hash otherwise. Corpus.lookup(recording_mbid=mbid, pipeline_version=...) finds the recording whichever path keyed it; Corpus.lookup(key, ...) finds your path's row. Contribute under your hash either way. A repeat submission is recorded as agreement, so a tool that re-sent its library would manufacture evidence of one install agreeing with itself — the one measurement the commons exists to make honestly.
  4. Send client_id and pipeline_version. Both are required by Corpus.contribute and have no defaults. client_id is a random UUID minted once per install — identity.mint_client_id — on the first contribution, never on install, and stored where the user can find and delete it.
  5. Say what the licence is, beside the switch. Everything sent is dedicated to the public domain under CC0 1.0, like every other row in the corpus, and may be republished in its public exports (ADR-0013). A self-issued client has no account to agree to terms on, so the sentence goes where the user turns contribution on.

What you get back

  • Skip the recompute. lookup returns the stored vector for a recording the commons already holds under your pipeline.
  • Similarity across libraries you do not own. similar(vector) returns the nearest recordings the commons holds, each with a recording_mbid when anyone has claimed one — a MusicBrainz recording a person can look up — and a bare hash when nobody has. One neighbour per recording: rows two installs keyed differently are folded into the nearest, and the response's collapsed says how many were. recording(mbid) goes the other way: what does recording X sound like, without holding X.
  • Confirmation — every result that names a recording carries recording_confirmations and recording_contradictions: how many independent installs sent a vector for that recording, under that pipeline, inside the identical band (cosine ≥ 0.999999), and how many sent one outside it. Counted across every key the recording is held under, so two fingerprinting paths are one population; by distinct client_id; never counting an install for agreeing with its own row. No verdict — the corpus reports what happened and you decide (ADR-0008, ADR-0019).

Looking up a whole library

One lookup per track is the right shape for a tool that embeds as it goes. It is the wrong shape for a tool that already holds a fingerprint or an id for every track and wants to know, before doing anything else, which of them the commons has: sequential single lookups to the commons measured 72 ms median on 2026-09-16, which is twelve minutes for 10,000 tracks spent mostly on round trips answering "no" (ADR-0015).

for key, row in corpus.lookup_many(keys, pipeline_version, vectors=False):
    ...   # key is exactly what you passed; row is what lookup() would return, or None

keys is any iterable of fingerprint hashes and MusicBrainz recording ids, mixed — told apart by shape — and a tool should pass the id wherever it holds one. Batches of 100 go to POST /v1/embeddings/lookup; the answer comes back in order. vectors=False leaves out the 512 floats, which is what a tool asking "which of these do you hold, and what are they called?" wants and is a fraction of the bytes. The commons counts its lookup limit per key, not per request, so a large library will be told to wait part-way; lookup_many honours Retry-After and continues, and one call walks the whole library. If you want the whole corpus rather than your library's slice of it, the weekly export is the right download, not this.

Contributing a whole library

contribute is one row per request at the commons's write limit of 30 a minute, which is the right pace for a tool that contributes as it analyses and five and a half hours for a library of 10,000 vectors already computed (ADR-0016).

for result in corpus.contribute_many(rows):     # rows: dicts of contribute()'s keyword arguments
    if result["status"] == "refused":
        ...   # result["code"] and result["detail"] are what the row would have got alone

Batches of 100 go to POST /v1/embeddings/batch, 600 rows a minute. Every guarantee runs per row, in the same code the single endpoint uses — agreement recorded, contributor count moved, the ceiling and the daily quota checked — so a batch that crosses a bound is accepted up to the line and refused past it, row by row. A batch is not atomic: 97 created, 2 confirmed and 1 refused is 99 rows contributed, and you retry a refused row on its own result. client_id is required on every row. And look up first, as alwayslookup_many is the check — because a library re-sent by the hundred manufactures a hundred agreements of one install with itself.

One client_id may write 50,000 rows — created or confirmed — in a rolling 24 hours, ten percent of the corpus ceiling; past that each row is refused with a retry_after.

Which recording is this?

Every lookup result carries recording_mbid — the MusicBrainz recording id the most independent installs have asserted for that row — and recording_claims, how many. lookup_many(..., vectors=False) is the whole-library form of that question, and corpus.claims(hash) lists every id claimed for a row with its count, dissent included (ADR-0018).

What this is, in order: it works only for recordings the commons holds; the id is the one most independent installs asserted, and the count is how many; it is not verified and it is not AcoustID; and a count of 1 means one install said so. AcoustID answers the same question by fuzzy match against a database built for it. This is an exact-hash shortcut that is silent when the commons has not seen the recording — never a replacement, and a tool must not treat it as one. What it has that AcoustID does not: no key, no per-second limit, and the answer comes with the vector.

Never send an id you learned here back as your own claim. A tool that does counts itself as independent confirmation of what it copied. Claim only what you established yourself — from your tags, from AcoustID, from Picard. The server cannot tell the difference; this sentence is the only defence.

Naming what you contribute

If your tool knows the MusicBrainz recording id — beets' mb_trackid, Picard's recording id, an AcoustID lookup's result — pass it as recording_mbid= on contribute, or attach it later with claim() to a row you already sent. Never re-send the vector to add an id: a repeat contribution is recorded as agreement, and your library must not read as agreeing with itself.

If your tool holds an AcoustID track id — Picard always does, beets' chroma stores it as acoustid_id — pass it as acoustid_track_id= beside the MBID, or alone. It is what AcoustID's matcher assigns to near-identical fingerprints, the same across decoders and fpcalc versions, so it joins two keys of one recording where there is no MusicBrainz match (ADR-0019 point 6). lookup(acoustid_track_id=) asks by it; in lookup_many pass ("acoustid", id), because an AcoustID id and an MBID are both UUIDs and cannot be told apart by looking.

An id is a claim: the commons counts how many distinct clients assert it and never verifies it against MusicBrainz or AcoustID. Sending one tells the operator which recording you hold — so send it under the same setting that sends the vector, and say so in your own "what leaves the machine".

The commons is worth exactly its coverage of the library asking. Early on, expect misses.

Naming your pipeline

pipeline_version is half the corpus key. Two vectors are comparable exactly when it matches, and the corpus compares the whole string — it never parses one, never guesses that two strings with the same checkpoint are "probably comparable". So the string has to say enough that another tool with the same pipeline would write the same one, and a tool with a different one would not (ADR-0014).

Five tokens, in this order, joined by +, each a short token with no + and no whitespace:

Token What it names Reference Kalinka, for example
checkpoint the weights, as their publisher names them, with a namespace laion/clap-htsat-unfused lukewys/laion_clap:music_audioset_epoch_15_esc_90.14
front-end how audio becomes model input — resampling, mel, normalisation frontend1 frontend1
windowing which audio the model sees artifact1 — see below frag3x10s (three 10-s fragments)
pooling how window vectors become one pool1 (mean of raw outputs, then L2) meanl2
precision of the vector you send, not the one you store fp32 fp32 if sent before quantising; int8 if dequantised from INT8

Reference: laion/clap-htsat-unfused+frontend1+artifact1+pool1+fp32 — what clapback_embed.PIPELINE_VERSION returns. Its third token predates the convention: artifact1 is the version of the ONNX export of the checkpoint, and the reference's windowing — the whole track as consecutive 10-second windows — is fixed by clapback-embed and has no token of its own; a change to either moves the identity. A new tool should put its windowing rule in that slot, as Kalinka's example does. A tool that stores INT8 for itself but sends the fp32 vector it computed contributes under +fp32; one that sends a dequantised vector contributes under +int8. Both may exist in the corpus; they are different pipelines, and nothing is ever recomputed to change one into the other.

Declare the string once in your own README, with what each token means — the corpus does not interpret tokens, so their meaning lives with the tool that chose them. Before choosing, ask GET /v1/pipelines (Corpus.pipelines()) which identities the corpus already holds and how many rows each has: if yours exists, contributing under it joins that population; if not, yours starts one. The server does not validate the grammar. A string that ignores it is still a valid key — just one nobody else will land on.

Fingerprinting needs chromaprint, and only fingerprinting does

brew install chromaprint     # or: apt install libchromaprint-tools
pip install pyacoustid

fingerprint_file runs it out of process, because chromaprint is a C library that crashes rather than raises on some malformed inputs and one bad file must not end a run. If your tool already has fingerprints — beets' chroma plugin stores them, Picard computes them natively — hand them to hash_fingerprint directly and skip this.

Opt-in, off by default

Nothing in this package sends anything until you call contribute or claim. A tool that embeds this should keep contribution a separate, explicit setting from lookup, and should tell the user what leaves the machine — a 512-float vector, a one-way hash, and a MusicBrainz recording id if you pass one; never audio, filenames, or other tags — before the first time it does.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

clapback_client-0.4.0.tar.gz (26.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

clapback_client-0.4.0-py3-none-any.whl (21.6 kB view details)

Uploaded Python 3

File details

Details for the file clapback_client-0.4.0.tar.gz.

File metadata

  • Download URL: clapback_client-0.4.0.tar.gz
  • Upload date:
  • Size: 26.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for clapback_client-0.4.0.tar.gz
Algorithm Hash digest
SHA256 893e1087eea66c93228da9d9486e65b5cf3cf3763eb661bf3019d698fa971f01
MD5 5101dfd470834c911ed388974a5646b2
BLAKE2b-256 085e118c16aed03c1f844318992fe25dfab02dda0adc748409e73a72dc24e651

See more details on using hashes here.

Provenance

The following attestation bundles were made for clapback_client-0.4.0.tar.gz:

Publisher: client-release.yml on seethroughlab/clapback

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clapback_client-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: clapback_client-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 21.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for clapback_client-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2028aaaef60c0ad513e27235a71658c3f1b129357f1c08e51322dc8a001a05dd
MD5 d35f03118a55ddd56a68331102665ff7
BLAKE2b-256 4ed8ff5ee23a67aaff47f90e36a0c6e63717d25632151528e2df24db92aa6041

See more details on using hashes here.

Provenance

The following attestation bundles were made for clapback_client-0.4.0-py3-none-any.whl:

Publisher: client-release.yml on seethroughlab/clapback

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.4.0 This release

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page