pyttsx3 Questions
9
I am making a pyttsx3 chat bot however this error occurred:
OSError: libespeak.so.1: cannot open shared object file: No such file or directory
This error also occurred:
KeyError: None
Here is my ...
3
Solved
I was making a personal assistant. I got an error in starting code:
import pyttsx3
engine = pyttsx3.init()
engine.say('How are you today?')
engine.runAndWait()
Error:
/usr/local/lib/python3.11/sit...
3
Solved
When trying to use pyttsx3 I can only use English voices. I would like to be able to use Dutch as well.
I have already installed the text to speech language package in the windows settings menu. Bu...
Ludwog asked 31/1, 2021 at 8:37
4
Here is my Python code:
import pyttsx3
engine = pyttsx3.init(driverName='sapi5')
f = open("tanjil.txt", 'r')
theText = f.read()
f.close()
engine.say(theText)
engine.runAndWait()
I could...
1
© 2022 - 2024 — McMap. All rights reserved.