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

getting started with speech recognition and speech synthesis

i want to get started with speech recognition and speech synthesis in Prototype based on speech recognition somebody told me to use microsoft speech server (sdk and so on) when i have this, how do i programm an application, and with which…
Tyzak
  • 2,430
  • 8
  • 38
  • 52
0
votes
1 answer

Loop through a page of voice samples, downloading each sample and putting the lines into a text file

Here is the page I am trying to do this on. It is the voice lines of GLaDOS from Portal. Each line is inner "i" HTML text as well as between quotes as displayed on the page. They each have a direct download link beside them labeled "download". I'm…
0
votes
1 answer

UWP XAML ToggleSwitch to set Speech Synthesis voice to either male or female

I am trying to set the voice.gender to either male or female via a ToggleSwitch within the setting page in Template10 UWP app. I declare the TG:
Franck E
  • 629
  • 8
  • 26
0
votes
0 answers

Chrome API (google speech synthesis) alert

I am trying to use chrome.tts (Google Speech Synthesis Chrome API) for my website and I'm using javascript to build it. However, I have a problem that my 'speaking function' does not work propely without 'alert' function which I don't need. Here's…
JSChang
  • 1
  • 2
0
votes
0 answers

How can I solve this VerifyError for Java Speech

I got this result and I can't explain. Exception in thread "main" java.lang.VerifyError: (class: javax/speech/Central, method: createRecognizer signature: (Ljavax/speech/EngineModeDesc;)Ljavax/speech/recognition/Recognizer;) Incompatible object…
0
votes
0 answers

Client Side Speech.Synthesis .Net

I have developed a website using .Net and I am trying to utilize the System.Speech.Synthesis. When I develop it on the server side there is sound, but when I test on client side there is no sound. I understand by default the server doesn't have…
Jose Ortiz
  • 705
  • 1
  • 9
  • 19
0
votes
4 answers

Exploding acronyms to ensure a synthesizer reads them properly?

If I feed a speech synthesizer (festival, in this case, but it applies to all) the following bit of text: "At the USPGA championship in the US, the BBC reporter went MIA". it reads "At the uspga championship in the us, the BBC reporter went…
talkingnews
  • 211
  • 3
  • 16
0
votes
1 answer

SpeechSynthesis fails to SelectVoice under ASP.NET?

Speech Synthesis fails to SetVoice(). All are listed as enabled, until it's tried, then fails with the non-default two listed as 'disabled'. NOTE: This works on a WPF or Console app, but fails as an ASP.NET app. ALSO: Speech is created on an…
Jim
  • 804
  • 6
  • 17
0
votes
1 answer

Text to speech and accompanying metadata

I want to convert text to speech and be supplied with the accompanying meta data as to what interval each word occurs at and its period. So "The dog ate" might be The: start 0, end .3s Dog: start .5s, end .8s Ate: start .11s, end .14s Is there way…
dmonarch
  • 55
  • 1
  • 8
0
votes
1 answer

No voice output

I'm using VOCE library(https://sourceforge.net/projects/voce/) for speech synthesis in Java with netbeans for an application and below is the code. public class synthesisTest{ public static void main(String[] argv){ …
Subhiksh
  • 301
  • 2
  • 13
0
votes
0 answers

Speech Synthesize API no longer working properly

The speech synthesizer API seems to be only working for English. Is it just me? Am I doing something wrong in the code? Or is it not working for anyone else? For some languages like Chinese, and Japanese, it doesn't output any sounds at all, and for…
frosty
  • 2,559
  • 8
  • 37
  • 73
0
votes
1 answer

Converting text to speech on an azure web site

I have a simple web application that uses System.Speech to dynamically generate speech and serve it back to the browser. Unfortunately, this technique will not work in an azure website. I'm struggling to find an alternative way to generate my…
drs9222
  • 4,448
  • 3
  • 33
  • 41
0
votes
1 answer

javascript speech.synthesis.speak properties

I have searched and searched to no avail. There is no clear documentation for this API at least from wht ive found. I want to make a custom object that can hold the properties for this function and be able to run it…
tecksup
  • 51
  • 1
  • 13
0
votes
2 answers

Advancing a progress bar during speech synthesis using Swift 2.0 (OS X)

I am trying to advance a determinate progress bar in 5.0 increments while the speech synthesizer is reading a block of text. This is the code I have (which is not working): if speechSynthesizer.speaking == false { if let contents =…
Synner
  • 11
  • 2
0
votes
2 answers

Speech Synthesis no longer reads Chinese text

The following code has worked well for the last 2 months until yesterday it stopped reading Chinese texts, but it reads English texts despite the lang is zh-CN. Apparently it now only reads English. Having searched the internet and made a lot of…