plume-asr/plume/cli/data/generate.py

13 lines
177 B
Python
Raw Normal View History

2021-02-23 14:13:33 +00:00
from pathlib import Path
import typer
from ...utils.tts import GoogleTTS
app = typer.Typer()
@app.command()
def tts_dataset(dest_path: Path):
tts = GoogleTTS()
pass