multiAI Summary Pending
tts-skill
Multi-engine text-to-speech skill. Supports Qwen3-TTS local voice cloning, VoiceCraft online TTS, and OpenAI TTS.
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/tts-skill/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/tabortao/tts-skill/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/tts-skill/SKILL.mdinside your project - Restart your AI agent ā it will auto-discover the skill
How tts-skill Compares
| Feature / Agent | tts-skill | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Multi-engine text-to-speech skill. Supports Qwen3-TTS local voice cloning, VoiceCraft online TTS, and OpenAI TTS.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# šļø TTS-Skill ā Multi-Engine Text-to-Speech TTS-Skill provides a single entrypoint for generating speech using multiple backends, with consistent output naming and progress feedback for long-running jobs. ## Engines - **qwen3-tts**: local voice cloning with a reference audio + transcript - **edge-tts**: online voices with speed/pitch/style controls - **openai-tts**: OpenAI speech generation via API ## Command Syntax ```text /tts-skill [engine] [text] --voice [voice-keyword] [other options] ``` If you use the Python entrypoint: ```bash python tts-skill.py [engine] [text] --voice [voice-keyword] ``` ## Text Input Pass text as a positional argument, or use `--text-file` / `-f` to read from a file. Example: ```bash python tts-skill.py qwen3-tts --text-file "input\\text.txt" --voice åÆå°å°ę ``` Notes: - `--text-file` supports relative and absolute paths; relative paths are resolved from your current working directory - If both positional text and `--text-file` are provided, `--text-file` takes priority - UTF-8 is recommended (UTF-8 BOM is supported); on decode error it falls back to GBK You can also call engine scripts directly: ```bash python engines/qwen3-tts-cli.py --text-file "input\\text.txt" --voice åÆå°å°ę python engines/edge-tts-cli.py --text-file "input\\text.txt" --voice xiaoxiao python engines/openai-tts-cli.py --text-file "input\\text.txt" --voice alloy ``` ## Local Voice Assets (Qwen3-TTS) To add a clone voice, put a matching pair of files in `assets/`: ```text assets/Lei.wav assets/Lei.txt ``` Supported audio formats: `.wav`, `.mp3`, `.m4a`, `.flac`. Then: ```bash python tts-skill.py qwen3-tts "ęµčÆęę¬" --voice Lei ``` ## Output If `--output` is not provided: - Output directory: `output/` - Filename pattern: `YYYYMMDD_HHMMSS_<first-6-chars>.<ext>` ## Progress & Timing (Qwen3-TTS) Qwen3-TTS jobs print a live progress bar with ETA. After completion, `tts-skill.py` prints: - total runtime - total chars and Chinese chars - average seconds per Chinese character (or per char if no Chinese) ## Project Layout ```text tts-skill/ āāā .trae/ ā āāā plans/ āāā assets/ ā āāā Lei.txt ā āāā åÆå°å°ę.txt ā āāā åøéčØ.txt ā āāā 赵俔.txt āāā engines/ ā āāā edge-tts-cli.py ā āāā edge-tts.config ā āāā openai-tts-cli.py ā āāā openai-tts.config ā āāā qwen3-tts-cli.py ā āāā qwen3-tts.config āāā input/ ā āāā text.txt āāā output/ āāā tts-skill.py āāā INSTALL.md āāā INSTALL.zh-CN.md āāā README.md āāā README.zh-CN.md āāā SKILL.md āāā SKILL.zh-CN.md ``` ## Chinese Spec See [SKILL.zh-CN.md](SKILL.zh-CN.md).