今天用python寫了乙個簡單的程式把文字轉換成語音,以下是**
from aip import aipspeech
class
ai: api_key = 'uswmlsbc2zxv9rcnn2gnpb9h'
secret_key = 'gxf8toeo2mbkm6qpthbf9wzhypqc6zt7'
def__init__
(self,msg_file,out_file="audio.***"):
self.msg_file=msg_file
self.out_file=out_file
deftext2audio
(self):
# 把txt檔案轉成音訊檔案
# msg_file是txt檔名
# out_file是音訊檔案名。
with open(self.msg_file,"r") as file:
text=file.read()
for i in range(int(len(text)/500)+1):
result = client.synthesis(text[i:i+500], 'zh', 1, )
ifnot isinstance(result, dict):
with open(self.out_file, 'ab') as f:
f.write(result)
print("處理完畢!")
python百度文庫文字提取 百度文庫文字爬取
import requests import re import json headers 模擬手機 def get num url response requests.get url,headers headers text print response result re.search r md...
百度CTO王海峰發布百度大腦5 0
techweb 7 月 3 日,在 2019 ai開發者大會上,cto王海峰博士開場便帶來了一段 機械臂倒蓋碗茶 的互動秀,並宣布大hwfzp腦公升級至5.0。這個機械臂既會茶藝絕活兒,還能說會道。雖然演示過程簡短,但這背後卻融合了機械人視覺 語音 自然語言處理等多種人工智慧技術,也展示了ai技術儲...
百度AI文字識別 python筆記
coding utf 8 import urllib,urllib2,base64 access token 呼叫鑑權介面獲取的token url access token 二進位制方式開啟 件 f open r 本地檔案 rb 引數image 影象base64編碼 img base64.b64en...