Hi,I want to make a Windows application to recognize malayalam language and also that give a response for the given malayalam voice command.But the Computer only can recognize English.how can I solve this?Please Help me....
Thanks in Advance
Hi,I want to make a Windows application to recognize malayalam language and also that give a response for the given malayalam voice command.But the Computer only can recognize English.how can I solve this?Please Help me....
Thanks in Advance
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Selva GanapathyPosted Sep 25, 2014, 9:06 AM
Hi Prajeesh,
http://www.c-sharpcorner.com/Blogs/13601/locking-the-system-using-voice-recognition-with-grammar.aspx
You can use "SpeechRecognitionEngine" for your requirement, Like you can build you own grammar in Malayalam. Like the following code snippet
grammarBuilder.Append(new Choices("Namaskaram"));
grammarBuilder.Append(new Choices("Selva", "Ganapathy", "Kathiresan"));
Here Append word spell should match on pronunciation.
Regards,
Selva Ganapathy K