> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Voices

> Voice management commands for TTS

# Voices

## List Available Voices

```bash theme={null}
60db tts:voices
```

This command returns all available voices that can be used for text-to-speech synthesis.

## Examples

### Get All Voices

```bash theme={null}
60db tts:voices
```

### Export Voices to JSON

```bash theme={null}
60db --json tts:voices > voices.json
```

### Use Voice in Synthesis

```bash theme={null}
# First get voice ID
60db tts:voices

# Use the voice ID in synthesis
60db tts:synthesize --text "Hello" --voice-id "voice_id_here"
```

## Voice Properties

Each voice has the following properties:

* `id` - Unique voice identifier
* `name` - Voice name
* `language` - Language code
* `gender` - Voice gender (male, female, neutral)
* `description` - Voice description

Use these properties when selecting a voice for synthesis.
