语音合成1、使用语音合成 SpeechSynthesizer synth = new SpeechSynthesizer(); //获取本机上所安装的所有的Voice的名称 string voicestring = ""; foreach (InstalledVoice iv in synth.GetInstalledVoices()) { voicestring += iv.VoiceInfo.... Read More
posted @ 2009-06-08 09:46 虚空境界 Views(3186) Comments(4) Diggs(0)