我可以自定义 Cortana 来讲童话故事并放慢语速吗?

Can i custom Cortana to tell fairytale and speak slower?

这是我第一次当父亲。我也是幼儿园的老师。 我知道 Cortana 很久了,但最后一天,我将我的笔记本电脑更新到 Window 10 来使用她,而我的 child 太令人兴奋了。 但是 Cortana 说话太快了,他们听不懂。我的国家不使用英语(我住在越南),他们仍在学习。那么,我可以让 Cortana 以较慢的速度说话吗?

而且,我在 Google 中找到了一些教程,关键字为 "How to custom Cortana command?"。很多视频向我展示了 Cortana 关闭/打开计算机的方式。但如果我想让 Cortana 在我的电脑上打开 "Jonny Jonny Yes Papa" 歌曲或儿童歌曲,或者讲童话故事,她不会那样做。我有一个问题。 "Can I custom Cortana to ask her play fairytale or Music (most of them are .mp3 files) on my computer, with English name and use Voice to ask her? How does it work? and How can I do for this?. I'm still learning coding, it very hard for me but if I know where I can start to finding, it more easier and a lot things I can learn." 对不起我的英语语法。非常感谢你!

您可以使用 modified prosody 在 ssml 中嵌入文本,它可以调整文本朗读的快慢程度。您的 SSML 看起来像这样:

<speak version="1.0"xmlns="http://www.w3.org/2001/10/synthesis" xml:lang="en-US">
    <prosody rate="slow">My spoken text goes here.</prosody>
</speak> 

在 session.say() 调用中使用 SSML 会导致文本被大声读出。