是否可以禁用语音参考卡?
Microsoft 语音识别附带语音参考卡。它包含一些可识别的预先确定的单词。
我想知道是否可以禁用它。是吗?
编辑: 我想删除所有预定义的命令。 这个: http://windows.microsoft.com/ en-us/windows-vista/语音识别中的常用命令
编辑2: 我正在使用 SpeechLib!
Microsoft Speech Recognition comes with a Speech Reference Card. It consists in some pre-determined words that are recognized.
I want to know if it's possible to disable it. Is it?
EDIT:
I want to remove all pre-defined commands.
This ones:
http://windows.microsoft.com/en-us/windows-vista/Common-commands-in-Speech-Recognition
EDIT2:
I'm using SpeechLib!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要一个进程内识别器,而不是共享识别器。
由于您使用的是 C#,因此需要使用 SpeechRecognitionEngine 类(如果您使用的是 System.Speech.Recognition)。
特别是,您还需要使用 SetInputToDefaultAudioDevice,以便 inproc 识别器知道从哪里获取音频。
You probably want an in-process recognizer, instead of a shared recognizer.
Since you're using C#, you need to use the SpeechRecognitionEngine class if you're using System.Speech.Recognition.
In particular, you need to also set the Audio Input property of the recognizer using SetInputToDefaultAudioDevice, so that the inproc recognizer knows where to get the audio from.
尝试更改代码以使用您所说的内容,我发现了我需要的东西!
使用此命令:
一切正常!
您可以在此处找到更多信息!
Trying to change the code to use what you said, I've discovered what I needed!
With this command:
all worked!
You can find more info here!