使用Windows Phone 8 TTS API,是否仍然可以记录/保存来自tts SpeechSynthesizer的语音输出?

最佳答案

您可以看一下here

所以像

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

09-13 04:57