audio_test.py 文件源码

python
阅读 27 收藏 0 点赞 0 评论 0

项目:transcriber 作者: xaratustrah 项目源码 文件源码
def recognize(recognizer_instance, audio_data):
    # recognize speech using Google Speech Recognition
    try:
        # for testing purposes, we're just using the default API key
        # to use another API key, use `r.recognize_google(audio, key="GOOGLE_SPEECH_RECOGNITION_API_KEY")`
        # instead of `r.recognize_google(audio)`
        text = str(recognizer_instance.recognize_google(audio_data))
        print(text)
        if 'on' in text.lower():
            print('Turning on!')
        if 'off' in text.lower():
            print('Turning off!')
    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))
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号