{{ _('home.subtitle') }}
{{ _('home.features_subtitle') }}
{{ _('home.feature_free_desc') }}
{{ _('home.feature_openai_desc') }}
{{ _('home.feature_async_desc') }}
{{ _('home.feature_voices_desc') }} {{ _('home.feature_formats_desc') }}
{{ _('home.subtitle') }}
{{ _('home.installation_code') }}
Requires Python 3.8+
from ttsfm import TTSClient, Voice, AudioFormat
client = TTSClient()
response = client.generate_speech(
text="Hello, world!",
voice=Voice.ALLOY,
response_format=AudioFormat.MP3
)
response.save_to_file("hello")
No API keys required