4

使用 windows phone 8 TTS API,是否可以记录/保存 tts SpeechSynthesizer 的语音输出?

4

1 回答 1

0

你可以看看这里

所以像

SpeechSynthesizer synth = new SpeechSynthesizer();
synth.SetOutputToWaveFile(@"C:\Test\Sample.wav");
synth.SpeakAsync("hello world");
于 2015-04-21T04:13:53.220 回答