Bob
Bob

Reputation: 861

Speech Recognition Loop

My question is simply how to implement speech recognition in a windows service in such a way that the service is continuously listening for something to be spoken.

I have done a bit of research and it seems that the solution would be to use a timer and "listen" for speech at specific intervals, although this seems to be wrong to me. Any thoughts or comments would help really help.

Upvotes: 2

Views: 802

Answers (1)

Kevin Junghans
Kevin Junghans

Reputation: 17540

Are you building a speech recognition engine or integrating into an existing ASR? A timer will not work. You need a listener that is always listening. Listening for detection on the beginning of speech and the endpoint of any utterances. A timer could miss the beginning of speech.

Upvotes: 1

Related Questions