7

The new iPhone 3GS has support for voice commands, stuff like "call Bill" or "play music by the strokes" and whatnot.

I was looking through the iPhone SDK, but I cannot find any references to this capability. All of the search keywords I choose seem to only find the new voice chat functionality.

Does anyone know whether Apple has added voice command APIs to the SDK, or whether it's yet another forbidden API? If it does exist, could someone point a particular class out to me?

Brandon Yarbrough
  • 37,021
  • 23
  • 116
  • 145
  • 1
    What is the voice chat capability? Is there an API hook for TTS? I've been looking for that. – Xcoder Jul 13 '09 at 19:28
  • 2
    Apparently there's not (other than the accessibility stuff). The voice chat stuff is new. It's specifically for allowing two iPhone users to speak with each other over a data stream. It's designed for use in games. – Brandon Yarbrough Jul 13 '09 at 20:58

3 Answers3

16

OpenEars is a really nice Objective-C API for CMU Sphinx. Worth checking out if you want to incorporate CMU Sphinx in your app.

Simon Whitaker
  • 20,506
  • 4
  • 62
  • 79
5

The SDK does not support either voice recognition or text to speech. Voice recognition is only available through the Voice control app, and text to speech is only available through the accessibility APIs when accessibility is turned on.

Louis Gerbarg
  • 43,356
  • 8
  • 80
  • 90
4

One could try to bundle poketsphinx speech recognition library from the CMU Sphinx project. It is a open source large vocabulary, speaker-independent continuous speech recognition engine. Chech the README to see how to set up in XCode.

clyfe
  • 23,695
  • 8
  • 85
  • 109