windows phone 8 TTS - 如何将语音保存到wav文件

时间:2013-02-28 04:28:59

标签: windows-phone-8 text-to-speech wavelet

使用Windows Phone 8 TTS API,无论如何都要记录/保存来自TTS SpeechSynthesizer的语音输出?

1 个答案:

答案 0 :(得分:0)

你可以看看here

类似

SpeechSynthesizer synth = new SpeechSynthesizer();
synth.SetOutputToWaveFile(@"C:\Test\Sample.wav");
synth.SpeakAsync("hello world");