欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用python调用百度语音接口进行语音合成

程序员文章站 2022-07-14 19:56:13
...

安装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)
相关标签: 语音合成