ssml 在Google上的操作中 node.js 不起作用。它只会与 ssml标签一起说出值。
示例: <speak> Hello <break time="1s"/> All </speak>
它只是告诉标签,例如"说话要比Hello的说话要小于休息时间等于......."
假设您正在使用google npm软件包。
您可以在下面引用代码,
// Handle the Dialogflow intent named 'favorite color'.
// The intent collects a parameter named 'color'
app.intent('favorite color', (conv, {color}) => {
const luckyNumber = color.length;
const audioSound = 'https://actions.google.com/sounds/v1/cartoon/clang_and_wobble.ogg';
if (conv.data.userName) {
// If we collected user name previously, address them by name and use SSML
// to embed an audio snippet in the response.
conv.close(`<speak>${conv.data.userName}, your lucky number is ` +
`${luckyNumber}.<audio src="${audioSound}"></audio></speak>`);
} else {
conv.close(`<speak>Your lucky number is ${luckyNumber}.` +
`<audio src="${audioSound}"></audio></speak>`);
}
});
有关更多详细信息,您可以查看Google Code Lab
检查您的标签可能会有一些错误。我遇到了相同的问题,事实证明我错过了休息时间的前进斜线。您可能犯了这样的错误。