fromsupertonicimportTTStts=TTS(auto_download=True)# Initialize TTS enginestyle=tts.get_voice_style(voice_name="M1")# 10 built-in voices: M1–M5, F1–F5wav,duration=tts.synthesize(text="Your text here.",# Text to synthesizevoice_style=style,# Voice style objecttotal_steps=8,# Quality: 5 (low) to 12 (high), default 8speed=1.05,# Speed: 0.7 (slow) to 2.0 (fast)max_chunk_length=300,# Max characters per chunk (auto: 120 for Korean)silence_duration=0.3,# Silence between chunks (seconds)lang=None,# Auto: "na" for multilingual, "en" for v1verbose=False,# Show detailed progress (default: False))