Speech enabled asp.net application -
we working on asp.net web application requires data entered speech.
the user can enter data using normal user interface however, want additional feature can enter data speaking. can fix voice commands enter "value1" "data1", user speak "data1" followed "value1" (or else, can fixed later).
i searched on internet , found using microsoft speech sdk solution. started initial implementation , found works ie , requires plugin (we not able use plugin in windows 7, xp).
is there other solution or can sasdk used other browsers ? suggestions helpful.
thanks, gaurav
yes, can done:
- use html5's getusermedia capture audio stream
- save .wav, there libraries that
- send .wav server through ajax
- feed .wav speechrecognitionengine, through setinputtowavefile method
- get result , return in ajax call
an example:
http://weblogs.asp.net/ricardoperes/speech-recognition-in-asp-net
Comments
Post a Comment