Initializing Speech Recognition without Popup

When I try to initialize the "speech recognizer" with the following code:

SpeechRecognizer rec = new SpeechRecognizer();

      

popup appears with speech recognition setting which stops me from initializing.

Does anyone know how to fix this?

Please, help.

+3


source to share


1 answer


What you are trying to tell you is that speech recognition is not yet configured on your computer. Before using SpeechRecognizer

, you need to run the installation wizard.




When playing with advanced speech properties (Control Panel -> All Control Panel Items -> Speech Recognition -> Advanced Speech Options), when I set the language setting to this, it stopped the program from starting

enter image description here

+3


source







All Articles