how to make a speech recognition program such that whatever the user speaks must get written in a text pad instantly?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how to make a speech recognition program such that whatever the user speaks must get written in a text pad instantly??

the code must be for 2.7 & not 3

5th Jul 2016, 3:47 PM
Dibyendu Das
Dibyendu Das - avatar
3 Answers
0
Assuming you dont want to make from scratch, there are speech recognition APIs and the python module Speech Recognition. https://pypi.python.org/pypi/SpeechRecognition/ The page also has links to speech recognition APIs you can also use.
5th Jul 2016, 6:38 PM
Gershon Fosu
Gershon Fosu - avatar
0
but it works only when connected to internet I wanted some module which works offline, moreover I want to apply it such that it gets written on textpad instantly, and not get printed on the idle window of python
6th Jul 2016, 7:49 AM
Dibyendu Das
Dibyendu Das - avatar
0
CMUSphinx works offline. It says so on the page. Pocket sphinx is included in the installation. So you don't need to worry about using APIs if you want offline use. Just go through the examples and library references and learn how to use it.
6th Jul 2016, 8:46 AM
Gershon Fosu
Gershon Fosu - avatar