views:

22

answers:

1

Hello,

Does anybody knows if it's possible to record a voice and transcribe it to text in real time?

I want to do that with silverlight or if it's not possible with the standard .Net framework

thanks for help

A: 

The solution consists of five steps:

  1. Entering text into a textbox.

  2. Calling a Web Service to process the text.

  3. Using Microsoft’s Text to Speech API to convert the text to WAV.

  4. Decoding the byte array with a WAV decoding class.

  5. Playing back the WAV stream with Silverlight’s MediaElement.

http://msdn.microsoft.com/en-us/windows/dd901770.aspx

Mike
Thanks, but what I want to do is the exact oposite. I want to get the text from a recorded voice !
Sam
if you have the voice recorded as a WAV, then you should only need to do step 4 and 5.
Mike
The OP wants Speech to Text not Text to Speech
Dan Auclair
ahhh.... sorry. That wasn't registering for some reason...
Mike