How to use CMU Sphinx speech recognition with a Ruby application?

I am looking for how to use CMU Sphinx with a Ruby (Rails) application. I need a very simple task - I have an mp3 file, and I want it to be transcribed into text.

How can I implement this easiest way? I do not know C / C ++, and my task is not so great as to learn C / C ++ :)

Thanks for the help!

+7
source share
3 answers

CMUSphinx provides several interfaces that you can use to use speech recognition features. Some of them may be more suitable for you, and some less:

+10
source

I recently created a pearl for this:

https://github.com/watsonbox/pocketsphinx-ruby

It uses the Ruby External Function Interface (FFI) to interact directly with libpocketsphinx.

+3
source

Perhaps take a look at this Ruby-based web-based speech recognition service that uses PocketSphinx:

https://github.com/alumae/ruby-pocketsphinx-server

+1
source

All Articles