|
|
Browse by Tags
All Tags » C# (RSS)
Showing page 1 of 2 (17 total posts)
-
Hi,
I was attempting to get sapi to guess the spelling of something I say, here is my code:
private void Form1_Load(object sender, EventArgs e)
{
//Innitialize the SR engine
SpeechRecognitionEngine ...
-
I got this error ''attempted to read or write protected memory'' when i use SpFileStream to open a audio file
i'm using window 2003 standard with .net 1.1, 2.0, 3.0, 3.5 and sapi 5.1
any got experience on this or got any solution to solve this?
-
Hi,
Below is my Srgs file. I would like to use the phrases: ''CanCom Listen'', CanCom Sleep'', ''Activate All'', ''Activate Lights''....
When I speak these commands every thing works as expected. However, if I say ''Activate Goofey'', my detected string is ''Activate All''.
How can I prevent my application from responding to an invalid ...
-
I have written code that captures the microphone input of my PC, performs FFT and applies various filters, and then recreates the filtered audio on the PC speakers. Now I want to send that filtered audio to the SpeechRecognitionEngine.
The SpeechRecognitionEngine has a method to set its input to an audiostream or to a wavstream ...
-
Hello Folks,
I'm using SAPI 5.1 w. VS 2005 (C#, .NET 2.0).
Similar to a couple of other posts on here, I've had difficulty finding explanations/examples of a basic Speech Recognition
Grammar File. I'm looking for file format details and methods for referencing the Grammar in C#. What I'm hoping to do: Add a list of relatively long ...
-
Here's a code from the C# Windows Form
SpeechSynthesizer audio = new SpeechSynthesizer();
audio.Speak(textBox1.Text);
- This will read anything that is in the textbox
public void button1_Click(object sender, EventArgs e) { //Nothing gets executed here when the code is reading }i just read ...
-
Hi all,
I am trying to perform acoustic training from a wav file using SAPI 5.3. I am able to load the wav file and have it recognized and transcribed by the Speech Runtime.
Now my problem is that I want to supply a string to the engine using the ISpTranscript interface described in the SAPI 5.3 documentation. However, when I search for it (in ...
-
Hello
Ok.. so I have a speech recognition App, and I always do this to reference my default device, it is the one chosen in Control Panel under Speech menu.
Is there a way of not choosing this one, but another?
Because i have a soundcard from the computer, and an exterior USB soundcard.. and I want to use the USB one always even if on ...
-
hello everyone,
I create a grammar as following:
<GRAMMAR LANGID=''409''><RULE NAME=''TEST'' TOPLEVEL=''ACTIVE'' DYNAMIC=''TRUE''> <L PROPNAME=''QC''> <P VALSTR=''query''>I Want to query</P> </L> <L PROPNAME=''PS''> <P ...
-
hello,
when I learn the speechsdk grammers ,I don't how does the programm works when i add the grammer dynamic.for example:
there is a programmatic code:
SPSTATEHANDLE hsSendMail;
// Create new top-level rule called ''SendMail''
hr = cpRecoGrammar->GetRule(L''SendMail'', NULL, ...
1
|
|
|