add edge tts

This commit is contained in:
2025-11-28 20:27:10 +08:00
parent f796a3833b
commit 87160c5265
20 changed files with 3589 additions and 3 deletions

19
tts/__init__.py Normal file
View File

@ -0,0 +1,19 @@
"""
TTS (Text-to-Speech) 模块
提供统一的 TTS 引擎接口,支持多个 TTS 引擎的扩展。
当前支持: Edge-TTS
"""
from .base import TTSEngine
from .edge_tts_engine import EdgeTTSEngine
from .factory import TTSEngineFactory, TTSEngineType
from .service import TTSService
__all__ = [
"TTSEngine",
"EdgeTTSEngine",
"TTSEngineFactory",
"TTSEngineType",
"TTSService",
]