edgespeak-broadcast
GitHub提供完全本地化的文本转语音服务,支持合成WAV音频、自定义音色设计、克隆及本地音色库管理。适用于需要隐私保护或离线环境的语音生成场景。
Trigger Scenarios
Install
npx skills add lattifai/EdgeSpeak-Skills --skill edgespeak-broadcast -g -y
SKILL.md
Frontmatter
{
"name": "edgespeak-broadcast",
"version": "0.1.0",
"description": "Turn text into natural speech fully on-device via EdgeSpeak (Broadcast) — synthesize WAV audio with selectable voices, style instructions, speed and reproducible seeds, design a brand-new voice from a text description, and manage a local voice library including cloning a voice from consented reference audio. Use when the user wants local private text-to-speech, an audio version of some text, or wants to list\/add\/delete EdgeSpeak voices.",
"minCliVersion": "0.3.0"
}
EdgeSpeak Broadcast
Turn text into speech, entirely on-device — the text never leaves the machine. Broadcast is EdgeSpeak's speech feature; under the hood this skill calls edgespeak-cli speech (alias: synthesize). When the EdgeSpeak desktop app is running, the CLI talks to its local gateway (OpenAI-compatible, 127.0.0.1:1117) and reuses the warm model (proxy mode); when the app is not running, the CLI launches the bundled on-device engine itself (standalone mode). Standalone is a normal mode, not an error.
Version compatibility. The frontmatter pins this skill's version and the oldest CLI it is written against (minCliVersion). If edgespeak-cli --version reports something older, run edgespeak-cli update (or re-run the installer) before relying on the flags documented here. Same-numbered builds can still differ, so --help is the tiebreaker: a command or flag documented here but missing from the installed --help also means update — don't route around it.
Inputs to confirm
- The text to speak (or the file it comes from).
- Output WAV path.
- Any requested voice, style instructions, speed, language, or reproducibility (seed) preferences.
How to do it
-
Check the runtime first:
edgespeak-cli status- Command not found → the CLI isn't installed. On Windows x64, tell the user to install the EdgeSpeak desktop app, which ships the CLI. On macOS Apple Silicon or Linux x86_64, use
curl -fsSL https://edgespeak.com/install.sh | sh(self-contained, no desktop app needed; on Linux the installer auto-detects NVIDIA GPUs and installs a CUDA-enabled runtime). - License not activated / locked → run
edgespeak-cli loginto sign in via the browser (purchased accounts activate this machine directly, new accounts start a free 7-day trial; signing in also replaces an anonymous trial with your account credentials), oredgespeak-cli activate <KEY>with an existing key. No account and no browser at hand?edgespeak-cli trialstarts an instant anonymous 7-day trial (device-bound, one per device). (Ifedgespeak-cli trial --helpdescribes a browser sign-in, the installed CLI predates the instant trial — runedgespeak-cli updatefirst.) Non-interactive runs (agents, pipes, CI) fail fast withlicense_requiredinstead of prompting. - Gateway not running (standalone) → this is fine;
speechwill launch the bundled on-device engine itself.
- Command not found → the CLI isn't installed. On Windows x64, tell the user to install the EdgeSpeak desktop app, which ships the CLI. On macOS Apple Silicon or Linux x86_64, use
-
Optionally pick a voice. List the local voice library (JSON to stdout):
edgespeak-cli voices listEach entry has an
id(builtin:<slug>for presets,user:<uuid>for user-created voices), localizednames/descriptions(en-US,zh-CN),supported_languages, and acompatibilityarray telling which local models can use it. Pick an id whose compatibility for the chosen model is"ready". -
Synthesize:
edgespeak-cli speech "<text>" -o out.wav [options] # Voice design: invent a voice from a text description (no reference audio needed) edgespeak-cli speech "<text>" -o out.wav \ -m qwen3-tts-1.7b-voice-design --voice builtin:auto \ --instructions "a warm, calm narrator with a low voice"The WAV is written to
-oand a JSON result is printed to stdout. Engine logs go to stderr — when scripting, parse stdout only.Do not silently overwrite an existing output file.
speechclobbers an existing-oWAV without warning. If the requested path already exists and the user did not explicitly ask to overwrite or regenerate that exact file, confirm with the user first (or agree on a different path); if you cannot ask, write to a new non-conflicting path and say so in your answer.
Option map
| User asks for | Use with speech |
Notes |
|---|---|---|
| A specific voice | --voice builtin:<id> or --voice user:<uuid> |
Default builtin:auto lets the engine pick. OpenAI voice aliases (e.g. alloy) are also accepted. |
| Speaking style ("cheerful", "slow news anchor tone", …) | --instructions "<style>" |
Free-form style text. Conflicts with --disable-style. |
| Ignore the style saved with the voice | --disable-style |
Explicitly disables the voice's default style. |
| Faster / slower speech | --speed <N> |
Default 1.0. The local model may support a narrower range than OpenAI's 0.25–4.0. |
| Language hint | --language zh-CN or --language en-US |
Selects the internal reference for the voice. |
| Reproducible output | --seed <N> |
Non-negative. Same seed + same inputs → same audio. The seed actually used is reported in the result JSON (seed_used). |
| A different local model | -m omnivoice / qwen3-tts-0.6b-base / qwen3-tts-1.7b-voice-design |
The supported model ids for speech (default omnivoice, same as the app). Other ids — including any extra ids an installed CLI's --help may list — are unavailable and fail. |
| Design a new voice from a description | -m qwen3-tts-1.7b-voice-design --voice builtin:auto --instructions "<voice description>" |
Voice design invents a voice from free-form text. It requires --voice builtin:auto and --instructions. |
| Generation quality knobs | --guidance-scale <0–5>, --inference-steps <1–64> |
Omit either for the model default. |
| Run on a specific compute backend | --device cpu|cuda|cuda:<N>|metal|auto |
Case-insensitive; metal is macOS, gpu means Metal on macOS / CUDA elsewhere. Standalone mode only — with the app gateway reachable the flag errors explicitly; an unavailable backend also errors rather than silently falling back. |
Input is limited to 4096 characters per call (OpenAI input limit). For longer text, split it into ≤4096-character parts at natural boundaries (paragraphs/sentences), synthesize each part, and concatenate the WAVs afterwards (ffmpeg -f concat). Keep the same --voice and --seed across parts for a consistent result.
Result JSON (stdout)
Real output shape — long input is synthesized in chunks automatically and reported per chunk:
{
"output_path": "/abs/path/out.wav",
"format": "wav",
"size_bytes": 215084,
"sample_rate": 48000,
"duration_seconds": 2.24,
"seed_used": 2711317933,
"infer_seconds": 12.55,
"warnings": [],
"chunks": [
{ "index": 0, "character_count": 21, "duration_seconds": 2.24,
"seed_used": 2711317933, "infer_seconds": 12.55, "warnings": [] }
]
}
sample_rate comes from the model (do not assume a fixed rate). Surface non-empty warnings to the user.
Voice management
# List all voices (JSON)
edgespeak-cli voices list
# Clone a voice from reference audio + its exact transcript
edgespeak-cli voices add ref.wav --ref-text "<exact words spoken in ref.wav>" \
--name "My voice" [--language zh-CN] [--speaker-description "<optional description>"] --consent
# Delete a user-created voice (by id or exact name); built-in voices cannot be deleted
edgespeak-cli voices delete user:<uuid>
edgespeak-cli voices delete "My voice"
--consentis required forvoices add: it asserts the user has permission to use the reference recording. Never add a voice without the user explicitly confirming they have the right to use that recording; refuse to clone third-party voices without consent.--ref-textmust be the exact transcript of the reference audio — a mismatch degrades cloning quality.voices deletewith a name requires an exact, unique match; ambiguous or unknown names fail with a clear error.- After adding, use the returned/listed
user:<uuid>id withspeech --voice.
MCP and API equivalents
- Through the EdgeSpeak MCP server (
edgespeak-cli mcpor the app's MCP endpoint), the same capabilities are exposed as tools:edgespeak_generate_speech,edgespeak_list_voices,edgespeak_add_voice,edgespeak_delete_voice. Prefer MCP tools when an EdgeSpeak MCP server is already configured. - With the app running, the local gateway also serves OpenAI-compatible
POST /v1/audio/speech. Stay with the CLI unless the user specifically needs raw API access.
Boundaries / gotchas (read this)
- Requires a current
edgespeak-cli(see the version compatibility note up top): older versions lackspeech/voicesentirely, and only the newest builds add the Qwen3-TTS model ids and--device. When in doubt,edgespeak-cli updatefirst. - First use needs activation (
edgespeak-cli loginfor browser sign-in — it also upgrades an anonymous trial to your account,activate <KEY>with an existing key, oredgespeak-cli trialfor an instant anonymous 7-day trial), same as the other EdgeSpeak skills. Surface license errors; don't work around them. Non-interactive runs fail fast instead of prompting. - Three model ids work here:
omnivoice(default),qwen3-tts-0.6b-base, andqwen3-tts-1.7b-voice-design— other ids are unavailable throughspeechand fail, even if an installed CLI's--helpstill lists them. Voice design (qwen3-tts-1.7b-voice-design) requires--voice builtin:autoplus--instructions; the app's Broadcast workspace offers the same models with richer UI workflows. - If synthesis fails with HTTP 400
unsupported_auto_voice: this gateway build does not accept the CLI's default--voice builtin:auto. Recover by runningedgespeak-cli voices listand passing an explicit voice (--voice builtin:<id>); when the user has no preference, prefer listing voices and choosing one upfront so the default is never relied on. - Synthesis is slower than real time on most machines (a short sentence can take ~10–20 s in standalone mode; the first run may also decrypt/load or download the model). Don't assume it hung.
- Output is WAV only. If the user wants MP3/M4A/OGG, synthesize WAV first and convert with
ffmpegafterwards. - stdout vs stderr: the result JSON is on stdout; engine progress/logs are on stderr. Never parse stderr.
- If
speecherrors, show the error — do not fabricate audio or claim success without the output file existing.
Version History
- d29c2a2 Current 2026-07-30 20:28


