MSIE 语音识别 ActiveX

发布于 2024-12-13 20:36:17 字数 399 浏览 0 评论 0原文

我正在编写一些关于 MSIE+SAPI 技术的代码,并且我想实验语音识别。

我已经能够使用文本到语音,如下所示:

var KC_TTS = new ActiveXObject("Sapi.SpVoice");
// ...
KC_TTS.Speak("Hello, world!", 1);

因此,按照惯例,必须有一些可以类似地加载和使用的语音识别 ActiveX。但是,我似乎无法找到该 ActiveX 的名称,因此,我也找不到任何相关文档。

我的问题

允许语音识别的 MS ActiveX 的名称是什么?

我在哪里可以找到有关其使用的一些文档?

I'm writing some code on MSIE+SAPI technology, and I wanted to experiment with speech recognition.

I've been able to use text to speech as follows:

var KC_TTS = new ActiveXObject("Sapi.SpVoice");
// ...
KC_TTS.Speak("Hello, world!", 1);

So, by convention, there must be some speech recognition ActiveX that can be loaded and used similarly. However, I can't seem to be able to find the name of this ActiveX, and as such, I can't find any associated documentation as well.

My questions

What is the name of the MS ActiveX that allows speech recognition?

Where can I find some documentation on its use?

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

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

发布评论

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

评论(1

云淡月浅 2024-12-20 20:36:17

允许语音识别的 MS ActiveX 的名称是什么?

您可以使用 SAPI.SpInprocRecognizer 或 SAPI.SpSharedRecognizer

在哪里可以找到有关其使用的一些文档?

http://msdn.microsoft.com/en- us/library/ms722071(v=VS.85).aspx

请参阅此处的示例

http://julius.sourceforge.jp/sapi/Samples/JavaScript/dictcommand.html

What is the name of the MS ActiveX that allows speech recognition?

You can use SAPI.SpInprocRecognizer or SAPI.SpSharedRecognizer

Where can I find some documentation on its use?

http://msdn.microsoft.com/en-us/library/ms722071(v=VS.85).aspx

See example here

http://julius.sourceforge.jp/sapi/Samples/JavaScript/dictcommand.html

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