我正在编写一个WinRT应用程序,在VS 2015,x86调试中测试它。我正进入(状态 不需要的音频输出,不是我的应用程序创建的。这是我的代码:
using Windows.Media.SpeechRecognition;
SpeechRecognitionResult result = await recEngine.RecognizeAsync();
//recEngine is of type SpeechRecognizer; using dictation grammar.
if (result.Confidence == SpeechRecognitionConfidence.Rejected)
return;
if (result.RawConfidence < .60)
return;
//proceed to process the speech-to-text in the result......
如果我只是回来(有无法识别的语音),我没有得到音频输出:很好。如果我成功识别语音,我会在我的应用程序中处理它,但我也得到以下音频输出(在我的桌面扬声器中):
“我不认识这个命令。请再试一次。”
这是从哪里来的,如何抑制它?
答案 0 :(得分:0)