mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-23 23:53:55 +08:00
* 🦄 refactor(web): 修改zhikongtaiweb到web * 🦄 refactor: 重写前端 路由守护尚未写完 * 🦄 refactor: 标准化路由 * update:前端重写,保留后端 * update:添加前端代码 * update:pip转成poetry启动 * update:增加mem0ai包依赖 * update:文档增加mem0ai的描述 * feat: play online mp3 (#181) Co-authored-by: 欣南科技 <huangrongzhuang@xin-nan.com> * 修改前端代码 * update:调整项目目录 * update:优化 * update:配置文件去除8002端口 * update:增加开发说明 * update:更新开发协议 --------- Co-authored-by: kalicyh <34980061+kaliCYH@users.noreply.github.com> Co-authored-by: hrz <1710360675@qq.com> Co-authored-by: freshlife001 <talent@mises.site> Co-authored-by: CGD <3030332422@qq.com>
77 lines
2.9 KiB
Python
77 lines
2.9 KiB
Python
import os
|
|
import uuid
|
|
import json
|
|
import requests
|
|
from datetime import datetime
|
|
from core.providers.tts.base import TTSProviderBase
|
|
|
|
|
|
class TTSProvider(TTSProviderBase):
|
|
def __init__(self, config, delete_audio_file):
|
|
super().__init__(config, delete_audio_file)
|
|
self.group_id = config.get("group_id")
|
|
self.api_key = config.get("api_key")
|
|
self.model = config.get("model")
|
|
self.voice_id = config.get("voice_id")
|
|
|
|
default_voice_setting = {
|
|
"voice_id": "female-shaonv",
|
|
"speed": 1,
|
|
"vol": 1,
|
|
"pitch": 0,
|
|
"emotion": "happy"
|
|
}
|
|
default_pronunciation_dict = {
|
|
"tone": [
|
|
"处理/(chu3)(li3)", "危险/dangerous"
|
|
]
|
|
}
|
|
defult_audio_setting = {
|
|
"sample_rate": 32000,
|
|
"bitrate": 128000,
|
|
"format": "mp3",
|
|
"channel": 1
|
|
}
|
|
self.voice_setting = {**default_voice_setting, **config.get("voice_setting", {})}
|
|
self.pronunciation_dict = {**default_pronunciation_dict, **config.get("pronunciation_dict", {})}
|
|
self.audio_setting = {**defult_audio_setting, **config.get("audio_setting", {})}
|
|
self.timber_weights = config.get("timber_weights", [])
|
|
|
|
if self.voice_id:
|
|
self.voice_setting["voice_id"] = self.voice_id
|
|
|
|
self.host = "api.minimax.chat"
|
|
self.api_url = f"https://{self.host}/v1/t2a_v2?GroupId={self.group_id}"
|
|
self.header = {
|
|
"Content-Type": "application/json",
|
|
"Authorization": f"Bearer {self.api_key}"
|
|
}
|
|
|
|
def generate_filename(self, extension=".mp3"):
|
|
return os.path.join(self.output_file, f"tts-{__name__}{datetime.now().date()}@{uuid.uuid4().hex}{extension}")
|
|
|
|
async def text_to_speak(self, text, output_file):
|
|
request_json = {
|
|
"model": self.model,
|
|
"text": text,
|
|
"stream": False,
|
|
"voice_setting": self.voice_setting,
|
|
"pronunciation_dict": self.pronunciation_dict,
|
|
"audio_setting": self.audio_setting,
|
|
}
|
|
|
|
if type(self.timber_weights) is list and len(self.timber_weights) > 0:
|
|
request_json["timber_weights"] = self.timber_weights
|
|
request_json["voice_setting"]["voice_id"] = ""
|
|
|
|
try:
|
|
resp = requests.post(self.api_url, json.dumps(request_json), headers=self.header)
|
|
# 检查返回请求数据的status_code是否为0
|
|
if resp.json()["base_resp"]["status_code"] == 0:
|
|
data = resp.json()['data']['audio']
|
|
file_to_save = open(output_file, "wb")
|
|
file_to_save.write(bytes.fromhex(data))
|
|
else:
|
|
raise Exception(f"{__name__} status_code: {resp.status_code} response: {resp.content}")
|
|
except Exception as e:
|
|
raise Exception(f"{__name__} error: {e}") |