M
M
mim1mim2020-09-20 16:38:20
Python
mim1mim, 2020-09-20 16:38:20

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())


Thanks in advance.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
K
kirillinyakin, 2020-09-20
@kirillinyakin

Apparently you are completing the program, the KeyBoardInterrupt error is also registered there

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question