Instructions to use hootan09/ChatterBox with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Chatterbox
How to use hootan09/ChatterBox with Chatterbox:
# pip install chatterbox-tts import torchaudio as ta from chatterbox.tts import ChatterboxTTS model = ChatterboxTTS.from_pretrained(device="cuda") text = "Ezreal and Jinx teamed up with Ahri, Yasuo, and Teemo to take down the enemy's Nexus in an epic late-game pentakill." wav = model.generate(text) ta.save("test-1.wav", wav, model.sr) # If you want to synthesize with a different voice, specify the audio prompt AUDIO_PROMPT_PATH="YOUR_FILE.wav" wav = model.generate(text, audio_prompt_path=AUDIO_PROMPT_PATH) ta.save("test-2.wav", wav, model.sr) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -36,7 +36,7 @@ library_name: chatterbox
|
|
| 36 |
|
| 37 |
<img width="800" alt="cb-big2" src="https://github.com/user-attachments/assets/bd8c5f03-e91d-4ee5-b680-57355da204d1" />
|
| 38 |
|
| 39 |
-
<h1 style="font-size: 32px">Chatterbox TTS (Persian
|
| 40 |
|
| 41 |
<div style="display: flex; align-items: center; gap: 12px">
|
| 42 |
<a href="https://resemble-ai.github.io/chatterbox_demopage/">
|
|
|
|
| 36 |
|
| 37 |
<img width="800" alt="cb-big2" src="https://github.com/user-attachments/assets/bd8c5f03-e91d-4ee5-b680-57355da204d1" />
|
| 38 |
|
| 39 |
+
<h1 style="font-size: 32px">Chatterbox TTS (Persian Model Added)</h1>
|
| 40 |
|
| 41 |
<div style="display: flex; align-items: center; gap: 12px">
|
| 42 |
<a href="https://resemble-ai.github.io/chatterbox_demopage/">
|