MSIE 语音识别 ActiveX
我正在编写一些关于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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
You can use SAPI.SpInprocRecognizer or SAPI.SpSharedRecognizer
http://msdn.microsoft.com/en-us/library/ms722071(v=VS.85).aspx
See example here
http://julius.sourceforge.jp/sapi/Samples/JavaScript/dictcommand.html