Loonly / TTS /__init__.py
thepianist9's picture
Upload folder using huggingface_hub
8d0209c verified
raw
history blame contribute delete
252 Bytes
from .EdgeTTS import EdgeTTS
try:
from .PaddleTTS import PaddleTTS
except Exception as e:
print("PaddleTTS Error: ", e)
print("如果使用PaddleTTS,请先安装PaddleTTS环境")
print("pip install -r requirements_paddle.txt")