mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 23:23:55 +08:00
* fix: 修复manual模式无法识别 (#404) * feat(docs): 新增Issues模板 * fix: 补全core依赖 * fix: 修复manual模式无法识别 * 去除重复依赖.txt 已经有torch和torchaudio --------- Co-authored-by: 欣南科技 <huangrongzhuang@xin-nan.com> * 修复iot功能中表达式问题 (#400) * Custom paths asr tts (#388) * #164 自定义asr、tts缓存目录,项目启动自动创建目录 * #164 自定义asr、tts缓存目录,项目启动自动创建目录 * fix:修复语音无法找到新配置项output_file的bug * fix:电脑不支持iot音量控制bug --------- Co-authored-by: Junsen <66542771+Huang-junsen@users.noreply.github.com> Co-authored-by: tang <tangyiyong@gmail.com> Co-authored-by: shudongW <178200623@qq.com> Co-authored-by: hrz <1710360675@qq.com>
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
import os
|
|
import uuid
|
|
import requests
|
|
from config.logger import setup_logging
|
|
from datetime import datetime
|
|
from core.providers.tts.base import TTSProviderBase
|
|
|
|
TAG = __name__
|
|
logger = setup_logging()
|
|
|
|
class TTSProvider(TTSProviderBase):
|
|
def __init__(self, config, delete_audio_file):
|
|
super().__init__(config, delete_audio_file)
|
|
self.url = config.get("url")
|
|
self.headers = config.get("headers", {})
|
|
self.params = config.get("params")
|
|
self.format = config.get("format", "wav")
|
|
self.output_file = config.get("output_dir", "tmp/")
|
|
|
|
def generate_filename(self):
|
|
return os.path.join(self.output_file, f"tts-{datetime.now().date()}@{uuid.uuid4().hex}.{self.format}")
|
|
|
|
async def text_to_speak(self, text, output_file):
|
|
request_params = {}
|
|
for k, v in self.params.items():
|
|
if isinstance(v, str) and "{prompt_text}" in v:
|
|
v = v.replace("{prompt_text}", text)
|
|
request_params[k] = v
|
|
|
|
resp = requests.get(self.url, params=request_params, headers=self.headers)
|
|
if resp.status_code == 200:
|
|
with open(output_file, "wb") as file:
|
|
file.write(resp.content)
|
|
else:
|
|
logger.bind(tag=TAG).error(f"Custom TTS请求失败: {resp.status_code} - {resp.text}")
|