做了一个小小的语音识别的实验
运行环境:
windows 7(自带语音识别模块,不需要另外安装)
python 2.7 32bit
speech(https://pypi.python.org/pypi/speech/0.5.2 https://code.google.com/p/pyspeech/,安装的时候下载的speech的egg包,然后在本地调用 easy install安装完成 python easy_install.py xxxxx.egg)
pywin32 (这个下载32bit或64bit的要和机器上装的python版本对应。一开始我以为自己的机器是64bit的所以安装了64bit的,结果后来发现不行。经过确认发现竟然之前装的python是32bit的)
import speech
import time
response = speech.input("Say something, please.")
speech.say("You said " + response)
def callback(phrase, listener):
if phrase == "goodbye":
listener.stoplistening()
speech.say(phrase)
print phrase
listener = speech.listenforanything(callback)
while listener.islistening():
time.sleep(.5)