speech_recognition icon indicating copy to clipboard operation
speech_recognition copied to clipboard

Speech recognition module for Python, supporting several engines and APIs, online and offline.

Results 206 speech_recognition issues
Sort by recently updated
recently updated
newest added

I'm trying to get the confidence score from the bing api. According to their documentation they added a new endpoint for that.

C:\Users\Admin\PycharmProjects\Javis.py>pip install SpeechRecognition Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: SpeechRecognition in c:\program files\python36\lib\site-packages (3.8.1) C:\Users\Admin\PycharmProjects\Javis.py>pip install pyttsx3 Defaulting to user installation because normal...

Steps to reproduce ------------------ 1. Everything started when trying out the installation of the package with ``` python -m speech_recognition ``` Then, execute the following commands: ``` sudo apt-get install...

I am trying to do speech recognition using google speech to text API in python ``` import speech_recognition as sr def takeCommand(file,lang): r = sr.Recognizer() harvard = sr.AudioFile(file) with harvard...

Steps to reproduce ------------------ 1. When I run script that works in one virtual environment in a newly created virtual environment, it does not work. 2. I actually even used...

Steps to reproduce ------------------ 1. (How do you make the issue happen? Does it happen every time you try it?) > It happens every time I am trying to use...

Im using Google Speech API The system shall work as the following: 1- When the user click "Start" button, the System shall start recording 2- When the user click "Stop"...

while installing pyaudio from pip the error i got was... ( error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools ) and to...

Steps to reproduce ------------------ 1. Every time I use sr.Microphone(). 2. import speech_recognition as sr r = sr.Recognizer() with sr.Microphone() as source: print("Speak Anything :") audio = r.listen(source) try: text...

Steps to reproduce ------------------ Any time I make a call to sr.Microphone() (after importing speech_recognition as sr), I get a list of error messages I'm specifically trying to use it...