4

With windows phone 8 TTS API, is there anyway to record/save the speech output from tts SpeechSynthesizer?

Kara
  • 6,115
  • 16
  • 50
  • 57
peanut
  • 1,406
  • 3
  • 14
  • 21

1 Answers1

0

You could have a look here

So something like

SpeechSynthesizer synth = new SpeechSynthesizer();
synth.SetOutputToWaveFile(@"C:\Test\Sample.wav");
synth.SpeakAsync("hello world");
H77
  • 5,859
  • 2
  • 26
  • 39