Create Voices

A voice is a cloned voice that can be used to make new content. You need a voice to create content.

Resource

A voice resource conforms to the following interface.

interface Voice {
    uuid: string
    name: string
    status: string
    default_language: string
    supported_languages: Array<string>
    voice_type: string
    dataset_url?: string
    callback_uri?: string
    component_status: VoiceComponentStatus
    api_support: VoiceApiSupport
    source: string
    created_at: datetime
    updated_at: datetime
}

interface VoiceComponentStatus {
    text_to_speech: string
    speech_to_speech: string
    fill: string
}

interface VoiceApiSupport {
    sync: boolean
    async: boolean
    direct_synthesis: boolean
    streaming: boolean
}

Last updated