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

How can I abort Pepper speech via Tablet touchscreen?

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

我需要调用什么方法来终止它的语音?

ALTextToSpeech API 提供功能 stopAll()

要使用 Pepper 平板电脑应用程序,您可以 javascript 调用如下函数:

function stopTalking() {
    QiSession(function (session) {
        session.service("ALTextToSpeech").then(function (tts) {
            tts.stopAll()
        }, function (error) {
            console.log("An error occurred:", error)
        })
    })
}