Questions tagged [speech-synthesis]

Speech synthesis is the artificial production of human speech.

Speech synthesis is the artificial production of human speech. A computer system used for this purpose is called a speech synthesizer, and can be implemented in software or hardware. A text-to-speech (TTS) system converts normal language text into speech; other systems render symbolic linguistic representations like phonetic transcriptions into speech.

Synthesized speech can be created by concatenating pieces of recorded speech that are stored in a database. Systems differ in the size of the stored speech units; a system that stores phones or diphones provides the largest output range, but may lack clarity. For specific usage domains, the storage of entire words or sentences allows for high-quality output. Alternatively, a synthesizer can incorporate a model of the vocal tract and other human voice characteristics to create a completely "synthetic" voice output.

The quality of a speech synthesizer is judged by its similarity to the human voice and by its ability to be understood. An intelligible text-to-speech program allows people with visual impairments or reading disabilities to listen to written works on a home computer. Many computer operating systems have included speech synthesizers since the early 1990s.

For more info, take a look at: http://en.wikipedia.org/wiki/Speech_synthesis

442 questions
0
votes
1 answer

Can speech Synthesizer be programmed to read text more accurately

I have a program that uses a SpeechSynthesizer by reading each sentence in a textbox. Is there a way to program the synthesizer to recognize the difference between a period and a question mark, in order to read the text more accurately?
Dman
  • 553
  • 1
  • 11
  • 33
0
votes
1 answer

How to make a Speech API with Java

I would like to know the steps in making a java speech recognizer/API WITHOUT using sphinx or anything else. I want to build from the ground up!!! Also a Text to speech from the ground up. 100% my own. I know it's going to be a lot of work. I just…
0
votes
1 answer

SpeechStarted/SpeechCompleted events being delayed indefinitely

I have a program that switches on a relay when the synthesis engine starts speaking, and turns it off when it finishes speaking. On the PC that I am compiling/working on, it works fine, 100% of the time. Engine starts talking, event is raised, relay…
Cal Hunter
  • 23
  • 1
  • 6
0
votes
1 answer

How to give a text file as an input to speech synthesis Speak method

I am developing an application in C# where I would like to read from a simple text file. So how to give input(the file) to speak synthesis Engine.Speak() method.
0
votes
1 answer

AudioException was unhandled / Audio device error in speech recognition program

I am developing a speech recognition software using c sharp and i am having this problem i searched it on google but did not find any solution and also posted the question in msdn but no one seems to help and i also reinstalled my audio device…
0
votes
1 answer

Can't make FestVox compile due to missing -leststring and missing libeststring.a

So I have installed / compiled speech_tools, and Festival (2.3) using Cygwin on my Win8.1 machine to the point that I can successfully produce speech using this command: echo "hello world" | \src\main\festival --tts The next step is for me to get…
0
votes
1 answer

Chrome speech synthesis api not changing options

I am trying to change the an instance of the speech synthesis API's options (such as pitch, volume etc) but its not working. For some reason, the only way I can get it to change the voice from UK male to UK female is to call the var voices variable…
0
votes
1 answer

Text to Speech in Window Store App

In my application I am using Text 2 Speech using SpeechSynthesizer.In my code it is speaking with only 3 voices ( One male and two females).My application is for kids so i want voice just like kids how can i achieve that? CODE: var synth = new…
user3090763
  • 1,089
  • 1
  • 10
  • 24
0
votes
1 answer

"SpeechSynthesisUtterance is not defined" in Chrome and Firefox

The following Dart code does not work on Chrome or Firefox. import 'dart:html'; void main() { SpeechSynthesisUtterance speechSynthesisUtterance = new SpeechSynthesisUtterance(); speechSynthesisUtterance.lang = 'en-US'; …
Nawaf Alsulami
  • 699
  • 1
  • 8
  • 15
0
votes
2 answers

Powerpoint add-on to get text in notes in slides and convert it to audio. Doesn't seem to be getting the notes in the slides like it should?

Here is the code I've been working on. I imagine it should display a message box with the notes in slides but it doesn't. Also I'm not sure how to implement the speech synthesis with the code I have some of it in but could be in the wrong…
0
votes
1 answer

Text To Speech: SpeechSynthesis Data Installer

I am attempting to work with Text to Speech, and I am having an issue with even testing out the application I have created. I have the following code snippet in my code that checks to see if you have the tools necessary for Text to Speech to work,…
portfoliobuilder
  • 7,556
  • 14
  • 76
  • 136
0
votes
0 answers

Referencing Speech synthesis in page load but still getting NullReferenceException

The problem was that when I click the button, it reads the text but even after it is finished, the page is still waiting for localhost, so I thought maybe I should instantiate the reader on page load only as I did in the code below, getting a…
0
votes
1 answer

Synthesizing vowel from existing audio sample jin matlab

I'm using matlab and have a recorded sample of a vowel sound. I'm looking to make use of my existing sample to synthesize a vowel sound at a pitch of 150Hz (lasting 5 seconds). I originally thought that I'd just have to take a sample of my existing…
The General
  • 1,239
  • 2
  • 17
  • 28
0
votes
0 answers

Tuning Mac OS X 10.7 Lion international text-to-speech voices

Unlike English voices, international voices can't be tuned using embedded speech commands. Are there any workarounds to make a word be pronounced with a different stress pattern? I've tried tinkering with punctuation but nothing satisfies me fully.
0
votes
1 answer

How can I have access to google speech API?

I want to use the full-duplex mode of the google speech-api. In the Google APIs site, I don't have "Speech API" in the list. How can I do to have access to it?
Dougui
  • 7,142
  • 7
  • 52
  • 87