How to Retrieve the Installed Speech Recognizers in Windows Phone?

Do you want to retrieve the list of installed speech recognizers in Windows Phone? The Windows Phone 8 SDK provides the static InstalledSpeechRecognizers class which includes the static property All of type “IReadOnlyList<SpeechRecognizerInformation>” to get the available speech recognizers in Windows Phone.

How to Retrieve the Installed Speech Recognizers in Windows Phone?

The below sample code retrieves the installed speech recognizers from Windows Phone and displays the description of the installed speech recognizers in the Output window.

var SpeechRecognizers = InstalledSpeechRecognizers.All;

foreach (var Recognizer in SpeechRecognizers)

{

System.Diagnostics.Debug.WriteLine(Recognizer.Description);

}

Output

Microsoft Speech Recognition Engine – en-US Embedded v11.1

Microsoft Speech Recognition Engine – de-DE Embedded v11.1

Microsoft Speech Recognition Engine – zh-TW Embedded v11.1

Microsoft Speech Recognition Engine – fr-FR Embedded v11.1

Microsoft Speech Recognition Engine – it-IT Embedded v11.1

Microsoft Speech Recognition Engine – ja-JP Embedded v11.1

Microsoft Speech Recognition Engine – pl-PL Embedded v11.1

Microsoft Speech Recognition Engine – pt-BR Embedded v11.1

Microsoft Speech Recognition Engine – ru-RU Embedded v11.1

Microsoft Speech Recognition Engine – en-IN Embedded v11.1

Microsoft Speech Recognition Engine – zh-CN Embedded v11.1

Microsoft Speech Recognition Engine – en-GB Embedded v11.1

Microsoft Speech Recognition Engine – es-MX Embedded v11.1

Microsoft Speech Recognition Engine – zh-HK Embedded v11.1

Microsoft Speech Recognition Engine – es-ES Embedded v11.1

How to Retrieve the Installed Speech Recognizers in Windows Phone?

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you’ll learn about the Win32 Error “0x000019E5 – ERROR_COULD_NOT_RESIZE_LOG” that you get when debugging system erors in...
In this post, you’ll learn about the error “CO_E_DBERROR 0x8004E02B” that is returned when working with COM based APIs or...
In this post, you’ll learn about the Win32 Error “0x000019D0 – ERROR_LOG_BLOCK_VERSION” that you get when debugging system erors in...