FreakingGenius - v0.1.0
    Preparing search index...

    Interface TtsResult

    The completed synthesis result returned by TTS.synthesize.

    interface TtsResult {
        audioBuffer: ArrayBuffer;
        durationSec: number;
        mimeType: string;
    }
    Index

    Properties

    audioBuffer: ArrayBuffer

    Raw PCM or encoded audio bytes ready for playback.

    durationSec: number

    Duration of the audio in seconds.

    mimeType: string

    MIME type of the buffer content, e.g. "audio/wav" or "audio/mp3".