Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
Successful response streams viseme predictions using Server-Sent Events. Each event contains viseme data for a processed audio chunk.
Server-Sent Events stream with the following format:
- Each event starts with "data: " prefix followed by JSON
- Example normal event: data: {"visemes":[...],"chunk_progress":"1/10","chunk_duration_ms":100}
- Example error event: error: {"message":"Error message","chunk_id":5}