Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
1k views

best practice for specifying pronunciation for Android TTS engine?

In general, I'm very impressed with Android's default text to speech engine (i.e., com.svox.pico). As expected, it mispronounces some words (as do I) and it therefore occasionally needs some ...
8
votes
2answers
229 views

What is the proper syntax for the phoneme attribute in Android's TTS XML?

My understanding is that this X-SAMPA XML sample, like other samples here and even here & here, is supposed to sound something. String text = "<speak xml:lang=\"en-US\"> <phoneme ...
2
votes
3answers
318 views

How to skip some section of text while speaking using SSML

Is there some SSML tags etc, to remove a particular line of text from speaking. Yes, I know I can remove this using string functions, before sending it to the speech synthesizer. But my question is, ...
1
vote
1answer
35 views

How I will breakdown a voice? How many elements I will get If I breakdown a voice?

I want to analyse a voice and store its breakdown info like pitch,speed,frequencey etc. After breakdown I want to store those info in a database and then I will use this database to recreate my voice ...
1
vote
2answers
632 views

does Android TTS support Speech Synthesis Markup Language?

Passing the following SSML (Speech Synthesis Markup Language) document to the com.svox.pico TextToSpeech engine resulted in a reading of the XML body but no control from the phoneme element or the ...
0
votes
1answer
264 views

VoiceXML Prompt & SSML <mark> element. How to read prompt from the specified position?

<mark> element informs that reading went on to some point. But is there a way we could read the prompt again from the specified position returned by mark (name) id? It could be useful in such a ...