python 实现简单语音聊天机器人

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 实现简单语音聊天机器人相关的知识,希望对你有一定的参考价值。

 1 # -*- coding:utf-8 -*-
 2 import sys
 3 import requests
 4 import json
 5 import mp3play
 6 import time
 7 
 8 def talk(info):
 9     appkey = "e5ccc9c7c8834ec3b08940e290ff1559"
10     headers = {
11         User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit
12                       /537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safar
13                       i/537.36,
14     }
15     url = "http://www.tuling123.com/openapi/api?key=%s&info=%s" %(appkey, info)
16     content = requests.get(url, headers=headers)
17     answer = json.loads(content.text)
18     baidu_api = http://tts.baidu.com/text2audio?idx=1&tex={0}&cuid=baidu_speech_ 19           demo&cod=2&lan=zh&ctp=1&pdt=1&spd=4&per=4&vol=5&pit=5.format(answer[text])
20     res = requests.get(baidu_api, headers=headers)
21     with open(rE:\python_demo\tuling.mp3, wb) as f:
22         f.write(res.content)
23     return answer[text]
24 
25 def main(info):
26     info = info.decode(gb2312).encode(utf-8)
27     answer = talk(info)
28     mp3 = mp3play.load(rE:\python_demo\tuling.mp3)
29     mp3.play()
30     time.sleep(min(40, mp3.seconds()))
31     mp3.stop()
32     try:
33         print Tuling: %s % answer
34     except UnicodeEncodeError:
35         print u我说了个啥子哟。
36 
37 if __name__ == __main__:
38     print u开始你的表演。
39     while True:
40         info = raw_input(Studog:)
41         if info == 88:
42             break
43 main(info)

 

以上是关于python 实现简单语音聊天机器人的主要内容,如果未能解决你的问题,请参考以下文章

使用 Python 实现一个简单的智能聊天机器人

NLP开发Python实现聊天机器人(ALICE)

python 应用50行实现微信聊天机器人

简单的聊天机器人在Anaconda / Python中产生错误

简单几行代码看两个机器人尬聊

用 AIML 开发人工智能聊天机器人