Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 1.02 KB

README.md

File metadata and controls

33 lines (28 loc) · 1.02 KB

SimplePythonSpeechRecognition

A very simple Speech Recognition Program Written in python Using The SpeechRecognition Library

How It Works!

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-shpinx

Setup

First You'll need the Following Requiremnts

  1. Python 3.6.8 Or later
  2. 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.