Voice Synthesis
Generate voice audio using Google Cloud TTS with enhancement
npx skills add majiayu000/claude-skill-registry --skill voice-synthesis-randysalars-dreamweaving-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Voice Synthesis Skill > **The Voice Is the Heart of the Journey** This skill handles converting SSML scripts to voice audio with psychoacoustic enhancement. --- ## Purpose Generate high-quality, hypnotic voice audio from SSML scripts using Google Cloud Text-to-Speech. --- ## Production Voice Standard **Always use**: `en-US-Neural2-H` (bright female) | Parameter | Value | |-----------|-------| | Voice ID | `en-US-Neural2-H` | | Speaking Rate | 0.88x (applied by TTS engine) | | Pitch | 0 semitones (base) | | Enhancement | Always enabled | --- ## Canonical Command ```bash python3 scripts/core/generate_voice.py \ sessions/{session}/working_files/script_voice_clean.ssml \ sessions/{session}/output ``` This automatically: - Uses production voice (`en-US-Neural2-H`) - Applies 0.88x speaking rate baseline - Generates both raw and enhanced output - Outputs `voice.mp3` and `voice_enhanced.mp3` --- ## Voice Options Reference ### Female Voices (Recommended for Hypnosis) | Voice ID | Character | Best For | |----------|-----------|----------| | `en-US-Neural2-H` | Bright, clear | **Production standard** | | `en-US-Neural2-E` | Deep, resonant | Darker themes, shadow work | | `en-US-Neural2-C` |
- Purpose
- Production Voice Standard
- Canonical Command
- Voice Options Reference
- Female Voices (Recommended for Hypnosis)
- Male Voices
- Output Files
- Voice Enhancement
- Chunking System
- Duration Verification
- Prerequisites
- Troubleshooting
- Integration with Pipeline
- Quality Checklist
python3 scripts/core/generate_voice.py \
Check duration
ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 \
source venv/bin/activate
echo $GOOGLE_APPLICATION_CREDENTIALS
python3 scripts/utilities/validate_ssml.py sessions/{session}/working_files/script_voice_clean.ssml
grep -c "\[SFX:" sessions/{session}/working_files/script_voice_clean.ssmlWhat does the Voice Synthesis skill do?
Generate voice audio using Google Cloud TTS with enhancement
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill voice-synthesis-randysalars-dreamweaving-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
