python调用百度文字转语音api

from aip import AipSpeech
import os
import shutil
class getMp3(object):
    """docstring for getMp3"""
    def __init__(self):
        super(getMp3, self).__init__()
        self.APP_ID = '25602943'
        self.API_KEY = 'vyYLov63W6x33nIPvwVdLLsX'
        self.SECRET_KEY = 'EzgQoFF9xp62SeGCXCBaD8FjWNxvl9kZ'
        self.mp3Path = r'C:\Users\HK\Desktop\语音识别\sound2'

    def main(self, text, filename, per):
        client = AipSpeech(self.APP_ID, self.API_KEY, self.SECRET_KEY)  # 这三个参数需要注册百度AI云平台进行获取
        result = client.synthesis(text, 'zh', 1, {
            'vol': 5,
            'per': per
        })  # 需要转化的文字在括号内第一个属性内填写
        # vol为音量,per为声音种类
        # 识别正确返回语音二进制 错误则返回dict 参照下面错误码,生成音频
        if not isinstance(result, dict):
            with open(filename, 'wb') as f:
                f.write(result)

mp3Path为保存语音文件的路径,main方法中,filename为音频文件的文件名,per为音频文件的声音类型

aip包的安装pip install baidu-aip==2.2.18.0

你可能感兴趣的:(python,百度,语音识别)