Answer the question
In order to leave comments, you need to log in
How to solve speech recognition problem in python?
I want to do speech recognition, but I keep getting a
Traceback error (most recent call last):
File "D:\Documents\python\test.py", line 5, in
audio = r.listen(source)
File "C:\Users \anton\AppData\Local\Programs\Python\Python38-32\lib\site-packages\speech_recognition\__init__.py", line 652, in listen
buffer = source.stream.read(source.CHUNK)
File "C:\ Users\anton\AppData\Local\Programs\Python\Python38-32\lib\site-packages\speech_recognition\__init__.py", line 161, in read
return self.pyaudio_stream.read(size, exception_on_overflow=False)
File "C :\Users\anton\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pyaudio.py", line 608, in read
return pa.read_stream(self._stream, num_frames, exception_on_overflow)
KeyboardInterrupt
Code:
import speech_recognition as sr
r = sr.Recognizer()
with sr.Microphone(device_index=1) as source:
audio = r.listen(source)
query = r.recognize_google(audio, language="ru-RU")
print('you speak: ' + query.lower())
Answer the question
In order to leave comments, you need to log in
Apparently you are completing the program, the KeyBoardInterrupt error is also registered there
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question