speech_recognition
speech_recognition copied to clipboard
Speech recognition module for Python, supporting several engines and APIs, online and offline.
WARNING: Did not find branch or tag '010382b', assuming revision or ref. Running command git checkout -q 010382b fatal: unable to access 'https://github.com/Uberi/speech_recognition.git/': Recv failure: Connection was reset fatal: could...
I got the following error when trying to use show_all with google cloud speech: ``` Traceback (most recent call last): File "main.py", line 47, in sentence = r.recognize_google_cloud(audio, credentials_json=GOOGLE_CLOUD_SPEECH_CREDENTIALS, language="de-DE",...
Steps to reproduce ------------------ 1. `pip install 'SpeechRecognition[whisper-api]' pyaudio` 2. Insert OpenAI API Key in `examples/microphone_recognition.py` and comment out other recognizers https://github.com/Uberi/speech_recognition/blob/8b07762f80dfec2d34fb4c40b8eddbb7ec503521/examples/microphone_recognition.py#L97 3. Run `examples/microphone_recognition.py` Expected behaviour ------------------ See Whisper...
Hello. I found the python script below that should be able to give a realistic humanoid voice to chat gpt,converting the text produced by it into a humanoid voice and...
Steps to reproduce ------------------ I am using 2021 macbook pro m1 I follow the normal step on pypi.org using pycharm IDE just like: brew install pyaudio brew install portaudio sudo...
Steps to reproduce ------------------ 1. (How do you make the issue happen? Does it happen every time you try it?) 2. (Make sure to go into as much detail as...
Is there anyone who can add whisper example in [audio_transcribe.py](https://github.com/Uberi/speech_recognition/blob/74615638f9e0d66a45119a9b5fc08812d6b560ff/examples/audio_transcribe.py)? - [microphone_recognition](https://github.com/Uberi/speech_recognition/blob/74615638f9e0d66a45119a9b5fc08812d6b560ff/examples/microphone_recognition.py#L88-L94) example is already added (on #625) - [This test code](https://github.com/Uberi/speech_recognition/blob/74615638f9e0d66a45119a9b5fc08812d6b560ff/tests/test_recognition.py#L85-L98) is helpful to solve this issue Expected behaviour...
Steps to reproduce ------------------ The code is: r = sr.Recognizer() try: with sr.Microphone() as source: audio = r.listen(source, 20, 10) except: ..... Sometime it go to except block with error:...
Steps to reproduce ------------------ ``` import speech_recognition as sr r=sr.Recognizer() with sr.Microphone() as m: audio=r.record(m,duration=5) r.recognize_whisper(audio) ``` Expected behaviour ------------------ I expected it to work Actual behaviour ---------------- Throws a...
Steps to reproduce ------------------ 1. Just try for first time but error bad request, maybe from server maybe from my internet but idk Expected behaviour Stable server Actual behaviour Bad...