这是接触百度语音最最最简单的一个例子,高级用法还没学会…………。
准备:
- 登录百度云,创建百度语音应用。
- 下载baidu-aip :
pip install baidu-aip
编写代码:
#!/usr/bin/env python
# encoding: utf-8
from aip import AipSpeech""" 你的 APPID AK SK """
APP_ID = '你的 App ID'
API_KEY = '你的 Api Key'
SECRET_KEY = '你的 Secret Key'client = AipSpeechAPP_ID, API_KEY, SECRET_KEY)# 读取文件
def get_file_contentfilePath):with openfilePath, 'r') as fp:return fp.read)
#音频合成结果
result = client.synthesisget_file_content'I:\\a.txt'),'zh','0',{'vol':5,#音量(0-15)'spd':2,#语速(0-9)'per':1 #发音模式
})if not isinstanceresult,dict):with open'mymp3.mp3','wb') as f:#将音频文件写入本地f.writeresult)#利用 pygame 模块播放(没有的话 pip install pygame)
import pygame
import time
pygame.mixer.init)
pygame.mixer.music.load'mymp3.mp3')
pygame.mixer.music.play)
time.sleep120)#休眠120s时间这段时间里播放。
享受朗诵结果。