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

hugobarbosa@Hugos-Air ~ % pip install pyaudio DEPRECATION: Configuring installation scheme with distutils config files is deprecated and will no longer work in the near future. If you are using a...

Try using speech2text than pocketsphinx because its more efficient, faster, accurate and pre-trained in large dataset

So just using the standard import speech_recognition as sr r = sr.Recognizer() speech = sr.Microphone(device_index=1) with speech as source: audio = r.adjust_for_ambient_noise(source) audio = r.listen(source) try: recog = r.recognize_google(audio, language...

Steps to reproduce ------------------ *This is a documentation error.* Expected behaviour ------------------ The reference description should be `sample_rate: Union[int, None] = None` Actual behaviour ---------------- ### Reference https://github.com/Uberi/speech_recognition/blob/3.8.1/reference/library-reference.rst#microphonedevice_index-unionint-none--none-sample_rate-int--16000-chunk_size-int--1024---microphone `sample_rate: int...

Steps to reproduce ------------------ 1. I am trying to split audio file at the word boundry instead of silence. Is it possible with this library? If you can guide. like...

Feature Requirement ------------------ 1. Is there a way to fetch the transcript word by word using recognize_google (The google speech recognition)? 2. I want listening to be happening in the...

I was playing around with SpeechRecognition and wanted an easy way to deploy the inference pipeline, so I hosted a basic app for the pretrained model on this [Slai Sandbox](https://www.slai.io/s/5jwjr)....

Steps to reproduce ------------------ i try to run the code: ``` #!/usr/bin/env python3 import sys, os import time import speech_recognition as sr r = sr.Recognizer() with sr.Microphone() as source: #...

Steps to reproduce ------------------ 1. (How do you make the issue happen? Does it happen every time you try it?) It happens every time I run. 2. (Make sure to...

![Desktop Screenshot 2022 06 23 - 03 05 47 51](https://user-images.githubusercontent.com/108063082/175274449-e2ba52f1-59bb-4c30-8656-75d5de37eef0.png) please help me in this .