Replies: 2 comments 3 replies
-
gruut[cs,de,es,fr,it,nl,pt,ru,sv]~=2.0.0 |
Beta Was this translation helpful? Give feedback.
3 replies
-
You need to install the backend you want to use. Espeak or Gruut. For Espeak run |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey
I've just spun up TTS locally in a python 3.9.7 venv on an ubuntu vm.
However, when trying to install the Thorsten model, I get
ValueError: No phonemizer found for language de.
More specifically:
`(ThorstenVoice) user@pc:~/ThorstenVoice$ tts-server --model_name tts_models/de/thorsten/tacotron2-DCA
`The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/juan/ThorstenVoice/bin/tts-server", line 5, in
from TTS.server.server import main
File "/home/juan/ThorstenVoice/lib/python3.9/site-packages/TTS/server/server.py", line 102, in
synthesizer = Synthesizer(
File "/home/juan/ThorstenVoice/lib/python3.9/site-packages/TTS/utils/synthesizer.py", line 76, in init
self._load_tts(tts_checkpoint, tts_config_path, use_cuda)
File "/home/juan/ThorstenVoice/lib/python3.9/site-packages/TTS/utils/synthesizer.py", line 113, in _load_tts
self.tts_model = setup_tts_model(config=self.tts_config)
File "/home/juan/ThorstenVoice/lib/python3.9/site-packages/TTS/tts/models/init.py", line 13, in setup_model
model = MyModel.init_from_config(config, samples)
File "/home/juan/ThorstenVoice/lib/python3.9/site-packages/TTS/tts/models/tacotron2.py", line 356, in init_from_config
tokenizer, new_config = TTSTokenizer.init_from_config(config)
File "/home/juan/ThorstenVoice/lib/python3.9/site-packages/TTS/tts/utils/text/tokenizer.py", line 195, in init_from_config
raise ValueError(
ValueError: No phonemizer found for language de.
You may need to install a third party library for this language.
`
This is probably a really stupid question, but how can I install said third party library? Thanks for any help.
Beta Was this translation helpful? Give feedback.
All reactions