Views
No views yet
config.json and selected automatically.
Sampling options should be omitted.1dots.tts \
2 --model-name-or-path dots-studio/dots.tts-mf-2steps \
3 --text "Hello, this is a two-step MeanFlow voice cloning example." \
4 --prompt-audio /path/to/reference.wav \
5 --prompt-text "The exact transcript spoken in the reference audio." \
6 --output cloned.wav1from dots_tts.runtime import DotsTtsRuntime
2
3runtime = DotsTtsRuntime.from_pretrained(
4 "dots-studio/dots.tts-mf-2steps",
5 precision="bfloat16",
6)
7result = runtime.generate(
8 text="Hello, this is a two-step MeanFlow voice cloning example.",
9 prompt_audio_path="/path/to/reference.wav",
10 prompt_text="The exact transcript spoken in the reference audio.",
11)1@article{dotstts2026,
2 title = {dots.tts Technical Report},
3 author = {dots.tts Team},
4 year = {2026},
5 eprint = {2606.07080},
6 archivePrefix = {arXiv},
7 primaryClass = {cs.SD},
8}