Tag: Grammars
Grammars available for Speech Apps in Windows Phone SDK
When implementing the speech recognition in the windows phone apps, we should use the predefined grammars to identify if the input is valid or not. There are generally 3 different types of grammars that can be used when implementing speech feature in your Windows Phone app. Grammars available for Speech Apps in Windows Phone SDK Built-In grammars – There are 2 types of built in…
Using Web Search Grammars with SpeechRecognizerUI in Windows Phone
The built-in dictation grammar is used for the SpeechRecognizerUI when the grammar is not added to the grammar set of the SpeechRecognizerUI object. Below is a sample code snippet demonstrating how to set and use the Web Search Grammars for recognizing speech. Using Web Search Grammars with SpeechRecognizerUI in Windows Phone
How to use Phrase List Grammars for recognising Speech in Windows Phone Apps?
The List grammars is one of the grammars that the developers can use to create their own custom grammars. With this technique, simply create an array or collection of strings which are the phrase list and set it to the grammars list of the SpeechRecognizer Object. How to use Phrase List Grammars for recognizing Speech in Windows Phone Apps? Below is a code snippet demonstrating…
How to use Phrase List Grammars (List) for recognizing Speech in Windows Phone Apps?
In one of the previous article, we saw how to use the Phrase List Grammars via the array of string for the speech recognition in Windows Phone Apps. Below is a code snippet demonstrating How to use Phrase List Grammars (List) for recognizing Speech in Windows Phone Apps? How to use Phrase List Grammars (List) for recognizing Speech in Windows Phone Apps?