Joseph Alway

Results 18 comments of Joseph Alway

Hmm..., this list seems to show that Vietnamese isn't available as a Text-to-Speech language on Windows 10. [https://support.office.com/en-us/article/How-to-download-Text-to-Speech-languages-for-Windows-10-d5a6b612-b3ae-423f-afa5-4f6caf1ec5d3](https://support.office.com/en-us/article/How-to-download-Text-to-Speech-languages-for-Windows-10-d5a6b612-b3ae-423f-afa5-4f6caf1ec5d3)

That's not much to go on. What's the entire error log? What OS are you using, and/or what version of Python are you using?

That code snippet doesn't work for me. I ended up doing the following: ``` try: tts_engine = pyttsx3.init() temp_list = [] for i in tts_engine.getProperty('voices'): if i.name not in self.combobox_voice['values']:...

Why are you using hidden imports? Those shouldn't be necessary. I would highly recommend using a .spec file and building your program like that. Below are examples I use for...

Hmm..., I don't specifically import pyttsx3 or it's submodules in my project, but I have apparently done that in an example or two I've run. Why don't you try the...

Assuming, the code works, and it lists the 3rd voice correctly. That would make me take a serious look at pyinstaller as the code works, but the compiled executable doesn't....

I've reviewed the code as pertaining to how it uses the SAPI driver for Windows and loads the voice(s). The SAPI5.py file in the driver folder specifies a few common...

I successfully installed the English (Great Britain) language-pack and it added the Hazel voice to my list of voices. [https://support.microsoft.com/en-us/help/22805](https://support.microsoft.com/en-us/help/22805) I had to go into the language settings and choose...