用c++写调用科大讯飞语言读文本的代码
时间: 2023-03-12 18:03:00 浏览: 204
基于c++的科大讯飞源码
3星 · 编辑精心推荐
可以用如下代码调用科大讯飞语言读文本:try:
from aip import AipSpeech
APP_ID = '你的App ID'
API_KEY = '你的Api Key'
SECRET_KEY = '你的Secret Key'
client = AipSpeech(APP_ID, API_KEY, SECRET_KEY)
result = client.synthesis(text, 'zh', 1, {
'vol': 5,
})
# 识别正确返回语音二进制 错误则返回dict 参照下面错误码
if not isinstance(result, dict):
with open('auido.mp3', 'wb') as f:
f.write(result)
except:
print('调用科大讯飞语音失败!')
阅读全文