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

Can't play .mp3 files with dialogflow

So I'm currently working on a google assistant project, with dialogflow, firebase and google storage, and thus far I have a conversational agent that is working, but after searching the whole day a way to play .mp3 files stored in my google storage…
0
votes
1 answer

can we use SSML tags with confirmation event in dialogflow fulfillment

I have an intent where I am confirming the customer phone number, but instead of saying it as characters, agent says it as cardinal customerNumber is 1234567890 conv.ask(new Confirmation(`You told ${customerNumber}, is that right please…
0
votes
1 answer

How to save Powershell's output to file when I create synthetic voice audio with Text-to-Speech using the command line

please teach me how to make Powershell automatically save its tts output to TEXT file, as I'm getting just a long string like this: { "audioContent": "//NExAAQ4oIMABhEuDRESizqE7uehfMY8A........... I have to process more than 1400 files :( what to…
0
votes
1 answer

Robotic Voice Style With Microsoft Speech Service

I'm working on an application where we want to try a robot voice for user interactions instead of the current Speech Services standard voices. That would make the application more exciting since our bot will be talking to kids. The application shall…
0
votes
1 answer

How can use a large (mora than 1500 characters) SSML speech file into aws sumerian with amazon polly?

I´m working in AWS sumerian and I use a host to speech my ssml file. When I use more than 1500 characters the scene can not run and I receive a message error that the max lengh has reached. I want need to use a ssml speech file with more than 5000…
0
votes
1 answer

How to add ssml in suggestion chips actions on google

app.intent('Default Welcome Intent', (conv) => { if (!conv.screen) { conv.ask(`Your device is not compatible`); return; } conv.ask(`It's a rhyming word game app. A Random word will be given to you. You have to enter a rhyming word…
0
votes
4 answers

Surrounding bits of text with xml elements

I'm looking for a way to dynamically surround parts of text with XML nodes based on regular expressions. Consider the following example The test number is 123456789, and some further block of text. Now let's say I have a regular…
Nicolas
  • 1,256
  • 1
  • 10
  • 22
0
votes
3 answers

Console returns SSML error when adding parameter to emphasis tag

I am working on a Python script to convert SSML into audio for an application. I already have the text conversion working, but I am figuring out the SSML part by experimenting in the console. From the documentation:…
Chris Hare
  • 161
  • 2
  • 12
0
votes
1 answer

SSML in Dialogflow response

Can we use SSML in dialogflow JSON Response from webhook i.e. without using Google Assistant client library. Basically I would like to return SSML subalias in the response from my webhook hosted on AWS Lambda. I tried to search if it is possible…
SafySafy
  • 41
  • 3
0
votes
1 answer

SSML MalformedRequest error in Google Assistant intent response

I'm using a Dialogflow agent to feed an Assistant Action. I receive an error when I attempt to customize an intent's response output using SSML. I have a simple response for "Google Assistant" (in addition to the default) Using plain text is fine…
Bryce Howitson
  • 7,339
  • 18
  • 40
0
votes
0 answers

Strange bug - Google Action is swapping voice mid-interaction

We are using Female 1 as the voice in our Google Action. Our intent is fulfilled by a cloud function, that responds with some SSML. After triggering the intent a several times, the speaker emits a low pitched earcon, and swaps the voice to Male. Has…
Joshua Richards
  • 676
  • 1
  • 7
  • 14
0
votes
1 answer

Amazon Echo censors SSML output

I was trying to let my AlexaSkill give out some phrases, but it censors the letter combination 'zob' to 'z**' The JSON-Output looks normal, but the output itself is changed. Is there any chance to let it pronounce correctly? I didn't find a…
Bsel
  • 85
  • 9
0
votes
0 answers

Microsoft Speech Synthesis, SpeakSsmlAsync with out lang attribute

I am using Microsoft Speech Synthesis to play my SSML string using public Prompt SpeakSsmlAsync(string ssmlText); and i got a requirement where i should not use xml:langbut when i remove xml:lang attribute from the ssml string i am getting below…
0
votes
1 answer

SSML in LocationPermission context

I'm using this code as my main voice: let SSMLText = ` Right away, ` The problem is when you are asking a permission in…
WinterChilly
  • 1,549
  • 3
  • 21
  • 34
0
votes
0 answers

How can I make my skill listen/wait for a response for an indefinite amount of time

So I am trying to develop a skill that in short allows for users to ask for instructions on how to build various items step by step. However I am running into an issue when, for any given step, an intent will only listen for a response for a total…
XSoloDolo
  • 99
  • 3