Click here to Skip to main content
Licence CPOL
First Posted 3 Jun 2011
Views 11,012
Downloads 4,177
Bookmarked 50 times

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

By | 5 Jun 2011 | Article
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:

// 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:

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:

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)

About the Author

Massimo Conti

Software Developer

Italy Italy

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberSergio Andrés Gutiérrez Rojas15:19 17 Jan '12  
GeneralGreat article! PinmemberEricSmekens1:05 18 Oct '11  
GeneralRe: Great article! PinmemberMassimo Conti8:18 18 Oct '11  
GeneralMy vote of 4 PinmemberYvan Rodrigues4:06 7 Jun '11  
GeneralRe: My vote of 4 [modified] PinmemberMassimo Conti10:25 7 Jun '11  
QuestionWhat about Mono? PinmemberRiz Thon16:54 6 Jun '11  
AnswerRe: What about Mono? PinmemberMassimo Conti10:14 7 Jun '11  
AnswerRe: What about Mono? PinmemberMassimo Conti11:59 7 Jun '11  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 5 Jun 2011
Article Copyright 2011 by Massimo Conti
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid