Richard Franěk
Richard Franěk

Reputation: 11

can't change voice in speech synth

I can't change voice to male. It is always default, no matter what I try. Yet in my system, there ARE male voices.

I have tried:

synth.SelectVoiceByHints(VoiceGender.Male);
synth.SpeakAsync("Hello, my name is Evus.");

I have tried to select the gender of the voices.

How to install and use additional voices in SpeechSynthesizer()?

Upvotes: 1

Views: 855

Answers (1)

jarred elbert
jarred elbert

Reputation: 1

try to use

synth.SelectVoiceByHints(VoiceGender.Female); or synth.SelectVoiceByHints(VoiceGender.Male);

then just use synth.Speak("example"); I have had no issue switching at all

Upvotes: -1

Related Questions