安装python SDK
pip3 install baidu-aip
程序框架
#encoding:utf8
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(text = '你好百度', options={'vol':5})
if not isinstance(result,dict):
with open('audio.mp3','wb') as f:
f.write(result)
else:print(result)