The Microsoft Speech SDK for .NET is available (has been for a while actually). Here's how simple it is to use:
using SpeechLib; ... SpeechVoiceSpeakFlags SpFlags = SpeechVoiceSpeakFlags.SVSFlagsAsync; SpVoice Voice = new SpVoice(); Voice.Speak("This is Amiga speaking.", SpFlags);
You can get the Speech SDK on Microsoft's Speech site.
1:54:41 PM
|