Do I need to install the Speech SDK for speech recognition, even when I use the Speech Recognition.NET namespace?

I know that I need to install the Speech SDK if I use SAPI for speech recognition. But what if I use the .NET System.Speech.Recognition: SpeechRecognizer class?

+2
source share
1 answer

System.Speech.Recognition: SpeechRecognizer uses SAPI, so if you do not have SAPI installed by default (i.e. you are running XP), you need to install it. You do not need the entire SAPI developer kit, just redistributables (SpeechSDK51MSM.exe).

XP, SAPI 5.1; .

System.Speech.Recognition: SpeechRecognizer SAPI 5.1; SAPI 5.3; , .

+2

Source: https://habr.com/ru/post/1746735/


All Articles