**3、**新建文本文档,copy如下代码,然后另存为py后缀的文档即可,小编的命名为:test.py。
from aip import AipSpeech
“”" 你的 APPID AK SK “”"
APP_ID = ‘你的 App ID’
API_KEY = ‘你的 Api Key’
SECRET_KEY = ‘你的 Secret Key’
client = AipSpeech(APP_ID, API_KEY, SECRET_KEY)
result = client.synthesis(‘你好百度’, ‘zh’, 1, {
‘vol’: 5,‘per’:4
})
识别正确返回语音二进制 错误则返回dict 参照下面错误码
if not isinstance(result, dict):
with open(‘auido.mp3’, ‘wb’) as f:
f.write(result)
**4、**看文中代码
“”" 你的 APPID AK SK “”"
APP_ID = ‘你的 App ID’
API_KEY = ‘你的 Api Key’
SECRET_KEY = ‘你的 Secret Key’
这几个ID\key怎么搞?很简单,免费。
搜索百度开发者,账号随便注册,放心,免费。
然后,如下点击立即使用即可。