jenny-multilangual can not synthesis Japanse and Chinese Mandarin?

xbz 1 Reputation point
2021-07-23T02:41:44.923+00:00

such as the hybrid text of Chinese and English: 有志者,where is the will, 事竟成1000,where is the way 1000。
Japanese: ホッカホッカ!プリプリのシャクシャ

Azure AI Speech
Azure AI Speech
An Azure service that integrates speech processing into apps and services.
1,734 questions
{count} votes

1 answer

Sort by: Most helpful
  1. romungi-MSFT 46,141 Reputation points Microsoft Employee
    2021-07-23T05:44:46.607+00:00

    @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.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.