使用C#在自定义语音中说话的文本到语音

时间:2017-10-29 03:54:06

标签: c# text-to-speech

我想播放一个文本作为音频,例如在窗口应用程序中发言的文本。但我希望它像Jigsaw语音一样自定义语音。我正在使用c#.net framework 4.5,visual studio 2015.我怎样才能实现它? 这是我的代码,只有一个按钮发言

 if(richTextBox1.Text!="")
        {
            speechSynthesizerObj = new SpeechSynthesizer();
            //Asynchronously speaks the contents present in RichTextBox1
            speechSynthesizerObj.SelectVoiceByHints(VoiceGender.Male,VoiceAge.Senior);


            speechSynthesizerObj.SpeakAsync(richTextBox1.Text);

            btn_Pause.Enabled = true;
            btn_Stop.Enabled = true;

        }

0 个答案:

没有答案