Questions tagged [ssml]

Speech Synthesis Markup Language(SSML) is a web standard for generating synthetic speech for voice-impaired users or device audio output.

SSML can be used to create software which integrates with voice services such as Skype to provide text-to-speech capabilities.

164 questions
0
votes
1 answer

Using the word 'alexa' in SSML audio

I have implemented a skill that plays short SSML audio clips. However, a few of the audio clips have alexa phrase suggestions in them. One of the clips includes the phrase 'alexa stop'. To my surprise it looks as if alexa 'listens' to itself in this…
jjc99
  • 3,559
  • 4
  • 22
  • 21
0
votes
1 answer

SSML phonemes work fine in Alexa service simulator but don't work on Echo hardware

I'm creating a simple Alexa skill and want to use SSML to pronounce some non-English words properly. While everything works fine in Amazon Service Simulator, I can't get it working on actual Amazon Echo hardware. For example, I'm sending following…
aa111
  • 27
  • 6
0
votes
1 answer

How to Implement LPT (Longest Processing Time) Scheduling Algorithm function in SML

Suppose that we have a list with the processing time of some tasks,like this [13,8,7,6,4,2,2,1]. we want to divide this list into two list by LPT Scheduling Algorithm.here is the algorithm procedure: with a given Descending sorted list like above,at…
0
votes
1 answer

Invalid xml with ssml in C#

I am having a hard time trying to figure out how the xml is invalid for my ssml code within C#. Here is the line of code in C#: synth.SpeakSsml("< voice…
0
votes
0 answers

Phonemes in SSML Universal Windows

I am working on a universal windows translator application for state level translation. I want to make my device speak translated text. The translated language is state level language something like making my device speak Hindi translated text. Is…
iam.Carrot
  • 4,976
  • 2
  • 24
  • 71
0
votes
2 answers

Having troubles with Amazon Echo (Alexa) and SSML

I'm trying to handle better phonetic pronunciations and pausing with Alexa+Lambda+Javascript. I see from the docs: https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/speech-synthesis-markup-language-ssml-reference that you are…
0
votes
3 answers

Is xml header necessary in ssml request in the SSML Specification?

I wonder if we strictly need to specify xml header in our requests to ssml synthesizers like the following: hello world or does the SSML standard also allow this?: hello world
fatihk
  • 7,789
  • 1
  • 26
  • 48
0
votes
1 answer

Say currency with Spanish

I want to play text to speech with ssml. var prompt = new StringBuilder();. prompt.Append(@"$"); prompt.Append({0}); prompt.Append(@""); Then we can Play prompt.ToString() as TTS. It works fine for English. The…
user1108948
0
votes
1 answer

Can any TTS engine change a voice's language, and subsequently its phoneme?

Lets say I want to have some English text spoken in an Italian accent. Many of the engine demos I have tried on their respected sites will have the Italian language available, but when you try to get it to pronounce a few sentences in English, they…
Anon
  • 2,267
  • 3
  • 34
  • 51
0
votes
1 answer

Audio spells markup when ssml format passed in Ivona

when i call Ivona API with input as ssml format, i get audio which pronounce ssml markup. How to correctly call using ssml as input.
Vishal
  • 435
  • 6
  • 12
0
votes
1 answer

Windows Phone 8 text-to-speech using SSML - tag exception on real device

i'm implementing simple speech reconition and synthesis (SSML) on WP8. When i test the app in emulator, everything is all right. But when i test the app on physical device (HTC Windows Phone X8), there occurs one problem with SSML synthesis. This…
untosabla
  • 96
  • 1
  • 2
  • 11
0
votes
1 answer

How to slow down text to Speech with SSML - voice sounds distorted/warped/ghastly

i am using nuance dragon mobile sdk for iPhone, for using text to speech. The readed text is a little bit to fast and i want to make it slower, so the user can learn the words. My aim is to slow down the text a bit. That works very fine with SSML…
brush51
  • 5,691
  • 6
  • 39
  • 73
0
votes
1 answer

how to do pause after paragraph while textToSpeech

i have a text which is used for textToSpeech. i want to do a pause in the text which is readed from the dragon mobile SDK for iPhone. the text is without the SSML. only blanc text. What kind of charactars can i use for pause? I know that after a " .…
brush51
  • 5,691
  • 6
  • 39
  • 73