Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are some good resources on doing text-to-speech in .NET?

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

like image 987
Satish Avatar asked Feb 16 '09 06:02

Satish


1 Answers

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); 
like image 112
amazedsaint Avatar answered Sep 22 '22 16:09

amazedsaint