Instructions to use KitsuMate/chatterbox-multilingual-ONNX with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Chatterbox
How to use KitsuMate/chatterbox-multilingual-ONNX 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
Document upstream attribution
Browse files
README.md
CHANGED
|
@@ -36,6 +36,13 @@ base_model:
|
|
| 36 |
- ResembleAI/chatterbox
|
| 37 |
---
|
| 38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
<img width="800" alt="cb-big2" src="https://github.com/user-attachments/assets/bd8c5f03-e91d-4ee5-b680-57355da204d1" />
|
| 40 |
|
| 41 |
<h1 style="font-size: 32px">Chatterbox TTS</h1>
|
|
@@ -494,4 +501,4 @@ if __name__ == "__main__":
|
|
| 494 |
Every audio file generated by Chatterbox includes [Resemble AI's Perth (Perceptual Threshold) Watermarker](https://github.com/resemble-ai/perth) - imperceptible neural watermarks that survive MP3 compression, audio editing, and common manipulations while maintaining nearly 100% detection accuracy.
|
| 495 |
|
| 496 |
# Disclaimer
|
| 497 |
-
Don't use this model to do bad things. Prompts are sourced from freely available data on the internet.
|
|
|
|
| 36 |
- ResembleAI/chatterbox
|
| 37 |
---
|
| 38 |
|
| 39 |
+
> **Mirror notice:** This KitsuMate repository is a server-side duplicate of
|
| 40 |
+
> [`onnx-community/chatterbox-multilingual-ONNX`](https://huggingface.co/onnx-community/chatterbox-multilingual-ONNX)
|
| 41 |
+
> at source revision `452d3f434aa592098f1eedac9099f33642ab2da5`. The model,
|
| 42 |
+
> conversion work, documentation, license, and attribution remain credited to
|
| 43 |
+
> ResembleAI and the ONNX Community contributors. KitsuMate does not claim
|
| 44 |
+
> authorship of the mirrored artifacts.
|
| 45 |
+
|
| 46 |
<img width="800" alt="cb-big2" src="https://github.com/user-attachments/assets/bd8c5f03-e91d-4ee5-b680-57355da204d1" />
|
| 47 |
|
| 48 |
<h1 style="font-size: 32px">Chatterbox TTS</h1>
|
|
|
|
| 501 |
Every audio file generated by Chatterbox includes [Resemble AI's Perth (Perceptual Threshold) Watermarker](https://github.com/resemble-ai/perth) - imperceptible neural watermarks that survive MP3 compression, audio editing, and common manipulations while maintaining nearly 100% detection accuracy.
|
| 502 |
|
| 503 |
# Disclaimer
|
| 504 |
+
Don't use this model to do bad things. Prompts are sourced from freely available data on the internet.
|