0
votes
4answers
31 views
C# SAPI in a web service
var speechEngine = new SpVoiceClass();
SetVoice(speechEngine, job.Voice);
var fileMode = SpeechStreamFileMode.SSFMCreateForWrite;
var fileStream = new SpFileStream();
try
{
fi …
0
votes
1answer
14 views
Connecting to Naturally Speaking through SAPI 4 interface, possible?
I read somewhere that you can interface to Naturally Speaking through the SAPI 4 interface it exports? Is this true and is there any documentation? Thanks
0
votes
1answer
22 views
SAPI access from WCF app
is it possible to access SAPI from a WCF app ?
0
votes
1answer
47 views
How to access SAPI 4 voices from .net framework 3.5
I’m trying to use a SAPI 4 engine (L&H TTS 3000) from .net 3.5 using System.Speech.Synthesis in windows XP.
The problem is than I can only get SAPI 5.1 engines when I call Ge …
2
votes
1answer
49 views
How to convert Text to Wave using SAPI with multithreading?
I am trying to convert text to wave file using following function. It works fine if called from main UI thread. But it fails when calling from another thread. How to call it from a …
6
votes
4answers
372 views
Voice Recognition in C++
I'm looking for a way to implement trainable voice recognition in C++.
I've found the SAPI 5.3 SDK which looks promising, but the only tutorials that I can find are for TTS which …
1
vote
1answer
85 views
Microphone plug in event/ Mic attach event Vista
I want to be notified when a microphone jack is plugged in. What is the event fired by the OS(particularly Vista)
The audio panel shows no recording device active if no mic plugged …
1
vote
1answer
45 views
Mapping ISpMMSysAudio::SetLineId and mixerLineId
I want to set the lineId for SAPI by calling ISpMMSysAudio::SetLineId.
I find out the line which I wish to set from the mixer handle I have.
However the line id I get from the mixe …
0
votes
3answers
190 views
How to use WndProc from a C++ dll?
I want to handle some SAPI messages from a DLL, which is some sort of plugin. How to handle messages/events inside a VC++ dll. The SAPI event handling is shown in the example at:
h …
0
votes
1answer
70 views
Loading multiple grammar files in SAPI 5.1
I'm using an XML grammar file to develop a Command and Control application. Since there are around 4000 entries in the grammar I can't have it all in one file (it gives an error wh …
1
vote
1answer
24 views
How to get the correction commands while doing free dictation with sapi 5.3?
I have an sample application that do basic dictation with sapi 5.3.
It works well to input text with punctuation...
What would I need to do to enable the correction functionality a …
1
vote
3answers
348 views
How to save text-to-speech as a wav with Microsoft SAPI?
Hi,
I think what I am about to want might be easy for you,so I decided to ask it to you,
Fist I need to turn a text into speech and then save it as wav file.
Could you help me ? …
0
votes
1answer
103 views
SAPI SelectVoice(…) throwing ArgumentException
hey y'all, so I've got the user selecting from a list of "valid voices" for their speech synthesis. I'm pulling the list using GetInstalledVoices() and that results in around 5 or …
0
votes
3answers
556 views
How to use text-to-speech using ActionScript or Air?
Hi folks,
I want to use SAPI Text-To-Speech engine from my ActionScript or Air application. is this possible ? what are the other alternatives ?
0
votes
1answer
88 views
How to detect when SAPI TTS engine is busy
The SAPI engine can only render TTS from one application at a time (I have run a test with two instances of the Windows SDK TTSApplication sample to verify this). I am writing an a …
