Azure AI Speech
An Azure service that integrates speech processing into apps and services.
1,734 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
such as the hybrid text of Chinese and English: 有志者,where is the will, 事竟成1000,where is the way 1000。
Japanese: ホッカホッカ!プリプリのシャクシャ
@xbz If you would like to include multiple languages in an SSML then you can include the <lang>
tag to get it processed. For example:
<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="Microsoft Server Speech Text to Speech Voice (en-US, JennyMultilingualNeural)">I am looking forward to the exciting things.
<lang xml:lang="es-MX"> Estoy deseando que lleguen las cosas emocionantes </lang>
<lang xml:lang="de-DE">Ich freue mich auf die spannenden Dinge.</lang>
<lang xml:lang="zh-CN"> 事竟成 </lang>
<lang xml:lang="ja-JP"> ホッカホッカ!プリプリのシャクシャ </lang>
Hello there <lang xml:lang="zh-CN"> 谢谢你 </lang>
</voice>
</speak>
Please refer to the documentation for more details.