tts-api / test.py
Avinyaa
new
9a88d9c
raw
history blame
475 Bytes
from TTS.api import TTS
tts = TTS(model_path="XTTS-v2_C3PO/",
config_path="XTTS-v2_C3PO/config.json", progress_bar=False, gpu=True).to(self.device)
# generate speech by cloning a voice using default settings
tts.tts_to_file(text="It took me quite a long time to develop a voice, and now that I have it I'm not going to be silent.",
file_path="output.wav",
speaker_wav="/path/to/target/speaker.wav",
language="en")