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

How to solve the sound of "a"? Hi there. When I use the sentence below, it always said "a" as "ei". How could I handle it? Thanks. engine.say('What a lazy...

``` Traceback (most recent call last): File "C:/QGB/babun/cygwin/bin\qgb\U.py", line 2328, in execStrResult exec(source, globals, locals) File "", line 1, in File "C:/QGB/babun/cygwin/bin\qgb\U.py", line 7540, in tts_speak engine.runAndWait() File "C:\QGB\Anaconda3\lib\site-packages\pyttsx3\engine.py", line...

I have code to say tts: import pyttsx3 engine = pyttsx3.init() engine.setProperty('rate', rate) engine.setProperty('volume', volume) engine.say('I will speak this text') engine.runAndWait() This code work ok if my PC is using...

I'm writing a flask web which using the pyttsx3. the server's OS is win server 2019, it is a vmware virtualmachine. The virtualmachine does not have an audio card. When...

hello. Will it be possible to get and set the pitch of the voice in this library? I was thinking of building a text-to-speech program, but you won't be able...

I've noticed that `save_to_file` silently fails for slightly longer texts. I guess that some people coming to https://github.com/nateshmbhat/pyttsx3/issues/7 / https://github.com/nateshmbhat/pyttsx3/issues/71 / https://stackoverflow.com/q/67625515/562769 might have the same issue. ## Environment *...

I just fix it this way in **nsss.py** _toVoice just handle the age variable ![image](https://user-images.githubusercontent.com/52432007/202295019-291eef5c-54e6-4caa-806b-1f28291dfc78.png)

If I trying to save TTS result to file in MacOS Ventura (on Apple Silicon CPU), pyttsx3 generating empty file with 4kb size. I found a simple way to fix...

I have a script using pyttx3 working fine when run regularly. When run under Windows Task Scheduler, no voice is heard, although no errors are thrown. I also notice that...

Unfortunately I have another problem I cannot figure out here is my code this is just testing import pyttsx3 engine = pyttsx3.init() engine.say('I will speak this text') engine.runAndWait() When I...