Click here to Skip to main content
15,867,686 members
Articles / Programming Languages / C#

My PC Can Speak and Understand 26 Languages. And Yours?

Rate me:
Please Sign up or sign in to vote.
4.60/5 (15 votes)
5 Jun 2011CPOL1 min read 66.1K   9.3K   84   13
TTS and SR with Microsoft Server Speech Platform 10.2 for 26 languages
TTS_and_SR_screenshot.jpg

Introduction

If you are interested in computer text to speech (TTS) and speech recognition (SR), this little article is for you. In order to make the PC capable of speech and speech recognition, we need to install the Microsoft Server Speech Platform 10.2, its SDK and the Runtime Languages for TTS and SR you wish. Here are the links:

NOTE: The Microsoft .NET Framework 3.5 is required to run the Microsoft Speech Platform. Starting from version 10.2 of the latter, the minimum OS required is Windows Vista. If you still have Windows XP, you can try to download an older version, may be 10.1.

After that, we need to create a Windows Form application and add the following reference to the project:

Assembly Microsoft.Speech
C:\Program Files\Microsoft Speech Platform SDK\Assembly\Microsoft.Speech.dll

Using the Code

Here is the code to enumerate the installed TTS voices:

C#
// Create the TTS object and setup to fire the event 'SpeakCompleted'
SpeechSynthesizer _tts = new SpeechSynthesizer();

// Enumerate the installed Microsoft Server Speech TTS Voices
foreach (InstalledVoice voice in _tts.GetInstalledVoices())
{                  
    listBox1.Items.Add(voice.VoiceInfo.Name);
}  

Here is the code to speech text:

C#
SoundPlayer _player = new SoundPlayer();

public void Speak(string text)
{
    _player.Stream = new System.IO.MemoryStream();
        
    _tts.SetOutputToWaveStream(_player.Stream);
        
    _tts.SpeakAsync(text);
}

Here is the code to setup the speech recognition engine:

C#
SpeechRecognitionEngine _sre = null;

// Create a simple grammar that recognizes the words
Choices words = new Choices();

// Add the words to be recognised
words.Add("red");
words.Add("green");
words.Add("blue");
words.Add("yellow");
words.Add("orange");

GrammarBuilder gb = new GrammarBuilder();
gb.Culture = new System.Globalization.CultureInfo(strCulture);
gb.Append(words);

// Create the actual Grammar instance, and then load it into the speech recognizer.
Grammar g = new Grammar(gb);
_sre.LoadGrammar(g);

// Register a handler for the SpeechRecognized event.
_sre.SpeechRecognized += 
	new EventHandler<SpeechRecognizedEventArgs>(sre_SpeechRecognized);
_sre.SetInputToDefaultAudioDevice();
_sre.RecognizeAsync(RecognizeMode.Multiple);

// Simple handler for the SpeechRecognized event.
void sre_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
{
    // Add to the listbox the recognised speech
    listBoxRecognisedWords.Items.Add(e.Result.Text);
}

Conclusion

Computer speech and speech recognition are interesting subjects. Nowadays, we can start interacting with the PC using voice. I remember the telefilms Start Trek and Knight Rider. There they could talk with the computer using the voice. These days, they are getting closer, but they are still far away. By the way, if the computer voice doesn't work well, ask Mr. Spock to fix it :-) 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralGreat article! Pin
EricSmekens18-Oct-11 1:05
EricSmekens18-Oct-11 1:05 
GeneralRe: Great article! Pin
Massimo Conti18-Oct-11 8:18
Massimo Conti18-Oct-11 8:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.