I am using Microsoft.Speech SDK (11.0) for converting text to speech. I have a windows forms application and I am using a very basic code to speak the entered text, but it is getting failed. Here is my code on the click of the button: SpeechSynthesizer syn = new SpeechSynthesizer(); [...] read more
I have create a application for text to speech using Speechlib SpVoice. it is working fine with windows application. But when i Create windows service using same code . It give me this error > System.Runtime.InteropServices.COMException (0x8004503A): Exception from > HRESULT: 0x8004503A at SpeechLib.ISpeechVoice.Speak this is my code public partial [...] read more
Windows 10. I've installed the Japanese TTS voices in the Settings. Now, when I use voice enumeration in Speech API 5.4 OneCore (not in 5.4 proper though), I get 6 voices: * David * Zira * Ayumi * Haruka * Mark * Ichiro The Speech settings page also shows those [...] read more
I am using asp text to speech. it is working on my computer bu when I upload its to server it gives me following error.. I searched on internet. People suggest Defaultapppoll>>Properties>>Identity>>Predefine>>Local System And Restart IIS I did it but still not working... help please.. my local pc and my [...] read more
I have started a new Console application in .net framework renamed it as ConsoleSpeechProgram and executed but it is showing me > Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Speech.dll Below link I am using for Speech to Text using Microsoft.Speech https://msdn.microsoft.com/en-us/magazine/dn857362.aspx?f=255&MSPPError=-2147217396 using System; using Microsoft.Speech.Recognition; using Microsoft.Speech.Synthesis; using System.Globalization; namespace ConsoleSpeech { [...] read more
I am using Visual Studio Express 2013 for desktop and facing an issue for Text-To-Speech conversion in female voice. To do that I have used ISpObjectTokenCategory::EnumTokens. I am using hr = pObjectTokenCategory->SetId(SPCAT_VOICES, false) to do so. But the hr fails with the value 0x8004503a. If I use other Token Category [...] read more