Can anybody help me with Text to Speech Engine in C#
Asked
Active
Viewed 496 times
1 Answers
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