我想在使用Pepper Tablet应用程序讲话时中断Pepper的TextToSpeech服务吗?
终止语音需要调用什么方法?
答案 0 :(得分:3)
ALTextToSpeech API提供功能stopAll()
要使用Pepper Tablet Application,您可以对以下函数进行JavaScript调用:
function stopTalking() {
QiSession(function (session) {
session.service("ALTextToSpeech").then(function (tts) {
tts.stopAll()
}, function (error) {
console.log("An error occurred:", error)
})
})
}