程式碼暫存





 import speech_recognition as sr
 # obtain audio from the microphone
 r = sr.Recognizer()
 with sr.Microphone() as source:
     print("Say something!")
     audio = r.listen(source)



# recognize speech using Google Speech Recognition
 try:
     # for testing purposes, you'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)`
      print("Google Speech Recognition thinks you said " + r.recognize_ google(audio))
 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))
 

留言

這個網誌中的熱門文章

經得起原始碼資安弱點掃描的程式設計習慣培養(五)_Missing HSTS Header

經得起原始碼資安弱點掃描的程式設計習慣培養(三)_7.Cross Site Scripting(XSS)_Stored XSS_Reflected XSS All Clients

(2021年度)駕訓學科筆試準備題庫歸納分析_法規是非題