利用百度API行語音合成 python

1. 登陸百度AL開發平臺

image

2. 在控制檯選擇語音合成

image

3. 建立應用

image

4. 填寫應用信息

image

5. 在應用列表獲取(Appid、API Key、Secret Key)

image

6. 安裝pythonsdk

安裝使用Python SDK有以下方式:python

  • 若是已安裝pip,執行pip install baidu-aip便可。
  • 若是已安裝setuptools,執行python setup.py instal便可。

7. 書寫代碼

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('你好百度', 'zh', 1, {
    'vol': 5,
})

# 識別正確返回語音二進制 錯誤則返回dict 參照下面錯誤碼
if not isinstance(result, dict):
    with open('auido.mp3', 'wb') as f:
        f.write(result)  
複製代碼

8. 大功告成

搜索887934385交流羣,進入後下載資料工具安裝包等。最後,感謝觀看!
bash

相關文章
相關標籤/搜索