Update README.md
Browse files
README.md
CHANGED
|
@@ -28,6 +28,26 @@ Voice Cloning:
|
|
| 28 |
mlx_audio.tts.generate --model mlx-community/chatterbox-turbo-6bit --text "Oh, that's hilarious! [chuckle] Um anyway, we do have a new model in store. It's the SkyNet T-800 series and it's got basically everything. Including AI integration with ChatGPT and all that jazz. Would you like me to get some prices for you?" --ref_audio path_to_file.wav --play
|
| 29 |
```
|
| 30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
Default Voice:
|
| 32 |
```bash
|
| 33 |
mlx_audio.tts.generate --model mlx-community/chatterbox-turbo-6bit --text "Oh, that's hilarious! [chuckle] Um anyway, we do have a new model in store. It's the SkyNet T-800 series and it's got basically everything. Including AI integration with ChatGPT and all that jazz. Would you like me to get some prices for you?" --play
|
|
|
|
| 28 |
mlx_audio.tts.generate --model mlx-community/chatterbox-turbo-6bit --text "Oh, that's hilarious! [chuckle] Um anyway, we do have a new model in store. It's the SkyNet T-800 series and it's got basically everything. Including AI integration with ChatGPT and all that jazz. Would you like me to get some prices for you?" --ref_audio path_to_file.wav --play
|
| 29 |
```
|
| 30 |
|
| 31 |
+
## Emotion Control
|
| 32 |
+
|
| 33 |
+
Chatterbox supports expressive event tags that can be inserted directly into your text to add natural vocal expressions:
|
| 34 |
+
|
| 35 |
+
| Tag | Description |
|
| 36 |
+
|-----|-------------|
|
| 37 |
+
| `[clear throat]` | Throat clearing sound |
|
| 38 |
+
| `[sigh]` | Sighing expression |
|
| 39 |
+
| `[shush]` | Shushing sound |
|
| 40 |
+
| `[cough]` | Coughing sound |
|
| 41 |
+
| `[groan]` | Groaning expression |
|
| 42 |
+
| `[sniff]` | Sniffing sound |
|
| 43 |
+
| `[gasp]` | Gasping expression |
|
| 44 |
+
| `[chuckle]` | Light chuckling |
|
| 45 |
+
| `[laugh]` | Laughter |
|
| 46 |
+
|
| 47 |
+
```bash
|
| 48 |
+
mlx_audio.tts.generate --model mlx-community/chatterbox-turbo-6bit --text "[sigh] I can't believe it's Monday again. [groan] But hey, [clear throat] let's make the best of it!" --play
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
Default Voice:
|
| 52 |
```bash
|
| 53 |
mlx_audio.tts.generate --model mlx-community/chatterbox-turbo-6bit --text "Oh, that's hilarious! [chuckle] Um anyway, we do have a new model in store. It's the SkyNet T-800 series and it's got basically everything. Including AI integration with ChatGPT and all that jazz. Would you like me to get some prices for you?" --play
|