You've already forked HeurAMS-Legacy
11 lines
263 B
Python
11 lines
263 B
Python
import pathlib
|
|
|
|
|
|
class BaseTTS:
|
|
name = "BaseTTS"
|
|
|
|
@classmethod
|
|
def convert(cls, text: str, path: pathlib.Path | str = "") -> pathlib.Path:
|
|
"""path 是可选参数, 不填则自动返回生成文件路径"""
|
|
return path # type: ignore
|