当前正在使用Microsoft Speech Rec开发一个应用程序,并且运行良好,但是当尝试使用PhraseListGrammar对象时,它会一直保持未定义状态,这是什么问题?
recognizer = new SpeechSDK.SpeechRecognizer(speechConfig, audioConfig);
recognizer.BabbleTimeout = 0.75;
var phraseListGrammar =
**SpeechSDK.PhraseListGrammar.fromRecognizer(recognizer);**
最后一行给我以下错误:
Cannot read property 'fromRecognizer' of undefined
为什么我不能创建PhraseListGrammar对象,所以我可以给它列出可能要识别的单词的列表。这可以大大提高我的应用程序的效率并降低错误率,因此请他人提供帮助。谢谢。
答案 0 :(得分:1)
需要更新我的SDK版本。