我想在程序中更改声音的音高和偏移,因此我可以得到很多不同的自定义(针对声音)。 我已经做了音量,SpeechSynthesizer有一个Volume变量。
我的代码:
//I have a gender selection system here, but its ugly
aPrompt.ClearContent();
aPrompt.AppendText(text);
aPrompt.Culture = CultureInfo.GetCultureInfo(selected.aCulture);
sS.Volume = selected.Volume;
sS.Speak(aPrompt);
我有3个滑杆,我想映射到“音量”,“音高”和“偏移”(我可以使它获得值,但是我不知道如何改变声音)