Is it possible to convert speech to text without using a web service? I have tried the following solution but the libraries aren't recognised in eclipse,http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj207021(v=vs.105).aspx
I'm thinking there has to be a speech recognition API in Windows 8 RT? Does anyone have an implementation of speech recognition in this platform or point me in the right direction?
I'm guessing that these methods are not available on the Windows 8 RT platform,If so are there any alternatives?
I tried the following in an app bar button click event but none of the methods/namespaces are recognized.
// 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));