Interface AudioChunk

Representation of an audio chunk.

interface AudioChunk {
    data?: string;
    mimeType?: string;
    sourceMetadata?: LiveMusicSourceMetadata;
}

Properties

data?: string

Raw bytes of audio data.

Encoded as base64 string.

mimeType?: string

MIME type of the audio chunk.

sourceMetadata?: LiveMusicSourceMetadata

Prompts and config used for generating this audio chunk.