ZeqCodec
Audio codec with HulyaPulse quantization. Zeqond-aligned frame encoding, perceptual masking model, variable bitrate targeting MUSHRA ≥85 at minimal bandwidth.
| Endpoint | POST /api/audio/codec |
| Auth | api-key |
| Rate limit | 15/min |
| Category | audio |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
audioData | object | Yes | PCM audio to encode. |
targetBitrate_kbps | number | No | Target bitrate. |
mode | string | No | 'cbr', 'vbr', 'zeq-adaptive'. |
Returns
{ encodedData, actualBitrate_kbps, mushra_score, latency_ms, zeqond }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"audioData": {},
"targetBitrate_kbps": 128,
"mode": "zeq-adaptive"
}' \
"https://zeqsdk.com/api/audio/codec"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-codec.