I create through C # Microsoft.Speech.Synthesis;

SpeechSynthesizer ss = new SpeechSynthesizer(); ss.SetOutputToDefaultAudioDevice ss.Speak("hello"); 

And gives an error

System.IO.FileNotFoundException: "Exception from HRESULT: 0x8004503A"

I took an example from Write a speech synthesis

  • ss.SetOutputToDefaultAudioDevice (); ? - TEA
  • Most likely you have not installed the Speech Platform Runtim / Speech Platform SDK . - EvgeniyZ
  • maybe it makes sense to ask the question in that topic, where did the example come from? - Anatol

0