Monday 25 February 2013

Text To Speech using C#.Net


using System.Speech.Synthesis;
    
      SpeechSynthesizer ss = new SpeechSynthesizer();
      ss.Volume = 100;
      ss.Speak("My Name is khan. And I am not a terrorist.");

No comments:

Post a Comment