pyttsx3 icon indicating copy to clipboard operation
pyttsx3 copied to clipboard

Offline Text To Speech synthesis for python

Results 162 pyttsx3 issues
Sort by recently updated
recently updated
newest added

Traceback (most recent call last): File "C:\Python\Python310\lib\site-packages\pyttsx3\__init__.py", line 20, in init eng = _activeEngines[driverName] File "C:\Python\Python310\lib\weakref.py", line 137, in __getitem__ o = self.data[key]() KeyError: None During handling of the above...

I am getting the following error calling ```python import pyttsx3 engine = pyttsx3.init() ``` ```bash Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/pyttsx3/__init__.py", line 20, in init eng = _activeEngines[driverName] File...

So from the docs.. onWord and onEnd are not reliably giving back location, length.. its basically unreliable this as an event handler for word level. Mac - nice! ``` import...

I have a problem with pyttsx3 working with python 3.11 Traceback (most recent call last): File "/Users/anirudh/Desktop/pythonProject4/.venv/lib/python3.11/site-packages/pyttsx3/__init__.py", line 20, in init eng = _activeEngines[driverName] ~~~~~~~~~~~~~~^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/weakref.py", line 136, in...

Hello, I have installed and configured `pyttsx3` on my macOS. And by default it uses `nsss` as driver and this setting works fine. However when I change the driver to...

I am trying to make a tkinter.Spinbox control the rate and another to control the volume. The rate was easy, but the volume has a limit. From what I can...

I don't see any generated samples. This is the most important thing for a TTS software.

Using this package in a Robotics project, we have a function for speaking below: def say(self, text):   self.face.set_robot_state("talking")   if (self.voice._inLoop):    self.voice.endLoop()   self.voice.say(text)   self.voice.runAndWait()   self.face.set_robot_state("idle")...

"^" is not working with voice type 2 ```python import pyttsx3 engine = pyttsx3.init() engine.setProperty('rate', 100) voices = engine.getProperty('voices') engine.setProperty('voice', voices[1].id) print(voices[1].id) engine.say("^") engine.runAndWait() ``` Name of the file :...

Hi everyone! My name is David Martin Rius and I have just published this project on GitHub: https://github.com/davidmartinrius/speech-dataset-generator/ Now you can **create datasets automatically** with any audio or lists of...