I am trying to design a text editor using C# language and implement voice recognition for the normal file features , is this possible to implement. I am very sorry if I am repeating the question which has been asked previously. I just want to know if there are ways in converting the Speech to Text using C#. Your help is really valuable . Awaiting for response. Thanks in advance.
feedback
|
|
If I recall correctly the Microsoft Speech SDK supports speech to text. | |||
|
feedback
|
|
There's also the iSpeech API, which could be used for speech recognition as a web service. | |||
|
feedback
|
|
Then there's the LumenVox Speech Engine. | |||
|
feedback
|
|
Here is a complete example using C# and System.Speech for converting from speech to text The code can be divided into 2 main parts: configuring the SpeechRecognitionEngine object (and its required elements) handling the SpeechRecognized and SpeechHypothesized events. Step 1: Configuring the SpeechRecognitionEngine
At this point your object is ready to start transcribing audio from the microphone. You need to handle some events though, in order to actually get access to the results. Step 2: Handling the SpeechRecognitionEngine Events
That’s it. If you want to use a pre-recorded .wav file instead of a microphone, you would use
instead of
There are a bunch of different options in these classes and they are worth exploring in more detail. | ||||
|
feedback
|