PocketSynth
PocketSynth is a Python synthesis engine for Pocket TTS ONNX bundles. It owns Pocket-specific text normalization, SentencePiece tokenization, model-limit chunking, voice-prompt preparation, and Pocket generation controls while delegating bundle assets and ONNX execution to OnnxVoice.
Document parsing, SSMD, written-to-spoken semantic preparation, logical voice binding, semantic pauses, markers, timeline composition, and final mastering are intentionally outside PocketSynth.
Install
Install PocketSynth with the OnnxVoice CPU runtime:
python -m pip install 'pocketsynth[cpu]'
The gpu extra selects OnnxVoice's GPU runtime. playback adds sounddevice for RenderedSegment.play().
Direct engine use
Use PocketRuntime for a reusable local or managed bundle session. Prepare a voice once and reuse it across independent requests:
from pocketsynth import PocketRuntime, SynthesisRequest
with PocketRuntime.from_pretrained("english_2026-04") as runtime:
voice = runtime.prepare_voice("alba")
result = runtime.synthesize(
SynthesisRequest(
id="line-001",
text="Hello from Pocket.",
language="en",
),
voice=voice,
)
result.save_wav("hello.wav")
PocketRuntime.synthesize() is strict and atomic. It encodes the complete request once, then either performs one inference or raises SynthesisInputTooLongError. It never splits text. config= accepts a validated GenerationConfig; synthesize_text() is a strict plain-text wrapper that prepares non-PreparedVoice inputs.
PocketRuntime.load(directory) opens a local bundle without catalog access or network activity. PocketRuntime.from_pretrained(bundle) resolves and opens a managed bundle through OnnxVoice.
Document-friendly splitting is available only from the explicit convenience module:
from pocketsynth.convenience import synthesize_to_wav
synthesize_to_wav(
"Hello from Pocket.",
"hello.wav",
bundle="english_2026-04",
voice="alba",
sentence_split="phrasplit", # opt in to sentence segmentation
)
pocketsynth.convenience.synthesize_with_runtime() and pocketsynth.convenience.synthesize() return a RenderedSegment. pocketsynth.convenience.synthesize_to_wav() returns the destination Path after atomically writing the WAV. Convenience rendering may split at Pocket model limits. Sentence splitting defaults to "none"; pass sentence_split="phrasplit" to opt in. Convenience functions are not aliases for the strict runtime API and are not imported by pocketsynth.
Text and model chunks
Input text must already be speakable. PocketSynth does not parse documents, expand numbers or dates, or apply pronunciation directives. Strict synthesis neither segments sentences nor subdivides at the model token limit. Oversized requests fail with SynthesisInputTooLongError.
The explicit convenience layer can split text to fit model limits. Its optional Phrasplit mode segments sentences first, then Pocket model-limit chunks are rendered and joined in order. PocketRuntime.iter_chunks() exposes model-limit chunks for applications that explicitly want chunked rendering; it does not perform sentence segmentation.
from pocketsynth.convenience import synthesize_with_runtime
from pocketsynth import PocketRuntime
with PocketRuntime.from_pretrained("english_2026-04") as runtime:
long_text = "Dr. Smith arrived early. Then he started the presentation."
result = synthesize_with_runtime(runtime, long_text, voice="alba", sentence_split="phrasplit")
An explicit request language is a compatibility assertion against the active bundle. None uses the bundle language. PocketSynth does not switch bundles or route languages automatically.
Voices
Pocket bundles and voice conditioning are separate. prepare_voice() accepts bundle-declared predefined names, mono PCM16 WAV paths, Path objects, in-memory (audio, sample_rate) tuples, and existing PreparedVoice objects. Reference audio is validated and resampled to the bundle rate before OnnxVoice encodes it.
PreparedVoice can be reused for many requests on a compatible runtime. Its fingerprint identifies canonical resampled reference audio or the bundle and predefined voice name. OnnxVoice remains responsible for voice-state assets, downloads, authentication, and cache integrity. Some predefined voice assets require accepting upstream access terms and authenticating with Hugging Face before online use.
To inspect dependencies, providers, bundle metadata, and voice format:
pocketsynth check --bundle english_2026-04 --voice alba
pocketsynth check --bundle-dir ./onnx/english_2026-04 --voice reference.wav
CLI
Managed bundle:
pocketsynth synthesize \
--bundle english_2026-04 \
--voice alba \
--output hello.wav \
"Hello from Pocket."
Local bundle:
pocketsynth synthesize \
--bundle-dir ./onnx/english_2026-04 \
--voice reference.wav \
--output hello-local.wav \
"Hello from Pocket."
The synthesize CLI is a convenience renderer. Sentence splitting defaults to none, which still permits Pocket model-limit chunking. Pass --sentence-split phrasplit to opt into Phrasplit's lightweight regex sentence segmentation. Other inference controls include --temperature, --lsd-steps, --max-frames, and --frames-after-eos. Asset controls include --cache-dir, --offline, --refresh-catalog, and --force-download for managed bundles.
Orchestrated use
An application that renders documents resolves document meaning and concrete engine inputs before calling PocketSynth:
source document / SSMD
-> application orchestration and document planning
-> prepared speakable text + concrete bundle + PreparedVoice
-> PocketRuntime
-> SynthesisResult
-> application composition and output policy
PocketSynth does not import or require the neighboring document-planning or audio-composition packages. Callers own semantic pauses, markers, logical voice roles, external audio, timeline placement, and final mastering.
Breaking boundary change
PocketSynth's engine API is strict and atomic: PocketRuntime.synthesize() accepts one SynthesisRequest and never splits it. synthesize_text() is the strict plain-text wrapper. Document and model-limit splitting lives in the explicit pocketsynth.convenience module and the CLI. Convenience imports are not loaded by importing pocketsynth.
The strict API returns finite mono float32 audio with request and runtime metadata, but no chunk collection. Applications that deliberately need model-limit chunks can use PocketRuntime.iter_chunks() or the explicit convenience layer. Document pauses, markers, role routing, and final timelines remain application responsibilities.
Migration from 0.1
| 0.1 API or responsibility | 0.2 replacement |
|---|---|
PocketPipeline and set_default_voice() |
Open with PocketRuntime.load() or from_pretrained(), prepare a voice, and pass it to each synthesis call |
| UtterPlan, document parsing, and semantic preparation | Prepare speakable text in the application before calling PocketSynth |
| Implicit sentence/document splitting | Use pocketsynth.convenience.synthesize_with_runtime() or convenience synthesize() with sentence_split="phrasplit"; use "none" to bypass sentence segmentation |
| Pipeline document-unit streaming | Use PocketRuntime.iter_chunks() only for explicit model-limit chunks; application code owns semantic units |
AudioResult, AudioJob, and AudioCompose timelines |
Use strict SynthesisResult or convenience RenderedSegment; compose timelines in the application |
Package-root synthesize() and synthesize_to_wav() imports |
Import these functions from pocketsynth.convenience |
normalize_audio and volume request controls |
Use static VoiceLevelConfig calibration where appropriate, or perform mastering in the application |
Examples and checks
See examples/README.md. The runner does not start managed downloads unless requested:
python examples/run_all.py --list
python examples/run_all.py --local-only
python examples/run_all.py --include-network
python examples/run_all.py --include-network --offline
Set POCKETSYNTH_EXAMPLE_VOICE for reference-WAV examples and POCKETSYNTH_EXAMPLE_BUNDLE_DIR for local examples.
Run project checks with:
python -m pytest
python -m ruff check pocketsynth tests examples
python -m mypy --config-file pyproject.toml pocketsynth
python -m compileall -q pocketsynth tests examples
Real model tests are environment-gated. Set POCKETSYNTH_TEST_BUNDLE_DIR and POCKETSYNTH_TEST_VOICE_WAV to run the local integration tests. Managed tests may require network access and accepted upstream voice-asset terms.
Release files for pocketsynth 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pocketsynth-0.2.0.tar.gz | 152.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pocketsynth-0.2.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 189.1 kB
Release files / pocketsynth-0.2.0.tar.gz
| Download URL | pocketsynth-0.2.0.tar.gz |
|---|---|
| Size | 152.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e05983ba55e520304216918092b634b26aeab4a5d57c0e8201072e28a24b871c
|
|
BLAKE2b-256 checksum How to use checksums |
4501afc49442e108dc0e385186fcdfd73059808f494838ea6ea7ea9325840f0b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Release files / pocketsynth-0.2.0-py3-none-any.whl
| Download URL | pocketsynth-0.2.0-py3-none-any.whl |
|---|---|
| Size | 37.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d224eeb62909b57b429c6093805d42d03b29aa9f6a6523d362f7fff2ee809c30
|
|
BLAKE2b-256 checksum How to use checksums |
dee1b80f58455c259002262db5ef47baede416492c0e4c21b9ae63331162cb73
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|