Open-source text-to-speech

Compact, portable speech synthesis for developers.

Build voice features without heavyweight infrastructure. Pocket-TTS prioritizes iteration speed, portability, and a clean developer experience.

Open-source and community-driven.
Designed for offline and edge use cases.
Developer-friendly APIs with clear examples.

Live Demo

Try Pocket-TTS directly in your browser. The demo is embedded below using Gradio.

Initializing Pocket-TTS ...

Preparing the live demo experience

0%

Why Pocket-TTS

A small library that stays out of your way, whether you're prototyping or shipping to constrained devices.

Portable by design

Run the same pipeline in a browser demo or on-device workflows.

Offline-friendly

Keep voice capabilities available even without a persistent network connection.

Developer-first

Clear APIs and examples that reduce time-to-first-audio.

Quick Start

Install and synthesize speech with a minimal setup.

$ pip install pocket-tts
# Example
from pocket_tts import PocketTTS
tts = PocketTTS()
tts.load_voice('en_US')
tts.speak("Hello developer world!")