23

我想System.Speech在 c# 中更改声音的性别和年龄。例如,一个10岁的女孩,但找不到任何简单的例子来帮助我调整参数。

4

5 回答 5

24

GetInstalledVoices首先,通过枚举类的方法检查你安装了哪些声音SpeechSynthesizer,然后使用SelectVoiceByHints选择其中一个:

using (SpeechSynthesizer synthesizer = new SpeechSynthesizer())
{
    // show installed voices
    foreach (var v in synthesizer.GetInstalledVoices().Select(v => v.VoiceInfo))
    {
        Console.WriteLine("Name:{0}, Gender:{1}, Age:{2}",
          v.Description, v.Gender, v.Age);
    }

    // select male senior (if it exists)
    synthesizer.SelectVoiceByHints(VoiceGender.Male, VoiceAge.Senior);

    // select audio device
    synthesizer.SetOutputToDefaultAudioDevice();

    // build and speak a prompt
    PromptBuilder builder = new PromptBuilder();
    builder.AppendText("Found this on Stack Overflow.");
    synthesizer.Speak(builder);
}
于 2012-06-04T12:50:14.477 回答
4

首先,您需要使用添加参考来初始化参考语音。

然后为发言开始创建一个事件处理程序,然后您可以编辑该处理程序中的参数。

在处理程序中,您可以使用

synthesizer.SelectVoiceByHints(VoiceGender.Male , VoiceAge.Adult);
于 2015-03-16T10:12:25.153 回答
1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Speech.Synthesis; // first import this package

    namespace textToSpeech
    {
        public partial class home : Form
        {
            public string s = "pran"; // storing string (pran) to s

            private void home_Load(object sender, EventArgs e)
                {
                    speech(s); // calling the function with a string argument
                }

            private void speech(string args) // defining the function which will accept a string parameter
                {
                    SpeechSynthesizer synthesizer = new SpeechSynthesizer();
                    synthesizer.SelectVoiceByHints(VoiceGender.Male , VoiceAge.Adult); // to change VoiceGender and VoiceAge check out those links below
                    synthesizer.Volume = 100;  // (0 - 100)
                    synthesizer.Rate = 0;     // (-10 - 10)
                    // Synchronous
                    synthesizer.Speak("Now I'm speaking, no other function'll work");
                    // Asynchronous
                    synthesizer.SpeakAsync("Welcome" + args); // here args = pran
                }       
         }
    }
  • 使用“SpeakAsync”会是更好的选择,因为当“Speak”函数正在执行/运行时,其他任何函数都不会工作,直到它完成它的工作(个人推荐)

改变 VoiceGender
改变 VoiceAge

于 2015-02-17T15:15:41.247 回答
0

这些年龄和性别实际上是没有用的。如果您的 windows 中安装了许多声音,那么您可以通过这些参数调用特定的声音。否则,简直就是假的!

于 2014-10-26T21:32:33.067 回答