积极答复者
关于语音识别SpeechRecognizer的问题

问题
-
答案
-
SpSharedRecognizer并不独占系统语音输入。这可能造成语音输入被其他程序使用时识别效果不稳定。关于shared和inproc语音引擎的区别,可以参考http://msdn.microsoft.com/en-us/library/ms722071(v=vs.85).aspx
使用语音文件作为输入的方法参考http://msdn.microsoft.com/en-us/library/ms717071(v=vs.85).aspx。如果语音引擎在输入时处于训练模式(ISpRecognizer2::SetTrainingState),而且训练结束后提交训练数据,则语音引擎会将训练数据保留。
The following is signature, not part of post
Please mark the post answered your question as the answer, and mark other helpful posts as helpful, so they will appear differently to other users who are visiting your thread for the same problem.
Visual C++ MVP
全部回复
-
SpSharedRecognizer并不独占系统语音输入。这可能造成语音输入被其他程序使用时识别效果不稳定。关于shared和inproc语音引擎的区别,可以参考http://msdn.microsoft.com/en-us/library/ms722071(v=vs.85).aspx
使用语音文件作为输入的方法参考http://msdn.microsoft.com/en-us/library/ms717071(v=vs.85).aspx。如果语音引擎在输入时处于训练模式(ISpRecognizer2::SetTrainingState),而且训练结束后提交训练数据,则语音引擎会将训练数据保留。
The following is signature, not part of post
Please mark the post answered your question as the answer, and mark other helpful posts as helpful, so they will appear differently to other users who are visiting your thread for the same problem.
Visual C++ MVP