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 ...
Chester asked 13/12, 2020 at 11:3

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...
Neptune asked 8/6, 2023 at 17:58

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...
Photophore asked 26/12, 2018 at 17:21
1

© 2022 - 2024 — McMap. All rights reserved.