Voice Recognition in Python -
i'm working on virtual assistant program in python 3.3, , i'd incorporate voice recognition in it. know of python modules or tools with? appreciated!
i've spent lot of time working on subject.
currently i'm developing python 3 open-source cross-platform virtual assistant program called athena voice: https://github.com/athena-voice/athena-voice-client
users can use siri, cortana, or amazon echo.
it uses simple "module" system users can write own modules enhance it's functionality. let me know if of use.
otherwise, recommend looking google's python speech-to-text , text-to-speech packages.
both packages can installed using command:
pip install speechrecognition gtts
google stt: https://pypi.python.org/pypi/speechrecognition/
google tts: https://pypi.python.org/pypi/gtts/1.0.2
i believe stt has pyaudio dependency can found here (unofficial): http://www.lfd.uci.edu/~gohlke/pythonlibs/#pyaudio
however, if intend passive/offline listening, highly recommend reconsidering pocketsphinx. on python 3.4 can installed typing "pip install pocketsphinx"
Comments
Post a Comment