有没有办法将语法与 HTML 5 语音输入 API 结合使用?

发布于 2024-12-23 18:42:27 字数 69 浏览 1 评论 0原文

我正在使用 HTML 5 语音输入 API,我想让服务器知道它可以期望从语音输入返回哪些答案。有没有办法设置可能的输入列表?

I'm working with the HTML 5 speech input API and I want to let the server know which answers it can expect to be returned from the speech input. Is there a way to set a list of possible inputs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野稚 2024-12-30 18:42:27

在 Google Chrome 中,您还不能使用语法,总的来说,他们决定仅使用自由形式识别。相关问题是Google语音API中的语法

Firefox Web Speech API 支持语法,但该功能是实验性的。

如果您的浏览器支持 HTML5 音频,您可能需要尝试使用 Pocketsphinx.js 从语法中识别单词 库,它提供了基于 javascript 的识别器,这对于语法来说应该非常好。

In Google Chrome you can not use grammars yet, overall they decided to use free-form recognition only. Relevant question is Grammar in Google speech API.

Grammars are supported in Firefox Web Speech API, but the feature is experimental.

If your browser supports HTML5 audio, you might want to try to recognize words from your grammar using Pocketsphinx.js library, it provides javascript-based recognizer which should be very good for grammars.

折戟 2024-12-30 18:42:27

我假设您正在谈论 W3C 定义的语音输入 API 规范
根据此规范,支持语法,这是语音识别系统用来限制可能的输入的方法。查找标题为“语音识别语法”的部分。问题在于正在使用的特定浏览器对它的支持程度如何,HTML 5 特定功能就是这种情况,因为它还不是一个完整的标准。 Chrome 似乎是最新的标准。查看这篇Chrome 团队发布的博文 关于实现语音输入 API。

I assume your a talking about the Speech Input API Specification as defined by the W3C.
According to this specification grammars are supported, which is the method used by speech recognition systems to restrict possible inputs. Look for the section titled "Speech recognition grammars". The problem will be how well it is supported in the particular browser that is being used, which is the case for an HTML 5 specific function since it is not a completed standard yet. Chrome seems to be the most up to date with the standard. Checkout this blog post from the Chrome team on implementing the Speech Input API.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文