> ## 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.

# Speech-to-Text

> STT commands for transcribing audio files

# Speech-to-Text (STT)

## Commands

### Transcribe Audio File

```bash theme={null}
60db stt:transcribe --file audio.wav
```

### Specify Language

```bash theme={null}
60db stt:transcribe --file audio.wav --language hi
```

### Include Segments in Output

```bash theme={null}
60db stt:transcribe --file recording.wav --include-segments true --confidence-threshold 0.5
```

### List Available Languages

```bash theme={null}
60db stt:languages
```

## Options

* `-f, --file <path>` - Audio file path (required)
* `-l, --language <code>` - Language code (default: en)
* `--include-segments <boolean>` - Include segments (default: false)
* `--confidence-threshold <number>` - Confidence threshold (default: 0.3)

## Examples

### STT - Transcribe Audio

```bash theme={null}
# Transcribe audio file
60db stt:transcribe --file meeting.wav

# Transcribe Hindi audio
60db stt:transcribe --file recording.wav --language hi

# List available languages
60db stt:languages
```
