按计划发言的 Alexa 技能是什么?
What is the Alexa skill for speaking on a schedule?
我从像 this 这样的链接中看到,我可以让 Alexa 说任意话来响应关键字。问题是我的字数限制在 250 个字以内,而且无法控制她的时间安排——她只是把所有事情都凑在一起。
是否有允许我执行类似操作的开发接口:
- 说文本 1。
- 等待 20 秒。
- 说文本 2。
- 等待 20 秒。
等等?
我想这是开发人员界面,通常用于冥想或锻炼应用程序。我真的只需要知道 google 看看这个接口叫什么并阅读文档---我搜索“Alexa Routines”“Alexa say things on a timer”return 关于她技能的事情称为“例程”和“计时器”而不是如何开发这些。
它叫做SSML:语音合成标记语言
你可以做的不仅仅是等待。
<speak>
There is a three second pause here <break time="3s"/>
then the speech continues.
<break time="3s"/>
something else
</speak>
但是,有一个规则,你不能让所有的中断都超过10s。
Break tag silence can't exceed 10 seconds, including scenarios with
consecutive break tags. SSML with more than 10 seconds of silence
isn't rendered to the user.
如果您需要等待超过10秒,那么您可以return your own audio.
我从像 this 这样的链接中看到,我可以让 Alexa 说任意话来响应关键字。问题是我的字数限制在 250 个字以内,而且无法控制她的时间安排——她只是把所有事情都凑在一起。
是否有允许我执行类似操作的开发接口:
- 说文本 1。
- 等待 20 秒。
- 说文本 2。
- 等待 20 秒。
等等?
我想这是开发人员界面,通常用于冥想或锻炼应用程序。我真的只需要知道 google 看看这个接口叫什么并阅读文档---我搜索“Alexa Routines”“Alexa say things on a timer”return 关于她技能的事情称为“例程”和“计时器”而不是如何开发这些。
它叫做SSML:语音合成标记语言
你可以做的不仅仅是等待。
<speak>
There is a three second pause here <break time="3s"/>
then the speech continues.
<break time="3s"/>
something else
</speak>
但是,有一个规则,你不能让所有的中断都超过10s。
Break tag silence can't exceed 10 seconds, including scenarios with consecutive break tags. SSML with more than 10 seconds of silence isn't rendered to the user.
如果您需要等待超过10秒,那么您可以return your own audio.