-
Hi, Thank you so much for creating such a wonderful repository. I have a small question regarding voice cloning with Fairseq. Even though I am providing the speaker_wav, it doesn’t seem to be working. I understand that voice conversion might be an alternative solution here. Could you confirm if voice cloning is currently supported or suggest how it can be achieved? api = TTS("tts_models/ory/fairseq/vits") |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
The Fairseq models don't support voice cloning. You can only do TTS followed by voice conversion like this: from TTS.api import TTS
api = TTS("tts_models/ory/fairseq/vits")
api.tts_with_vc_to_file(
text="ନମସ୍କାର",
file_path="output_ory.wav",
speaker_wav='./example_1.wav',
) |
Beta Was this translation helpful? Give feedback.
The Fairseq models don't support voice cloning. You can only do TTS followed by voice conversion like this: