如何控制微软语音识别应用程序?
I want to know if it's possible to control "Microsoft Speech Recognition" using c#.
(source: yfrog.com)
Is it possible, for instance, to simulate the click on "On: Listen to everything I say" programmatically using c# or python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JRobert 的想法是正确的。
如果您使用 C++,那么您将调用 ISpRecognizer ::SetRecoState(SPRST_ACTIVE),然后,如果您在 Windows 7 上运行,请查询 ISpRecognizer3 的 ISpRecognizer 并调用 ISpRecognizer3::SetActiveCategory(NULL) 强制识别器进入ON状态。
但是,由于您使用的是 C#,因此应该使用 System.Speech.Recognition.SpeechRecognizer 并设置 State 属性进行监听。 (请注意,据我所知,这不会从“睡眠”切换到“开启”。)
JRobert had the right idea.
If you were using C++, then you would call ISpRecognizer::SetRecoState(SPRST_ACTIVE), and then, if you're running on Windows 7, QI the ISpRecognizer for ISpRecognizer3 and call ISpRecognizer3::SetActiveCategory(NULL) to force the recognizer into the ON state.
But, since you're using C#, you should use System.Speech.Recognition.SpeechRecognizer and set the State property to Listening. (Note that this will not, as far as I know, switch from Sleep to On.)
这是 Microsoft 的语音 API文档,以及
Python 示例。
Here's Microsoft's Speech API documentation, and an
example in Python.