Buyin Brian
Buyin Brian

Reputation: 2991

Speech recognition from recorded file

I've been researching several iOS speech recognition frameworks and have found it hard to accomplish something I would think is pretty straightforward.

I have an app that allows people to record their voices. After a recording is made, they have the option to create a text version.

Looking into the services out there (i.e., Nuance) most require you to use the microphone. OpenEars allows you to do this, but the dictionary is so limited because it is an offline solution (they recommend 300 or less words).

There are a few other things going on with the app that would make it very unappealing to switch from the current recording method. For what it is worth, I am using the Amazing Audio Engine framework.

Anyone have any other suggestions for frameworks. Or is there a way to dig deeper with Nuance to transcribe a recorded file?

Thank you for your time.

Upvotes: 1

Views: 462

Answers (1)

Ben Jiang
Ben Jiang

Reputation: 105

For services, there are a few cloud based hosted speech recognition services you can use. You simply post the audio file to their URL and receive back the text. Most of them don't have any constraint on the vocabulary. You can of course choose any recording method you like.

See here: Server-side Voice Recognition . Many of them offer free trial as well.

Upvotes: 1

Related Questions