File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,23 @@ A text-to-speech (TTS) and Speech-to-Speech (STS) library built on Apple's MLX f
1515pip install mlx-audio
1616```
1717
18+ ### Quick Start
19+
20+ To generate audio with an LLM use:
21+
22+ ``` bash
23+ # Basic usage
24+ mlx_audio.tts.generate --text " Hello, world"
25+
26+ # Specify prefix for output file
27+ mlx_audio.tts.generate --text " Hello, world" --file_prefix hello
28+
29+ # Adjust speaking speed (0.5-2.0)
30+ mlx_audio.tts.generate --text " Hello, world" --speed 1.4
31+ ```
32+
33+
34+
1835## Models
1936
2037### Kokoro
Original file line number Diff line number Diff line change @@ -13,3 +13,4 @@ transformers>=4.49.0
1313sentencepiece >= 0.2.0
1414huggingface_hub >= 0.27.0
1515librosa >= 0.10.2.post1
16+ soundfile >= 0.13.1
You can’t perform that action at this time.
0 commit comments