vote up 6 vote down star
4

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 is the opposite of what I want.

Can anyone recommend a good tutorial that covers everything I would need to get SAPI up and running?

Either that or is there a second API I could use as opposed to SAPI? The only requirement is that is has to be distributable in a way that it could be installed on other windows computers.

Thanks.

flag

The reason you see lots of tutorials for TTS is because its mind-blowingly easy to do in SAPI. Voice recognition is harder, because it assumes you know how to compose a grammar and have some basic knowledge of linguistics, and that you query the engine in a certain way. – sheepsimulator Jul 7 at 22:05
If your'e going to approach this subject and your not familiar with linguistics, I recommend spending a bit of time with an Introduction to Linguistics book or similar. One that I used in school with my old CS prof (a linguist who is working on TTS and VR) was amazon.com/Introduction-Language-Victoria-Fromkin/… – sheepsimulator Jul 7 at 22:15
A NLP book would serve him better, I think. Speech and Language Processing by Daniel Jurafsky and James H. Martin is a great book. cs.colorado.edu/~martin/slp.html – anno Jul 7 at 22:30

4 Answers

vote up 3 vote down check

This may be helpful.

http://www.generation5.org/content/2001/sr00.asp?Print=1

(caveat: I've never used SAPI for recognition.)

link|flag
+1, that tutorial did provide a bit of help for me. – sheepsimulator Jul 7 at 22:11
vote up 2 vote down

There's this very old (Microsoft Visual C++ 4.1) text MAPI, SAPI, and TAPI Developer's Guide. Chapter 19 is Creating SAPI Applications with C++.

The speech's team blog. And the All the Cool Developers use Speech APIs blog

Itamar Even-Zohar’s Page on Speech Recognition is a must.

For open and/or portable solution, look at this wikipedia article and CMU Sphinx. Though, Sphinx-4 is now in Java.

And you sure look there... MSDN : Microsoft Speech API (SAPI) 5.3

link|flag
vote up 0 vote down

If I recall, Microsoft had some really good SAPI examples that came with the development kit (SAPI 5 SDK), especially for the new .NET framework stuff. Basically, to do voice recognition, they give you two different ways of doing it: natural and scripted. I played around with it a bit in VB.NET, and got it to recognize some words based upon the BNF grammar I passed to the scripted engine. I know it also comes with a trainer to aid in recognition of a given speaker. The SDK was pretty clear to me, at least.

Microsoft's SAPI 5.3 documentation

Microsoft's SAPI 5 SDK download - contains examples in many different languages.

NB: Especially check out the help file that comes with; it describes what is necessary to get the engine working, and what files/apps you need installed. The writing in the SDK, IIRC, was rather clear and somewhat Petzold-esque in tone, so if you persist a bit and study the examples, I suspect you can get this working in a reasonable amount of time.

link|flag
vote up 0 vote down

I work with SAPI and it's possible to make to make a ASR (Automatic Speech Recognition, or Speech to Text if you want) system :)

For that, and using the source code provided here you simply have to add (to the code given) something like this:

hr = cpRecoCtx->CreateGrammar(1, &cpGram2);
hr = cpGram2->LoadDictation(NULL, SPLO_DYNAMIC);
cpGram2->SetDictationState(SPRS_ACTIVE);

This will create a grammar that will Load a Dictation (it recognizes everything you say but it's not very accurate). If you know what the words that you want to recognize are, you can see thorught the video that they make a grammar file. This file contains all the words that they want to recognize (it's better with a grammar that with the simple dictation).

For this, they have in the code something like this:

hr = cpRecoCtx->CreateGrammar(1, &cpGram);
hr = cpGram->LoadCmdFromFile(argv[1], SPLO_STATIC);
hr = cpGram->SetRuleState(0, 0, SPRS_ACTIVE);

You can use both if you want, good luck! ;d

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.