Adnan
Adnan

Reputation: 8729

Speech Recognition in C# with specific command

I was developed a application that can only recognize some word. I've several questions.

1)Can I able to develop something like

if(command == Browser)
{
    //open default browser
}

2) If Yes, how can Recognize System understand the custom word??

Any code sample or tutorial will be appreciated.

Upvotes: 2

Views: 1514

Answers (1)

Waqar
Waqar

Reputation: 2591

you can do this with Microsoft Speech API System.Speech.Recognition.

Have a look at this article

Upvotes: 2

Related Questions