web-dev-qa-db-ja.com

C#でボイスシンセサイザーの性別と年齢を変更するにはどうすればよいですか?

C#のSystem.Speechの声の性別と年齢を変更したいと思います。たとえば、10歳の少女ですが、パラメータの調整に役立つ簡単な例を見つけることができません。

20
Pablo Gonzalez

まず、 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);
}
21
Groo

最初に、参照の追加を使用して参照音声を初期化する必要があります。

次に、発言を開始するためのイベントハンドラーを作成し、そのハンドラー内のパラメーターを編集できます。

ハンドラーでは、を使用して音声と年齢を変更できます

synthesizer.SelectVoiceByHints(VoiceGender.Male , VoiceAge.Adult);
3
Draxy07
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」を使用するほうが適切です

VoiceGenderの変更
VoiceAgeの変更

1
Pran

これらの年齢と性別は実際には役に立たない。ウィンドウに多くのボイスがインストールされている場合、これらのパラメーターによって特定のボイスを呼び出すことができます。それ以外の場合は、単に偽物です!

0
Razib Ali