-2

I want to use voice activated commands on my website. I have already implemented it on win forms using System.Speech.Recognition. However can't manage to use it on web application. Example code snippet would be appreciated.

Can I use it with web service?

2 Answers2

0

Yes it is possible to have voice activated commands on your website, but it'll probably be difficult to refactor you winforms code. There are many articles around, so I suggest you google around a little bit further. You have the choice: you can go for the server-side route or you can use client-side frameworks (or some hybrid approach).

hbulens
  • 1,872
  • 3
  • 24
  • 45
  • i have searched already on google and found almost everything about win-form. those which are about asp.net either broken or don't work. – ultimateremedy Sep 29 '15 at 07:10
  • 1
    It's very hard to believe that. Here's an article from Ricardo Peres that covers this topic: http://weblogs.asp.net/ricardoperes/speech-recognition-in-asp-net. – hbulens Sep 29 '15 at 11:35
  • i already read it, and must admit found difficult to understand and impletment. however i tried and now getting this error. 'Error 3 'elearning._Default.ServerSpeechRecognitionProvider.RecognizeFromWav(string)': no suitable method found to override' – ultimateremedy Sep 30 '15 at 18:22
0

Another option is to use the browser's built in Speech recognition capabilities. Chrome, for example, has this which can turn any input field into a speech-aware input field.

Ian Mercer
  • 38,490
  • 8
  • 97
  • 133