Click here to Skip to main content
15,885,309 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to Build a Visual C++ for speech recognition?? pls help me
Posted
Comments
Smithers-Jones 5-Mar-11 10:00am    
"Be specific! Don't ask "I need to write a booking application". Specify exactly what it is you need help with." - Read the rules before you post, and next time ask a specific question!

You'll probably want to use the Microsoft speech SDK[^]. It comes with help files and example code.
 
Share this answer
 
Google is your friend: Be nice and visit him often. He can answer questions a lot more quickly than posting them here...

If you try searching with "C++ for speech recognition" pasted from your question, you get lots of solutions: Google[^]
 
Share this answer
 
In addition to hwat Griff said, you could just search[^] the codeproject. Who knows, you might find some code.
 
Share this answer
 
Comments
Gokulnath007 11-Mar-11 7:05am    
No. I just want to build a MFC application which should get the speech as input. For instance, user control, a Mp3 player, if user says "start", it should start playing and if the user says "stop", it has to stop,... pls help me..
Andrew Brock 11-Mar-11 7:09am    
Well, unless you feel like writing your own speach recognition neural network which chooses a "closest match" from a set of commands (play, stop, ...) then you will need to just use 1 of the search results.
It will spit out some text, like "play", "stop", ... which you can simply convert into a command with something like an if(strcmp(...)) else if (strcmp(...)) ...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900