Asking for 20second of pause in text->speech gives only 5s and 10s for this code:
I would expect 20s!
Tested on website and over python API
https://azure.microsoft.com/en-gb/services/cognitive-services/text-to-speech/#features
<speak xmlns="http://www.w3.org/2001/10/synthesis" xmlns:mstts="http://www.w3.org/2001/mstts" xmlns:emo="http://www.w3.org/2009/10/emotionml" version="1.0" xml:lang="en-US">
<voice name="en-US-SaraNeural">
<mstts:express-as style="cheerful">
<prosody pitch="0%" rate="1" volume="100">
One.
<mstts:silence type="Sentenceboundary" value="20s"/>
Two.
One.
<break time="20s"/>
Two.
</prosody>
</mstts:express-as>
</voice>
</speak>