具体怎么调用,我还没弄清楚。
VM Paul是引擎的名字,用下面的代码可以调用。我用VS2010做的。
using System;
using System.Collections.Generic;
using System.Speech.Synthesis;
namespace Speach
{
class Program
{
static void Main(string[] args)
{
SpeechSynthesizer synth = new SpeechSynthesizer();
synth.Rate = 0;
synth.Volume = 100;
synth.SelectVoice("VW Paul");
// synth.SelectVoiceByHints(VoiceGender.Female, VoiceAge.Adult);
synth.Speak("It is an essential principle that we must combine theory with practice");
synth.Dispose();
}
}
}
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有