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

Steps to reproduce ------------------ 1. (How do you make the issue happen? Does it happen every time you try it?) Keep the current environment quiet and continue to print the...

Hi, I am trying out the below code: ``` import speech_recognition as sr # Obtain audio from the microphone r = sr.Recognizer() with sr.Microphone() as source: print("Speak now!") audio =...

Hello, I added/changed two parameters in the recognize_vosk function, which i believe to be useful. Firstly, I added a model parameter to allow to select a model based on a...

Microphones such as the ReSpeaker Array v2 contain multiple channels. Since speech_recognition does not provide support for multiple channels in its Microphone class, I added the support for it.

o codigo estava funcionando normalmente. ate que derrepende uma funcao parou de me retornar with sr.Microphone() as source: print('ouvindo') >>>>>>>>> voz = audio.listen(source) >> voz = audio.listen(source)

Steps to reproduce ------------------ 1. Install latest SpeechRecognition (from PyPI or github) 2. Run the 'microphone_recognition.py' example (taken from examples dir on github) Expected behaviour ------------------ I expected the sample...

Steps to reproduce ------------------ Expected behaviour ------------------ I am trying to build a voice activated control system that would be integrated with Arduino Actual behaviour ---------------- #This is my code;...

Steps to reproduce ------------------ So when i make a post reqeuset i take a file using request.files['audio_file'] and this will be format which comes in django app now when i...

I was trying the [background_listening.py](https://github.com/Uberi/speech_recognition/blob/master/examples/background_listening.py) example, but it doesn't give any output, it doesn't even call the callback function, I've tried Python 3.11, Python 3.8 and python 3.9 and tried...