0

我正在使用pyttsx3speech_recognition模块,有时我会收到此错误:OSError [Errno -9988] Stream closed. 这是一个有点相同的问题,但没有答案并且在 Raspberry Pi 上。
我的操作系统 - Windows 10,Python 版本 - 3.8.5

最小的可重现示例 -

import speech_recognition as sr
import pyttsx3

engine = pyttsx3.init()

while True:
    r = sr.Recognizer()
    print("Say something")
    try:
        with sr.Microphone() as source:
        audio = r.listen(source, phrase_time_limit = 10)
        said = ''
        try:
            said = r.recognize_google(audio, language="en-EN")
        except sr.UnknownValueError:
            print("Unrecognised speech")
        if said == 'hi':
            engine.say("Hello there!")
            engine.runAndWait()
    except OSError as ose:
        print(ose)

它产生的完整输出 - 我except编辑了这个错误,我的输出是OSError [Errno -9988] Stream closed

所以我的问题是 -如何解决它???,为什么会出现这个错误?

4

0 回答 0