如何通过平板电脑触摸屏中止Pepper语音?

时间:2018-11-10 18:44:24

标签: pepper choregraphe

我想在使用Pepper Tablet应用程序讲话时中断Pepper的TextToSpeech服务吗?

终止语音需要调用什么方法?

1 个答案:

答案 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)
        })
    })
}