I am using this Text-to-Speech Plugin: https://github.com/jamesmontemagno/TextToSpeechPlugin (Xam.Plugins.TextToSpeech)
The Speech output here is only female, even if I tweak it, the output will sound awful
Female: await CrossTextToSpeech.Current.Speak(Text, speakRate: (float)0.9, pitch: (float)1.1f);
Tweaked(for male): await CrossTextToSpeech.Current.Speak(Text, speakRate: (float)0.9, pitch: (float)0.3f, volume: (float)1.5, crossLocale: null);
I don't know what values to tweak here to produce a male voice, except for the pitch and speak rate, did anyone already found a solution for this?