5

Can anybody help me with Text to Speech Engine in C#

mmcdole
  • 91,488
  • 60
  • 186
  • 222
Satish
  • 81
  • 2
  • 9

1 Answers1

7

Microsoft Speech SDK

http://msdn.microsoft.com/en-us/library/aa920210.aspx

Just for simple t2s, it should be very simple, like

SpVoice objSpeech = new SpVoice();
objSpeech.Speak("Hello world",SpeechVoiceSpeakFlags.SVSFlagsAsync);
objSpeech.WaitUntilDone(Timeout.Infinite); 
amazedsaint
  • 7,642
  • 7
  • 54
  • 83
  • How can I add my own? I am trying to create a TTS app for greek and I am trying to create a Lexicon and I need some guidelines. Here is my question http://stackoverflow.com/questions/13102319/i-need-help-creating-a-lexicon-for-speechsynthesizer-a-template-of-some-kind-so – John Demetriou Nov 16 '12 at 09:22