Я работаю над распознаванием речи в python, но он только получает информацию от Micropohone. Как можно передать звук из динамиков в качестве входных данных для библиотеки распознавания речи?
Ниже приведен фрагмент кода:
import speech_recognition as sr
with sr.Microphone() as source: # using microphone here, would like to use speaker instead
print("Talk Something...")
audio=r.listen(source)
print("Time Over...")
import time
try:
t1=time.time()
print("Text: "+r.recognize_google(audio)) # prints after converting speech to text
t2=time.time()
print("T2-T1: ", t2-t1)
except:
print("Didn't understand the audio")
Я так долго боролся здесь и Любая помощь будет высоко ценится. Спасибо!