chatterbox / example_tts.py
mahmoud12's picture
Upload folder using huggingface_hub
e4c892b verified
raw
history blame contribute delete
320 Bytes
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)