Questions tagged [espeak]

A free speech synthesizer available for *nix and Windows which has bindings for several programming languages, including Python, JavaScript, Lua and Go. It accepts Speech Synthesis Markup Language (SSML) and phonetic representations.

105 questions
1
vote
1 answer

How can I hand a wchar_t* over to espeak without getting German characters spoken incorrectly?

I'm using espeak-ng to turn German-language traffic messages into speech. See this example text: B6 Weserstraße B71 Seeborg vorübergehende Begrenzung der Breite. B213 Wildeshauser Landstraße Delmenhorst-Deichhorst wegen Baustelle gesperrt. The…
Neppomuk
  • 1,102
  • 1
  • 11
  • 24
1
vote
1 answer

espeak text to speech sounds very weird on ubuntu 20.04 LTS

I am bit new to linux and I tried to run this python code. At the first time it asked me to install libespeak-dev and try to run the code again. After installing it when I ran the code the sound was very weird and very robotic and it was terrible to…
1
vote
0 answers

Espeak on anaconda windows 10

I wanted to run a piece of code which uses espeak. I have installed espeak using py-espeak-ng on my anaconda environment. But when I run the code it shows me the following error: 'espeak' is not recognized as an internal or external command,…
1
vote
2 answers

Can you somehow use a local function on a global level in python?

I'm writing a program and I'm using espeak library to make it speak. The thing is I've already written my program but now I want to make a way to ask the user in the beginning if he wants the program to talk to him or just rely on reading. So if he…
1
vote
1 answer

I have a problem with espeak on Raspbian: No module named 'espeak'

Hi! So my problem is: I'm trying to make my Pi 3 speaking, I looked up multiple articles, but none of them could help unfortunately. My code line: from espeak import espeak And I get an error: File "/home/pi/ttstest.py", line 9, in from…
ChrisHun
  • 13
  • 1
  • 4
1
vote
1 answer

Loudness in espeak

How can we increase the loudness of the speech using espeak..? I am using text to speech covertion using espeak and the os is raspbian os. Please suggest me a syntax for increasing the volume in espeak.
1
vote
0 answers

Play GIF and Voice together. #wxPython #python3

My code is: import wx import wx.adv import os import threading class MyPanel(wx.Panel): def __init__(self, parent, id): wx.Panel.__init__(self, parent, id) self.SetBackgroundColour("white") gif_fname =…
1
vote
0 answers

cant install mbrola female spanish voice from ppa for espeak how I could install it?

appear this error Unable to locate package mbrola-es3 how i CCould solve this is my code sudo apt-get install mbrola mbrola-es3 espeak -v mb-es3 "Hola mundo" -w foo.wav please help me
vendexyz
  • 11
  • 1
1
vote
1 answer

Is it possible to add different language support for voice over in iPhone swift

I would like to add a different language for voice over service in iPhone. Is it possible to add language besides apple provided language for voice over in iPhone. Is it possible to add language support by eSpeak library in iOS. Please help.
Tanvir Nayem
  • 702
  • 10
  • 25
1
vote
2 answers

Installing espeak using pip in Python 3.6

When I run pip install espeak, I get Could not find a version that satisfies the requirement espeak (from versions: ) . Anyone know how to fix this issue?
Mailer Daemon
  • 59
  • 1
  • 1
  • 9
1
vote
1 answer

Espeak reads separate letters instead of words

At the first time, I tried to use the Google's default TTS engine in the following code, but I found that, the Persian language is not supported! So, I downloaded and installed espeak RedZoc TTS engine on my phone and changed the default TTS…
Hasani
  • 3,543
  • 14
  • 65
  • 125
1
vote
0 answers

Why talkey won't change its voice?

I'm trying to change my espeak voice through Talkey, but it does not work. First, I searched for the portuguese voices available with espeak --voices=pt And I got the following results: Pty Language Age/Gender VoiceName File …
1
vote
2 answers

Cannot open file: ../sysdeps/posix/system.c

I am trying to pas some strings to espeak and it will say them by this code: #include #include #include #include #include #include //#include using namespace…
Hasani
  • 3,543
  • 14
  • 65
  • 125
1
vote
1 answer

Need to use a variable in os.system with espeak and aplay commands in python

I want my raspberry pi to speak this print command print label + " is " + spos + " and the distance is " + str(distance) + "cm" which has three variables in it. And this is the command i use in shell that i need to use in python $espeak -s110 …
Silver Fox
  • 13
  • 3
1
vote
1 answer

Check inside for loop is not executed

I am working on a project to make the computer speak back when I give it commands. I just started, but when I run the code, it doesn't respond in the way I expect it to respond. Here is my code: from pocketsphinx import LiveSpeech import os for…
user6913652