pyttsx Questions
8
I tested out the text-to-speech module i.e pyttsx3 and it worked fine however I'm not getting a female voice when printing out a text. Any suggestions in changing the gender from male to female? By...
Senary asked 2/9, 2019 at 4:51
4
I want to use my raspberry pi to announce some text. i have installed pyttsx but not able to use it.i am using python2.7
my program:
import pyttsx
engine= pyttsx.init()
engine.setProperty('rate',...
Tetroxide asked 10/9, 2015 at 10:34
5
Solved
Today, while surfing on Quora, I came across answers on amazing things that python can do. I tried to use the pyttsx Text to Speech Convertor and that gave me an No module named Win32com.client err...
Ranjiv asked 13/2, 2016 at 13:57
6
This code is working but I'm only able to switch between the voices which came preInstalled in Microsoft Windows. These voices are "Microsoft David Mobile" and "Microsoft Zira Mobile".
Later I in...
Dee asked 1/7, 2017 at 6:43
2
Solved
I am trying to use pyttsx3 to say French text. However, only English is available.
Following the advice of How to change the voice in pyttsx3?, I tried to install the French speech pack as explain...
Skein asked 24/6, 2019 at 6:26
5
Solved
I have absolutely no idea what can be the problem. I did the pip installer (pip install pyttsx3) and re-installed the JetBrains PyCharm, but it still not working.
Vigil asked 21/8, 2018 at 12:40
7
Good afternoon, I'm learning and using pyttsx for speech, the thing is that I want to use it as a "female" voice but I can not do it using this code:
import pyttsx as pt
from pyttsx import voice
e...
Lastditch asked 16/3, 2017 at 22:28
4
My code:
import pyttsx3
import random
engine = pyttsx3.init()
words = ['hello', 'word']
engine.say(random.choice(words)) #Say these words slower
I don't want it to go really slow just slow eno...
Dryden asked 5/9, 2017 at 12:27
1
I installed successfully pyttsx3 with pip install pyttsx3 and I wrote the following code:
import pyttsx3
def speak(text):
engine = pyttsx3.init()
engine.say(text)
engine.runAndWait()
text = '...
Plaque asked 12/5, 2020 at 21:17
4
Solved
I am trying to run a voice program in Python 3.5.2 and with pyttsx library. But I've faced up with lots of problems. First one is about engine. When I run the command import pyttsx, compiler gave m...
Clove asked 17/1, 2017 at 10:48
3
windows 10-64bit
I'm trying to use some text-to-speech tool to read text from lines of .txt document, something like this:
so with pyttsx:
import pyttsx
engine = pyttsx.init()
engine.say('my vo...
Ecru asked 31/3, 2016 at 3:23
0
I am working with the python module pyttsx for text to speech and when I run the code, I get this error:
File "Practice_File.py", line 2, in <module>
engine = pyttsx.init()
File "/Library...
1
I was using PYTTSX yesterday with no issues at all - it was acting exactly as expected and working fine. However, when I tried to run the exact same code not two hours later it threw this error:
T...
Kunkel asked 3/12, 2015 at 11:38
1
© 2022 - 2024 — McMap. All rights reserved.