Skip to main content

VoiceInfoDto

Additional voice metadata, including language and uploaded samples.

languagestringnullable

Primary language of the voice as an ISO 639-1 code.

Example: en
files object[]

The uploaded audio samples backing this voice.

  • Array [
  • filenamestringnullable

    Stored filename of the audio sample.

    Example: sample-001.mp3
    original_namestringnullable

    Original filename of the sample as uploaded by the client.

    Example: morning-host-take-1.mp3
    sizeint64nullable

    Size of the audio sample in bytes.

    Example: 204800
  • ]
  • VoiceInfoDto
    {
    "language": "en",
    "files": [
    {
    "filename": "sample-001.mp3",
    "original_name": "morning-host-take-1.mp3",
    "size": 204800
    }
    ]
    }