使用Python進行語音辨識(聲音轉文字)
4 min readJun 27, 2019
安裝套件:
$ pip install SpeechRecognition
$ pip install pocketsphinx #使用CMU Sphinx才需要安裝
使用:
使用Google的服務(有聲音時間限制,不確定幾分鐘,且須連網)
import speech_recognition as sr
r = sr.Recognizer()…
$ pip install SpeechRecognition
$ pip install pocketsphinx #使用CMU Sphinx才需要安裝
使用Google的服務(有聲音時間限制,不確定幾分鐘,且須連網)
import speech_recognition as sr
r = sr.Recognizer()…