1

UnknownValueError が発生した後にプログラムがクラッシュする

アプリケーションを続行しようとしていますが、代わりにこの UnknownValueError が発生すると、プログラム全体が終了/終了します。プログラムを終了させずに sr.UnknownValueError を使用するにはどうすればよいですか? ある時点で実際に動作していましたが、コードに触れたり編集したりせずに動作を停止したようです。私は受け取った助けに感謝します。ありがとう。

これが私のコードです:

while speakCommand == True:

    # GOOGLE LISTEN
    print ("Please speak a command.")

    engine = pyttsx.init()
    engine.say("Please speak a command.")
    engine.runAndWait()

    # r.record(source, duration = 60s, offset = None)
    r = sr.Recognizer()
    with sr.Microphone() as source:
        audio = r.listen(source, timeout=None)

    VoiceCommand1Up = r.recognize_google(audio)
    VoiceCommand1Low = (VoiceCommand1Up.lower())

    try:
        print("You said, " + r.recognize_google(audio))
    # engine = pyttsx.init()
    # engine.say("We think you said, " + VoiceCommand1Low)
    # engine.runAndWait()
    except sr.UnknownValueError:
        print("Google Speech Recognition could not understand audio")
        engine = pyttsx.init()
        engine.say("Google Speech Recognition could not understand audio")
        engine.runAndWait()
        standby = False
        speakCommand = True
        break

    except sr.RequestError as e:
        print("Could not request results from Google Speech Recognition service; {0}".format(e))
        engine = pyttsx.init()
        engine.say("Could not request results from Google Speech Recognition service; {0}".format(e))
        engine.runAndWait()
        standby = False
        speakCommand = True
        break
4

0 に答える 0