1

我正在尝试 Web Speech API 的演示: https: //www.google.com/intl/en/chrome/demos/speech.html。您至少需要 Chrome 25.0 版才能运行它。

我正在尝试连续使用 Web Speech API 进行长时间转录(10-15 分钟)。但是,我注意到大约 1-2 分钟后出现“网络”错误(如 Web Speech API 规范中所述:https ://dvcs.w3.org/hg/speech-api/raw-file/提示/speechapi.html#dfn-onerror)。

有谁知道为什么这个“网络”错误会在 1-2 分钟后持续发生,是否有任何方法可以配置 Web Speech API 以实现更长、连续的转录?

谢谢!

4

1 回答 1

0

Web 语音 API 通常有 60 秒的识别时间。

您需要调用 Speechrecognition.onend() 方法,然后调用 Speechrecognition.start()。所以识别在停止后继续。

于 2016-02-03T12:42:20.350 回答