interface InputAudio {
    data: string;
    format: "wav" | "mp3";
}

Properties

Properties

data: string

Base64 encoded audio data.

format: "wav" | "mp3"

The format of the encoded audio data. Currently supports "wav" and "mp3".