Files
dsProject/dsLightRag/Test/GengerateAudio.py

74 lines
2.2 KiB
Python
Raw Normal View History

2025-09-02 06:18:26 +08:00
#coding=utf-8
'''
requires Python 3.6 or later
pip install requests
'''
import base64
import json
import uuid
import requests
from Config.Config import HS_APP_ID, HS_ACCESS_TOKEN, HS_CLUSTER_ID, HS_VOICE_TYPE_QINCANG
# 填写平台申请的appid, access_token以及cluster
appid = HS_APP_ID
access_token= HS_ACCESS_TOKEN
cluster = HS_CLUSTER_ID
voice_type = HS_VOICE_TYPE_QINCANG
host = "openspeech.bytedance.com"
api_url = f"https://{host}/api/v1/tts"
header = {"Authorization": f"Bearer;{access_token}"}
request_json = {
"app": {
"appid": appid,
"token": "access_token",
"cluster": cluster
},
"user": {
"uid": "388808087185088"
},
"audio": {
"voice_type": voice_type,
"encoding": "mp3",
"speed_ratio": 1.0,
"volume_ratio": 1.0,
"pitch_ratio": 1.0,
},
"request": {
"reqid": str(uuid.uuid4()),
"text": """
君不见黄河之水天上来奔流到海不复回
君不见高堂明镜悲白发朝如青丝暮成雪
人生得意须尽欢莫使金樽空对月
天生我材必有用千金散尽还复来
烹羊宰牛且为乐会须一饮三百杯
岑夫子丹丘生将进酒杯莫停
与君歌一曲请君为我倾耳听
钟鼓馔玉不足贵但愿长醉不复醒
古来圣贤皆寂寞惟有饮者留其名
陈王昔时宴平乐斗酒十千恣欢谑
主人何为言少钱径须沽取对君酌
五花马千金裘呼儿将出换美酒与尔同销万古愁
""",
"text_type": "plain",
"operation": "query",
"with_frontend": 1,
"frontend_type": "unitTson"
}
}
if __name__ == '__main__':
try:
resp = requests.post(api_url, json.dumps(request_json), headers=header)
#print(f"resp body: \n{resp.json()}")
if "data" in resp.json():
data = resp.json()["data"]
file_to_save = open("test_submit.mp3", "wb")
file_to_save.write(base64.b64decode(data))
except Exception as e:
e.with_traceback()