Hacker News new | ask | show | jobs
by Grimblewald 571 days ago
Exactly, and this isn't adding anything significant from what I can see that isn't already achieved in much more clear and openly presented repositories. Take coqui for example. Cloning as as easy as recording an example of your voice and using

  ```python
  from TTS.api import TTS
  tts = TTS("tts_models/multilingual/multi-dataset/xtts_v2", gpu=True)
  
  # 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")
  ```