Is there a speech to text framework for iOS that supports Spanish out of the box? Commercial or OS is ok.
相关问题
- Can we recover audio from MFCC coefficients?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- How to embed Google Speech to Text API in Python p
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Xcode: Is there a way to change line spacing (UI L
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
I've written a client library for the Google Speech APIs. Works best with iOS and also supports other Unix-like systems:
Edit: try here: https://github.com/H2CO3/libsprec
There are a bunch of commercial IOS librariers for speech recognition. The names I keep hearing are Nuance, iSpeech, and Yapme. Each offers cloud speech recognition (off the device) and a client library and SDK to build into your app.
Nuance seems to support Spanish - http://blog.dragonmobileapps.com/2011/01/mobile-app-developer-dragon-mobile-sdk.html
and now Nuance gives developers free access - http://www.masshightech.com/stories/2011/09/26/daily13-Nuance-tweaks-mobile-dev-program-with-free-access-to-Dragon.html
iSpeech is likely to support Spanish - http://www.ispeech.org/developers/iphone
Yapme, sorry, I'm not sure - http://yapinc.com/speech-cloud.html
Take a look here: http://src.chromium.org/viewvc/chrome/trunk/src/content/browser/speech/
It's the Chrome Browser Speech to search...... you can do it in Objective-C. Try go google.com on chrome browser and if spanish is recognized, you win! :)
You can easily use:
Remember that you must recording a 16000 bitrate FLAC file! Or nothing!
Google responds with a json containing the words.
hope this helps.