I am building a web app for recording voice messages and am looking for the best options for converting the voice messages to text. Does anyone have some suggestions on what to use to make the conversion? Would System.Speech work?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

System.Speech is a client focused API. Vista and Windows 7 include the speech engines for System.Speech. You could use this for transcription because the client speech engines provided by Microsoft include a dictation grammar.

The server speech engines provided by Microsoft do not include a dictation grammar, so they are more difficult to use for transcription. The .NET namespace for server recognition is Microsoft.Speech and the complete SDK for the 10.2 version is available at http://www.microsoft.com/downloads/en/details.aspx?FamilyID=1b1604d3-4f66-4241-9a21-90a294a5c9a4. The speech engine is a free download.

To get started with .NET speech, there is a very good article that was published a few years ago at http://msdn.microsoft.com/en-us/magazine/cc163663.aspx. It is probably the best introductory article I’ve found so far. It is a little out of date, but very helfpul. (The AppendResultKeyValue method was dropped after the beta.)

Here is a quick sample that shows one of the simplest .NET windows forms app to use a dictation grammar that I could think of. This should work on Windows Vista or Windows 7. I created a form. Dropped a button on it and made the button big. Added a reference to System.Speech and the line:

using System.Speech.Recognition;

Then I added the following event handler to button1:

private void button1_Click(object sender, EventArgs e)
{         
    SpeechRecognitionEngine recognizer = new SpeechRecognitionEngine();
    Grammar dictationGrammar = new DictationGrammar();
    recognizer.LoadGrammar(dictationGrammar);
    try
    {
        button1.Text = "Speak Now";
        recognizer.SetInputToDefaultAudioDevice();
        RecognitionResult result = recognizer.Recognize();
        button1.Text = result.Text;
    }
    catch (InvalidOperationException exception)
    {
        button1.Text = String.Format("Could not recognize input from default aduio device. Is a microphone or sound card available?\r\n{0} - {1}.", exception.Source, exception.Message);
    }
    finally
    {
        recognizer.UnloadAllGrammars();
    }                          
}

A little more information comparing the various flavors of speech engines and APIs shipped by Microsoft can be found at What is the difference between System.Speech.Recognition and Microsoft.Speech.Recognition?

link|improve this answer
feedback

System.Speech requires NaturallySpeaking to recognize voicemail text, by default it's restricted to set of commands.

For voicemail transcription there is a good choice of cloud services which you can use, all you need to do is to upload the audio and get the transcription back.

link|improve this answer
1  
Why do you say System.Speech requires NaturallySpeaking? That is not true. System.Speech works on Windows Vista and Windows 7, Microsoft ships their client recognizer with both OSes. For XP or earlier, a separate install was required and Speech recognition shipped with MS Office for many desktop OS users. For Server, Microsoft ships Microsoft Speech Platform. The .NET namespace for server recognition is Microsoft.Speech and the SDK for the 10.2 version is at microsoft.com/downloads/en/…. Seech engine is a free download. – Michael Levy Jan 19 '11 at 15:11
Oh. Unless you meant that System.Speech does not include a dictation grammar. – Michael Levy Jan 19 '11 at 15:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.