Gemini Text-to-Speech
Generate natural-sounding speech from text using Gemini's TTS models through executable scripts with support for multiple voices and multi-speaker conversations.
When to Use This Skill
Use this skill when you need to:
- Convert text to natural speech
- Create audio for podcasts, audiobooks, or videos
- Generate multi-speaker conversations
- Stream audio for long content
- Choose from multiple voice options
- Create accessible audio content
- Generate voiceovers for presentations
- Batch convert text to audio files
Available Scripts
scripts/tts.js
Purpose: Convert text to speech using Gemini TTS models
When to use:
- Any text-to-speech conversion
- Multi-speaker conversation generation
- Streaming audio for long texts
- Voiceovers for content creation
- Accessible audio generation
Key parameters:
| Parameter |
Description |
Example |
text |
Text to convert (required) |
"Hello, world!" |
--voice, -v |
Voice name |
Kore |
--output, -o |
Base name for output file |
welcome |
--output-dir |
Output directory for audio |
audio/ |
--no-timestamp |
Disable auto timestamp |
Flag |
--model, -m |
TTS model |
gemini-2.5-flash-preview-tts |
--stream, -s |
Enable streaming |
Flag |
--speakers |
Multi-speaker mapping |
"Joe:Kore,Jane:Puck" |
Output: WAV audio file path
Workflows
Workflow 1: Basic Text-to-Speech
node scripts/tts.js "Hello, world! Have a wonderful day."
- Best for: Quick audio generation, simple messages
- Voice:
Kore (default, clear and professional)
- Output:
audio/tts_output_YYYYMMDD_HHMMSS.wav (auto timestamp)
Workflow 2: Choose Different Voice
node scripts/tts.js "Welcome to our podcast about technology trends" --voice Puck --output welcome
- Best for: Friendly, conversational content
- Voice options: Kore, Puck, Charon, Fenrir, Aoede, Zephyr, Sulafat
- Output:
audio/welcome_YYYYMMDD_HHMMSS.wav
Workflow 3: Multi-Speaker Conversation
node scripts/tts.js "TTS the following conversation:
Joe: How's it going today?
Jane: Not too bad, how about you?
Joe: I'm working on a new project.
Jane: Sounds exciting, tell me more!" --speakers "Joe:Kore,Jane:Puck" --output conversation
- Best for: Dialogues, interviews, role-playing content
- Format: Marked conversation with speaker names
- Script automatically routes text to appropriate voices
- Output:
audio/conversation_YYYYMMDD_HHMMSS.wav
Workflow 4: Long Content with Streaming
node scripts/tts.js "This is a very long text that would benefit from streaming..." --stream --output long-form
- Best for: Podcasts, audiobooks, long articles
- Streaming: Processes audio in chunks for long texts
- Output:
audio/long-form_YYYYMMDD_HHMMSS.wav
Workflow 5: Professional Voiceover
node scripts/tts.js "Welcome to our quarterly earnings presentation. Today we'll discuss our growth metrics and future plans." --voice Charon --output voiceover
- Best for: Corporate content, presentations, formal announcements
- Voice:
Charon (deep, authoritative)
- Use when: Professional, serious tone required
Workflow 6: Custom Output Directory
node scripts/tts.js "Save to specific folder." --output-dir ./my-projects/podcasts/ --output episode1
- Best for: Organized project structures
- Directory created automatically if it doesn't exist
- Output:
./my-projects/podcasts/episode1_YYYYMMDD_HHMMSS.wav
Workflow 7: Content Creation Pipeline (Text → Audio)
# 1. Generate script (gemini-text skill)
node skills/gemini-text/scripts/generate.js "Write a 2-minute podcast intro about sustainable energy"
# 2. Generate audio (this skill)
node scripts/tts.js "[Paste generated script]" --voice Fenrir --output podcast-intro
# 3. Use in video or podcast
- Best for: Podcasts, audiobooks, video narration
- Combines with: gemini-text for script generation
Workflow 8: Accessible Content
node scripts/tts.js "Welcome to our accessible website. This audio describes our main navigation options." --voice Aoede --output accessibility
- Best for: Web accessibility, screen reader alternatives
- Voice:
Aoede (melodic, pleasant)
- Use when: Making content accessible to visually impaired users
Workflow 9: Educational Content
node scripts/tts.js "Chapter 1: Introduction to Quantum Computing. Let's explore the fundamental principles..." --voice Zephyr --output chapter1
- Best for: Educational materials, tutorials, e-learning
- Voice:
Zephyr (light, airy)
- Combines well with: gemini-text for content generation
Workflow 10: Disable Timestamp
node scripts/tts.js "Fixed filename." --output my-audio --no-timestamp
- Best for: When you want complete control over filename
- Output:
audio/my-audio.wav (no timestamp)
- Use when: Generating files for specific naming schemes
Parameters Reference
Model Selection
| Model |
Quality |
Speed |
Best For |
gemini-2.5-flash-preview-tts |
Good |
Fast |
General use, high volume |
gemini-2.5-pro-preview-tts |
Higher |
Slower |
Premium content, voiceovers |
Voice Selection
| Voice |
Characteristics |
Best For |
| Kore |
Clear, professional |
Announcements, general purpose (default) |
| Puck |
Friendly, conversational |
Casual content, interviews |
| Charon |
Deep, authoritative |
Corporate, serious content |
| Fenrir |
Warm, expressive |
Storytelling, narratives |
| Aoede |
Melodic, pleasant |
Educational, accessibility |
| Zephyr |
Light, airy |
Gentle content, tutorials |
| Sulafat |
Neutral, balanced |
Documentaries, factual content |
Audio Format
| Specification |
Value |
| Format |
WAV (PCM) |
| Sample rate |
24000 Hz |
| Channels |
1 (mono) |
| Bit depth |
16-bit |
Token Limits
| Limit |
Type |
Description |
| 8,192 |
Input |
Maximum input text tokens |
| 16,384 |
Output |
Maximum output audio tokens |
Output Interpretation
Audio File
- Format: WAV (compatible with most players)
- Mono channel (single audio track)
- Sample rate: 24000 Hz (broadcast quality)
- Can be converted to MP3/AAC if needed
Multi-Speaker Files
- Single WAV file with multiple voices
- Voices separated by timing within file
- Use
--speakers parameter to map speakers to voices
Streaming Output
- Audio processed in chunks during generation
- Script shows "Streaming audio..." message
- Useful for very long texts or real-time applications
Common Issues
"google-genai not installed"
npm install @google/genai@latest dotenv@latest
"Voice name not found"
- Check voice name spelling
- Use available voices: Kore, Puck, Charon, Fenrir, Aoede, Zephyr, Sulafat
- Voice names are case-sensitive
"No audio generated"
- Check text is not empty
- Verify text doesn't exceed token limit (8,192)
- Try shorter text segments
- Check API quota limits
"Multi-speaker format error"
- Format:
SpeakerName:VoiceName,Speaker2:Voice2
- Separate speakers with commas
- Use colon between speaker and voice
- Example:
"Joe:Kore,Jane:Puck,Host:Charon"
"Output file already exists"
- Script will overwrite existing files
- Change
--output filename to avoid conflicts
- Use unique names for batch generation
Audio quality issues
- Check input text for unusual characters
- Try different voice for better pronunciation
- Consider splitting long text into smaller segments
- Verify audio playback software compatibility
Best Practices
Voice Selection
- Kore: General purpose, clear articulation
- Puck: Conversational, engaging tone
- Charon: Professional, authoritative
- Fenrir: Emotional, storytelling
- Aoede: Soft, gentle for accessibility
- Zephyr: Educational, clear explanations
Text Preparation
- Use natural language and punctuation
- Include pauses with commas and periods
- Spell out difficult words if needed
- Break very long text into logical segments
- Add speaker labels for multi-speaker content
Performance Optimization
- Use streaming for very long texts
- Generate shorter segments for better control
- Use flash model for faster generation
- Batch process multiple files for efficiency
Quality Tips
- Test different voices for your content type
- Use appropriate pacing with punctuation
- Consider context when selecting voice
- Listen to output before final use
- Multi-speaker requires clear speaker labeling
Use Cases by Voice
| Voice |
Ideal Use Cases |
| Kore |
Announcements, navigation, general info |
| Puck |
Podcasts, interviews, casual content |
| Charon |
Corporate, news, formal presentations |
| Fenrir |
Audiobooks, stories, emotional content |
| Aoede |
Accessibility, educational, gentle content |
| Zephyr |
Tutorials, explanations, guides |
| Sulafat |
Documentaries, factual presentations |
Related Skills
- gemini-text: Generate scripts and text for TTS
- gemini-image: Create visuals to accompany audio
- gemini-batch: Process multiple TTS requests efficiently
- gemini-files: Upload audio files for processing
Quick Reference
# Basic
node scripts/tts.js "Your text here"
# Custom voice
node scripts/tts.js "Your text" --voice Puck --output audio.wav
# Multi-speaker
node scripts/tts.js "Joe: Hi. Jane: Hello!" --speakers "Joe:Kore,Jane:Puck"
# Streaming
node scripts/tts.js "Long text..." --stream --output long.wav
# Professional
node scripts/tts.js "Corporate announcement" --voice Charon
Reference
1---2name: gemini-tts3description: Generate speech from text using Google Gemini TTS models via scripts/. Use for text-to-speech, audio generation, voice synthesis, multi-speaker conversations, and creating audio content. Supports multiple voices and streaming. Triggers on "text to speech", "TTS", "generate audio", "voice synthesis", "speak this text".4license: MIT5---67# Gemini Text-to-Speech89Generate natural-sounding speech from text using Gemini's TTS models through executable scripts with support for multiple voices and multi-speaker conversations.1011## When to Use This Skill1213Use this skill when you need to:14- Convert text to natural speech15- Create audio for podcasts, audiobooks, or videos16- Generate multi-speaker conversations17- Stream audio for long content18- Choose from multiple voice options19- Create accessible audio content20- Generate voiceovers for presentations21- Batch convert text to audio files2223## Available Scripts2425### scripts/tts.js26**Purpose**: Convert text to speech using Gemini TTS models2728**When to use**:29- Any text-to-speech conversion30- Multi-speaker conversation generation31- Streaming audio for long texts32- Voiceovers for content creation33- Accessible audio generation3435**Key parameters**:36| Parameter | Description | Example |37|-----------|-------------|---------|38| `text` | Text to convert (required) | `"Hello, world!"` |39| `--voice`, `-v` | Voice name | `Kore` |40| `--output`, `-o` | Base name for output file | `welcome` |41| `--output-dir` | Output directory for audio | `audio/` |42| `--no-timestamp` | Disable auto timestamp | Flag |43| `--model`, `-m` | TTS model | `gemini-2.5-flash-preview-tts` |44| `--stream`, `-s` | Enable streaming | Flag |45| `--speakers` | Multi-speaker mapping | `"Joe:Kore,Jane:Puck"` |4647**Output**: WAV audio file path4849## Workflows5051### Workflow 1: Basic Text-to-Speech52```bash53node scripts/tts.js "Hello, world! Have a wonderful day."54```55- Best for: Quick audio generation, simple messages56- Voice: `Kore` (default, clear and professional)57- Output: `audio/tts_output_YYYYMMDD_HHMMSS.wav` (auto timestamp)5859### Workflow 2: Choose Different Voice60```bash61node scripts/tts.js "Welcome to our podcast about technology trends" --voice Puck --output welcome62```63- Best for: Friendly, conversational content64- Voice options: Kore, Puck, Charon, Fenrir, Aoede, Zephyr, Sulafat65- Output: `audio/welcome_YYYYMMDD_HHMMSS.wav`6667### Workflow 3: Multi-Speaker Conversation68```bash69node scripts/tts.js "TTS the following conversation:70Joe: How's it going today?71Jane: Not too bad, how about you?72Joe: I'm working on a new project.73Jane: Sounds exciting, tell me more!" --speakers "Joe:Kore,Jane:Puck" --output conversation74```75- Best for: Dialogues, interviews, role-playing content76- Format: Marked conversation with speaker names77- Script automatically routes text to appropriate voices78- Output: `audio/conversation_YYYYMMDD_HHMMSS.wav`7980### Workflow 4: Long Content with Streaming81```bash82node scripts/tts.js "This is a very long text that would benefit from streaming..." --stream --output long-form83```84- Best for: Podcasts, audiobooks, long articles85- Streaming: Processes audio in chunks for long texts86- Output: `audio/long-form_YYYYMMDD_HHMMSS.wav`8788### Workflow 5: Professional Voiceover89```bash90node scripts/tts.js "Welcome to our quarterly earnings presentation. Today we'll discuss our growth metrics and future plans." --voice Charon --output voiceover91```92- Best for: Corporate content, presentations, formal announcements93- Voice: `Charon` (deep, authoritative)94- Use when: Professional, serious tone required9596### Workflow 6: Custom Output Directory97```bash98node scripts/tts.js "Save to specific folder." --output-dir ./my-projects/podcasts/ --output episode199```100- Best for: Organized project structures101- Directory created automatically if it doesn't exist102- Output: `./my-projects/podcasts/episode1_YYYYMMDD_HHMMSS.wav`103104### Workflow 7: Content Creation Pipeline (Text → Audio)105```bash106# 1. Generate script (gemini-text skill)107node skills/gemini-text/scripts/generate.js "Write a 2-minute podcast intro about sustainable energy"108109# 2. Generate audio (this skill)110node scripts/tts.js "[Paste generated script]" --voice Fenrir --output podcast-intro111112# 3. Use in video or podcast113```114- Best for: Podcasts, audiobooks, video narration115- Combines with: gemini-text for script generation116117### Workflow 8: Accessible Content118```bash119node scripts/tts.js "Welcome to our accessible website. This audio describes our main navigation options." --voice Aoede --output accessibility120```121- Best for: Web accessibility, screen reader alternatives122- Voice: `Aoede` (melodic, pleasant)123- Use when: Making content accessible to visually impaired users124125### Workflow 9: Educational Content126```bash127node scripts/tts.js "Chapter 1: Introduction to Quantum Computing. Let's explore the fundamental principles..." --voice Zephyr --output chapter1128```129- Best for: Educational materials, tutorials, e-learning130- Voice: `Zephyr` (light, airy)131- Combines well with: gemini-text for content generation132133### Workflow 10: Disable Timestamp134```bash135node scripts/tts.js "Fixed filename." --output my-audio --no-timestamp136```137- Best for: When you want complete control over filename138- Output: `audio/my-audio.wav` (no timestamp)139- Use when: Generating files for specific naming schemes140141## Parameters Reference142143### Model Selection144145| Model | Quality | Speed | Best For |146|-------|---------|-------|----------|147| `gemini-2.5-flash-preview-tts` | Good | Fast | General use, high volume |148| `gemini-2.5-pro-preview-tts` | Higher | Slower | Premium content, voiceovers |149150### Voice Selection151152| Voice | Characteristics | Best For |153|-------|----------------|----------|154| **Kore** | Clear, professional | Announcements, general purpose (default) |155| **Puck** | Friendly, conversational | Casual content, interviews |156| **Charon** | Deep, authoritative | Corporate, serious content |157| **Fenrir** | Warm, expressive | Storytelling, narratives |158| **Aoede** | Melodic, pleasant | Educational, accessibility |159| **Zephyr** | Light, airy | Gentle content, tutorials |160| **Sulafat** | Neutral, balanced | Documentaries, factual content |161162### Audio Format163164| Specification | Value |165|--------------|-------|166| Format | WAV (PCM) |167| Sample rate | 24000 Hz |168| Channels | 1 (mono) |169| Bit depth | 16-bit |170171### Token Limits172173| Limit | Type | Description |174|-------|------|-------------|175| 8,192 | Input | Maximum input text tokens |176| 16,384 | Output | Maximum output audio tokens |177178## Output Interpretation179180### Audio File181- Format: WAV (compatible with most players)182- Mono channel (single audio track)183- Sample rate: 24000 Hz (broadcast quality)184- Can be converted to MP3/AAC if needed185186### Multi-Speaker Files187- Single WAV file with multiple voices188- Voices separated by timing within file189- Use `--speakers` parameter to map speakers to voices190191### Streaming Output192- Audio processed in chunks during generation193- Script shows "Streaming audio..." message194- Useful for very long texts or real-time applications195196## Common Issues197198### "google-genai not installed"199```bash200npm install @google/genai@latest dotenv@latest201```202203### "Voice name not found"204- Check voice name spelling205- Use available voices: Kore, Puck, Charon, Fenrir, Aoede, Zephyr, Sulafat206- Voice names are case-sensitive207208### "No audio generated"209- Check text is not empty210- Verify text doesn't exceed token limit (8,192)211- Try shorter text segments212- Check API quota limits213214### "Multi-speaker format error"215- Format: `SpeakerName:VoiceName,Speaker2:Voice2`216- Separate speakers with commas217- Use colon between speaker and voice218- Example: `"Joe:Kore,Jane:Puck,Host:Charon"`219220### "Output file already exists"221- Script will overwrite existing files222- Change `--output` filename to avoid conflicts223- Use unique names for batch generation224225### Audio quality issues226- Check input text for unusual characters227- Try different voice for better pronunciation228- Consider splitting long text into smaller segments229- Verify audio playback software compatibility230231## Best Practices232233### Voice Selection234- **Kore**: General purpose, clear articulation235- **Puck**: Conversational, engaging tone236- **Charon**: Professional, authoritative237- **Fenrir**: Emotional, storytelling238- **Aoede**: Soft, gentle for accessibility239- **Zephyr**: Educational, clear explanations240241### Text Preparation242- Use natural language and punctuation243- Include pauses with commas and periods244- Spell out difficult words if needed245- Break very long text into logical segments246- Add speaker labels for multi-speaker content247248### Performance Optimization249- Use streaming for very long texts250- Generate shorter segments for better control251- Use flash model for faster generation252- Batch process multiple files for efficiency253254### Quality Tips255- Test different voices for your content type256- Use appropriate pacing with punctuation257- Consider context when selecting voice258- Listen to output before final use259- Multi-speaker requires clear speaker labeling260261### Use Cases by Voice262263| Voice | Ideal Use Cases |264|-------|-----------------|265| Kore | Announcements, navigation, general info |266| Puck | Podcasts, interviews, casual content |267| Charon | Corporate, news, formal presentations |268| Fenrir | Audiobooks, stories, emotional content |269| Aoede | Accessibility, educational, gentle content |270| Zephyr | Tutorials, explanations, guides |271| Sulafat | Documentaries, factual presentations |272273## Related Skills274275- **gemini-text**: Generate scripts and text for TTS276- **gemini-image**: Create visuals to accompany audio277- **gemini-batch**: Process multiple TTS requests efficiently278- **gemini-files**: Upload audio files for processing279280## Quick Reference281282```bash283# Basic284node scripts/tts.js "Your text here"285286# Custom voice287node scripts/tts.js "Your text" --voice Puck --output audio.wav288289# Multi-speaker290node scripts/tts.js "Joe: Hi. Jane: Hello!" --speakers "Joe:Kore,Jane:Puck"291292# Streaming293node scripts/tts.js "Long text..." --stream --output long.wav294295# Professional296node scripts/tts.js "Corporate announcement" --voice Charon297```298299## Reference300301- See `references/voices.md` for complete voice documentation302- Get API key: https://aistudio.google.com/apikey303- Documentation: https://ai.google.dev/gemini-api/docs/text-to-speech304- Sample rate: 24000 Hz standard for most applications