Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Audio file to text file python

I want to convert an audio(ex: ".mp3") file to text file. I have tried different approaches like pyspeech and speech recognition, But i didn't get any answer. Is there any other way to do this..? Any help would be appreciated !

like image 363
Mulagala Avatar asked Sep 15 '15 13:09

Mulagala


1 Answers

Did you try https://pypi.python.org/pypi/SpeechRecognition/ ? That sounds like exactly what you want.

I also found the CMU Sphinx project via this blog. It has Python bindings too (as mentioned in the article).

The other item I found was Google's Speech to Text API. You might want to check that out too. Here's a decent tutorial on this subject:

  • http://codeabitwiser.com/2014/09/python-google-speech-api/
like image 158
Mike Driscoll Avatar answered Oct 04 '22 07:10

Mike Driscoll