Questions tagged [pyttsx]

pyttsx is a Python package supporting common text-to-speech engines on Mac OS X, Windows, and Linux.

pyttsx is a package supporting common engines on Mac OS X, Windows, and Linux.

References:

186 questions
-2
votes
1 answer

pyttsx - Lang set

How do I set the lang to pt-br on pytts Windows? I tried to change it on operating system speech settings, but didn't work. With the current lang(en) set it sounds robotic. https://pypi.org/project/pyttsx/ P.S. I'm using Python 2.7( I can't update…
-2
votes
1 answer

is it pyttsx3 bug with print function?

Here is a simple text to speech program. All it does is that it takes in a sentence and a speaker(not from user) and prints the word at the time it is supposed to speak that word. But the problem arises with the print function(The one marked with…
-2
votes
5 answers

Python simple tutorial variable not defined issue

So I was following a simple tutorial on youtube, and no matter what I do I keep getting the same issue. Here is the code I used. import speech_recognition as sr import pyttsx3 voices = [] engine = pyttsx3.init() voices =…
KevinM1990112qwq
  • 715
  • 2
  • 10
  • 23
-2
votes
1 answer

How to make animated face speak using pygame and pyttsx

I want to make animated talking character using pygame and python text to speech pyttsx module. Below is my code I am figuring out how can I achieve this. import pygame,time import sys,math import pyttsx from pygame import gfxdraw PI =…
Swapnil Deo
  • 241
  • 1
  • 3
  • 16
-2
votes
2 answers

How can i make the python to wait till i complete speaking?

I am writing a program to recognise the speech from a microphone and the code will process accordingly. The code I wrote for this purpose is below. import speech_recognition as sr import webbrowser import pyttsx from time import sleep engine =…
Roshan r
  • 522
  • 2
  • 11
  • 30
1 2 3
12
13