A very simple Speech Recognition Program Written in python Using The SpeechRecognition Library
This program Uses the SpeechRecognition Library To recognize Your Speech. It can Work in Both with And Without Internet When You have Intrnet The Program Connects To The server And Uses Google's Engine Which Uses ML & AI on these Servers To Recognize Your Speech. When There is No internet It uses Pre-trained Neural Networks And Recognizes Your Speech Locally On your Machine With Pocket-shpinxFirst You'll need the Following Requiremnts
- Python 3.6.8 Or later
- The SpeechRecognition Library
To Install It On Windows Open A cmd window And type
pip install SpeechRecognition
On linux You might Have 2 Versions of Python installed So you'd Type
pip3 install SpeechRecognition
Now we Need To install another package Called PyAudio
pip install PyAudio
On linux you might type
pip3 install PyAudio
And That's it You can Now Run The Application.