python 文字转语音并在linux播放

一、使用百度SDK将2文字转语音

1、在百度应用列表中创建一个语音合成的api,会生成AppID、API Key、Secret Key后面调用接口的时候需要使用。
python 文字转语音并在linux播放_第1张图片
2、安装百度SDK并按照文档调用

  from aip import AipSpeech
   
   APP_ID = 'AppID'
   API_KEY = 'API Key'
   SECRET_KEY = 'Secret Key'
   client = AipSpeech(APP_ID, API_KEY, SECRET_KEY)
   
   result = client.synthesis('你好!', 'zh', 1, {
       'vol': 5, 'per': 3, 'spd': 4
   })
   
   if not isinstance(result, dict):
       with open('auido.mp3', 'wb') as f:
           f.write(result)

二、linux中播放

	sudo apt-get install sox #安装sox
	sudo apt-get install sox libsox-fmt-all #安装sox支持的文件
	
	play *.mp3 #播放文件

你可能感兴趣的:(Linux)