I am developing a project where TTS is used.
Microsoft Anna can be used without any problem.
But the other installed voices cannot be used. It shows error.
“Cannot set voice. No matching voice is installed or the voice was disabled.”
As I test the voice from Control Panel, I find that only Microsoft Anna and Sample TTS Voice are working.
But in my project Sample TTS Voice is also not working.
VoiceGender.Female is only working. VoiceAge.[…] does not work at all.
//voice.SelectVoice(“Microsoft Mike”);
voice.SelectVoiceByHints(VoiceGender.Female,VoiceAge.Teen);
voice.SetOutputToDefaultAudioDevice();
voice.Volume = 100;
voice.Rate = -10;
voice.SpeakAsync(voiceText);
The O/S is Windows 7 32 bit.
.NET 4.0 is the development framework.
How can I change Voice?
Any help is appreciated.
Thanks