Francesca Neural pt-BR 使用样式
Francesca Neural pt-BR using styles
是否有任何文档说明可以与 Francisca Neural 一起使用的样式?
例如:
xml_body = ElementTree.Element('speak', version='1.0')
xml_body.set('{http://www.w3.org/XML/1998/namespace}lang', 'pt-BR')
xml_body.set('xmlns:mstts', 'https://www.w3.org/2001/mstts')
voice = ElementTree.SubElement(xml_body, 'voice')
voice.set('name', 'Microsoft Server Speech Text to Speech Voice (pt-BR, FranciscaNeural)')
mstts = ElementTree.SubElement(voice, 'mstts:express-as')
mstts.set('style', 'cheerful')
prosody = ElementTree.SubElement(mstts, 'prosody')
prosody.set('rate', '0%')
body = ElementTree.tostring(xml_body)
我尝试使用 cheerful
,但我没有发现声音有任何变化。
目前,这些神经语音支持说话风格调整:
en-US-AriaNeural
en-US-JennyNeural
en-US-GuyNeural
zh-CN-XiaoxiaoNeural
zh-CN-YunyangNeural
zh-CN-YunyeNeural
zh-CN-YunxiNeural (Preview)
zh-CN-XiaohanNeural (Preview)
zh-CN-XiaomoNeural (Preview)
zh-CN-XiaoxuanNeural (Preview)
zh-CN-XiaoruiNeural (Preview)
早些时候,PT-BR Francesca Neural 确实支持样式调整,并在上面的文章中进行了说明。但由于 MS 产品组正在处理的已知问题,一直 redacted/removed。
是否有任何文档说明可以与 Francisca Neural 一起使用的样式?
例如:
xml_body = ElementTree.Element('speak', version='1.0')
xml_body.set('{http://www.w3.org/XML/1998/namespace}lang', 'pt-BR')
xml_body.set('xmlns:mstts', 'https://www.w3.org/2001/mstts')
voice = ElementTree.SubElement(xml_body, 'voice')
voice.set('name', 'Microsoft Server Speech Text to Speech Voice (pt-BR, FranciscaNeural)')
mstts = ElementTree.SubElement(voice, 'mstts:express-as')
mstts.set('style', 'cheerful')
prosody = ElementTree.SubElement(mstts, 'prosody')
prosody.set('rate', '0%')
body = ElementTree.tostring(xml_body)
我尝试使用 cheerful
,但我没有发现声音有任何变化。
目前,这些神经语音支持说话风格调整:
en-US-AriaNeural
en-US-JennyNeural
en-US-GuyNeural
zh-CN-XiaoxiaoNeural
zh-CN-YunyangNeural
zh-CN-YunyeNeural
zh-CN-YunxiNeural (Preview)
zh-CN-XiaohanNeural (Preview)
zh-CN-XiaomoNeural (Preview)
zh-CN-XiaoxuanNeural (Preview)
zh-CN-XiaoruiNeural (Preview)
早些时候,PT-BR Francesca Neural 确实支持样式调整,并在上面的文章中进行了说明。但由于 MS 产品组正在处理的已知问题,一直 redacted/removed。