是否可以在不使用 Web 服务的情况下将语音转换为文本?我尝试了以下解决方案,但在 Eclipse 中无法识别这些库, http: //msdn.microsoft.com/en-us/library/windowsphone/develop/jj207021 (v=vs.105).aspx
我在想 Windows 8 RT 中必须有语音识别 API?有没有人在这个平台上实现了语音识别或指出我正确的方向?
我猜这些方法在 Windows 8 RT 平台上是不可用的,如果是的话,有什么替代方法吗?
我在应用栏按钮单击事件中尝试了以下操作,但没有识别任何方法/命名空间。
// Create an instance of SpeechRecognizerUI.
this.recoWithUI = new SpeechRecognizerUI();
// Start recognition (load the dictation grammar by default).
SpeechRecognitionUIResult recoResult = await recoWithUI.RecognizeWithUIAsync();
// Do something with the recognition result.
MessageBox.Show(string.Format("You said {0}.", recoResult.RecognitionResult.Text));