Microsoft Speech Recognition Platform

后端 未结 1 1999
被撕碎了的回忆
被撕碎了的回忆 2020-12-29 15:34

I wrote an app in C# for speech recognition using System.Speech which works fine on Windows 7. However I\'m after creating the same app that will work on windows 2003 (x86).

相关标签:
1条回答
  • 2020-12-29 16:25

    You're creating a speech recognition engine without specifying an engine. Since you've installed the en-GB engine, you need to specify a cultureinfo (or a recognizerinfo):

    sre = new SpeechRecognitionEngine(new CultureInfo("en-GB")); 
    
    0 讨论(0)
提交回复
热议问题