Python语音识别速度变慢

时间:2018-09-10 14:45:22

标签: python speech-recognition chatbot speech

我开发了一个新程序来与我的聊天机器人对话。它工作得很好,但是有一个奇怪的问题我似乎无法弄清楚。每次重复该过程(控制台输出监听并进行语音识别)时,它都会变慢。第一个走得很快,第二个走得慢一些,第三个走得很慢,然后它变得太慢而无法响应。请帮助我找出可能导致这种情况的语法。

import speech_recognition as sr

r = sr.Recognizer()

with sr.Microphone() as source:
    while True:
        print("say something")
        audio = r.listen(source)
        try:
            print("Text:"+r.recognize_google(audio, language = 'en-us', show_all=False));
        except sr.UnknownValueError:
            print("Google Speech Recognition could not understand audio")
        except sr.RequestError as e:
            print("Could not request results from Google Speech Recognition service; {0}".format(e))

1 个答案:

答案 0 :(得分:0)

这是循环顺序的问题。我只是在r = sr.Recognizer()中加入了with sr.Microphone() as source:while,它运行良好,响应没有延迟。

谢谢