[問題] google 語音辨識 uri問題 當音檔超過1分

作者: wanson (望生)   2017-11-03 20:18:31
最近在嘗試語音辨識
我使用google 的辨識SpeechRecognition
其中的函數為r.recognize_google
網路上看到人討論當檔案超過一分鐘左右無法辨識
我上他的網站看到
https://cloud.google.com/speech/quotas
可以使用cloud 的uri
因此我嘗試將檔案上傳到google cloud platform
根據uri的概念的uri 為下
gs://speechrecognition21/test.wav
我的code如以下
import speech_recognition as sr
# obtain path to "english.wav" in the same folder as this script
AUDIO_FILE = "gs://speechrecognition21/test.wav"
# use the audio file as the audio source
r = sr.Recognizer()
with sr.AudioFile(AUDIO_FILE) as source:
audio = r.record(source) # read the entire audio file
r.recognize_google(audio, language='en-US')
想請問是否有人可以教導 是我那邊有錯誤?
作者: goldflower (金色小黃花)   2017-11-04 01:09:00
現在應該都要key了?可能可以考慮改用CMU Sphinx
作者: TitanEric (泰坦)   2017-11-04 17:39:00
可以切割後再丟給api呀
作者: snowman9436   2017-11-05 00:12:00
一則聲音檔的上限是65秒,超過會出現問題有問題的話在FB的PYTHON TAIWAN那個版比較多人回

Links booklink

Contact Us: admin [ a t ] ucptt.com