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
0 answers

How to cancel speech synthesizer on WP8

I have the SpeechSynthesizer reading an article in my app but when navigating from the page i call CancelAll() method to stop the reading but that causes my app to crash due to a TaskCanceledException - I tried to handle it but my program doesn't…
0
votes
1 answer

Setting rate, pitch, volume with speechSynthesis API in UIWebView for iOS 7+

I am trying to use UIWebView to do some simple TTS (Text to Speech) in my iOS App. From what I understand iOS 7 WebKit now supports it, so therefore the following below works: - (void) speakThis: (NSString*) text { [webview…
0
votes
2 answers

Google search (Voice Recognition) in C#

Whenever I say "Search for" something, my web browser will open will a random search term. It's almost if the computer couldn't understand me. I even spoke pure U.S. English and it still didn't quite get it. (Windows Form App C#) Scenario 1: I said…
0
votes
1 answer

how to open my computer through speech recognition

I have need to write an application which uses a speech recognition engine, the purpose off app is to control PC(keyboard and mouse), when user say "open mycomputer" to open my computer, or say any thing to perform that action, i have tried a lots…
0
votes
1 answer

Sound effects in C# Text-to-Speech

I'm using Microsoft Speech Synthesis in C# and I want to know if there is a way to add echo effects and other sound effects to the speech such that the speech appears to be happening in a live stadium or a room etc. Also, I want to use other voices…
abhishek
  • 817
  • 6
  • 19
  • 33
0
votes
1 answer

Android Text-To-Speech Configuration and Variations

I am currently developing an app that makes intensive use of Text-To-Speech (I am using android.speech.tts.TextToSpeech) I have been able to integrate TTS in my voice and at present, a default American US voice is what reads aloud my text. I would…
Darth Coder
  • 1,738
  • 7
  • 33
  • 56
0
votes
1 answer

Access violation exception in system.speech.synthesis

When using system.speech.synthesis like this: using (_speech) { _speech.SelectVoice("Anne"); _speech.SpeakCompleted += OnSpeakCompleted; _speech.Rate = Convert.ToInt32(Rate); _speech.Volume = Convert.ToInt32(Volume); …
Phu Minh Pham
  • 1,025
  • 7
  • 21
  • 38
0
votes
1 answer

Extending currently written Klatt C program to interface with script using numpy

Currently I am using Klatt to create vowels and it was written and compiled with C http://www.cs.cmu.edu/afs/cs/project/ai-repository/ai/areas/speech/systems/klatt/ . I automatically create the vowels using a Python program by invoking terminal…
J Spen
  • 2,614
  • 4
  • 26
  • 41
0
votes
1 answer

Detect audio output + suggestion for a speech synthesis library

I would like to detect if my PC is playing any kind of audio (music/movie anything). I wrote an app which notifies me of my twitter updates. Now I would like to add a speech synthesis to it but I only want to play out the messages if there is no…
Miro Bucko
  • 1,123
  • 1
  • 13
  • 26
0
votes
3 answers

Class not found, why?

I am trying to import javax.speech.recognition.Result; in my code. But i am getting class not found error. On checking with javap; as follows:- C:\Documents and Settings\ankit.g>javap javax.speech.recognition.Result Error: class not found:…
Ankit
  • 609
  • 2
  • 10
  • 26
0
votes
1 answer

Speech synthesized phone call, Android?

In Android, can I have an app that makes a speech-synthesized phone call? That is, I have a string of text that I want spoken when the phone call is answered.
Paul Steckler
  • 617
  • 5
  • 19
0
votes
1 answer

Why can't I use downloaded voices for speech Synthesis in Lion?

This drove me nuts, so I thought I'd document the answer here. To choose a voice, you give -[NSSpeechSynthesizer initWithVoice] the identifier in reverse-DNS format, e.g. com.apple.speech.synthesis.voice.Agnes But if a user downloads one, such as…
mackworth
  • 5,873
  • 2
  • 29
  • 49
-1
votes
1 answer

Question to Google regarding API voice to speech voice removal or change

Regarding your voice "Google UK English Female" used on all free (and other) text to speech sites. Was this voice removed? I heard this could be the case from a professional. This voice changed to a much lower quality alternative ca. a month…
Henry
  • 1
-1
votes
2 answers

Async Await Promise does not work : promiseresult is undefined

I have not being able to use the getvoices() function from the speechsynthesis framework. My basic idea is to be able to click on the document and be able to read the text of the element in Spanish. Therefore, I am trying to use the promise and…
-1
votes
2 answers

React JS app: How do I load new TTS voices?

I’m building an app with the React JS library, using Electron and Node JS to package it as a Windows .exe I used the “speak-tts” module to integrate speech synthesis. Everything seems to be pretty straightforward, but I can’t figure out how to load…
1 2 3
29
30