A break shorter than comma

0

I am trying to make the following sentence be said naturally by Amazon Polly (using Matthew neural voice) :

<speak>
<prosody rate="80%">
For each number i from 1 to n, we add i to the sum. 
<mark name="end"/>
</prosody>
</speak>

It needs a break after i, but not as large as a comma. I tried using <break time="0.1s"/>, but no matter how small a time I specify, the break is same as a comma. Is there a way I can cause a natural break after i?

asked a year ago270 views
1 Answer
0

Hi AlwaysLearning, I am a Polly user, I hope my solution can help you.

<speak> <prosody rate="80%"> For each number i from 1 to n, we add i <break time="100ms"/> to the sum. <mark name="end"/> </prosody> </speak>

Please note. "ms" is for milliseconds, so you can vary the length as you like, the maximum break allowed should be 10 seconds.

LBajard
answered a year ago
  • This does not work. 100ms adds as much a break as a comma. So does 50ms. Please try this in the console.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions