Hallo to all
I'm using visual studio 2010 c# on windows 7
In a program i use SpeechLib (located in C:\Windows\Syst em32\Speech\Com mon\sapi.dll) with
The voice was ok until i added System.Speech.S ynthesis (located in C:\Program Files\Reference Assemblies\Micr osoft\Framework \v3.0\System.Sp eech.dll) with
Even after i removed the second reference the voice has pretty worse quality
Is there anything i can do to fix it ?
Thanks in advance
I'm using visual studio 2010 c# on windows 7
In a program i use SpeechLib (located in C:\Windows\Syst em32\Speech\Com mon\sapi.dll) with
Code:
SpVoice voice = new SpVoice();
voice.Speak("Hallo", SpeechVoiceSpeakFlags.SVSFDefault);
Code:
public SpeechSynthesizer _speaker = new SpeechSynthesizer(); _speaker.SpeakAsync(speechstring);
Is there anything i can do to fix it ?
Thanks in advance