vote up 1 vote down star

Hi Gurus,

I have a program that receives an audio (mono) stream of bits from tcp/ip. I am wondering if the speech(speech-recognition) api in mac osx would be able to do a speech-to-text transform for me. (I don't mind saving the audio into .wav first and read it as oppose to do the transform on the fly)

I have read the official docs online, it is a bit confusing. And I couldn't find any good example around that topic.

And, should I do it in cocoa/carbon/java or objective-c?

Can someone please shed some light

Thanks

flag

67% accept rate

3 Answers

vote up 1 vote down check

There's a number of examples that get copied under /Developer/Examples/Speech/Recognition when you install XCode.

Cocoa class for speech recognition is NSSpeechRecognizer. I've not used it but as far as I know speech recognition requires you to build a grammar to help the engine choose from a number of choices rather then allowing you to pass free-form input. This is all explained in the examples referred above.

link|flag
vote up 2 vote down

This comes a bit late perhaps, but I'll chime in anyway.

The speech recognition facilities in OSX (on both the Carbon and Cocoa side of things) are for speech command recognition, which means that they will recognize words (or phrases, commands) that have been loaded into the speech system language model. I've done some stuff with small dictionaries and works pretty well, but if you want to recognize arbitrary speech things may turn hairier.

Something else to keep in mind is that the functionality that the speech APIs in OS X provide is not one to one. The Carbon stuff provides functionality that has not made it to NSSpeechRecognizer (the docs make some mention of this).

I don't know about Cocoa, but the Carbon Speech Recognition Manager does allow you to specify inputs other than a microphone so a sound stream would work just fine.

link|flag
vote up 0 vote down

Here's a good O'Reilly article to get you started.

link|flag
Thanks Charlie, Do you have some code example? – Roy Chan May 7 at 23:50

Your Answer

Get an OpenID
or

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