← All skills
Tencent SkillHub Β· Developer Tools

mmEasyVoice

Simple text-to-speech skill using MiniMax Voice API. Converts text to audio with customizable voice selection. Use for generating speech audio from text.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Simple text-to-speech skill using MiniMax Voice API. Converts text to audio with customizable voice selection. Use for generating speech audio from text.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, check_environment.py, mmvoice.py, reference/audio-guide.md, reference/getting-started.md, reference/troubleshooting.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

MiniMax Easy Voice

Simple text-to-speech skill powered by MiniMax Voice API. Converts any text into natural-sounding audio with customizable voice selection.

[Step 1] Preparation

IMPORTANT: Before using this skill, always verify the environment: python check_environment.py If API key is not set: export MINIMAX_VOICE_API_KEY="your-api-key-here" Requirements: Python 3.8+ MINIMAX_VOICE_API_KEY environment variable (required) FFmpeg (optional, for audio merging/conversion)

[Step 2] Generate speech audio from text

Convert any text to speech in one command: # Default voice (male-qn-qingse) python mmvoice.py tts "Hello, this is a test." -o test.mp3 # Chinese text python mmvoice.py tts "δ½ ε₯½οΌŒθΏ™ζ˜―δΈ€δΈͺ桋试。" -o test_cn.mp3 # Specify a different voice by "-v voice_id" python mmvoice.py tts "Hello world" -v female-shaonv -o hello.mp3 # Specify output path python mmvoice.py tts "Your text" -o /path/to/output.mp3 Required parameters: text: The text you want to convert to speech -o OUTPUT: Output audio file path (required) Optional parameters: -v VOICE_ID: Voice to use (default: male-qn-qingse)

Usage Details

Text length limits: Up to 10,000 characters per request For longer text, split into multiple requests and merge later Pause insertion: Use <#x#> where x = pause duration in seconds Example: "Hello<#1.5#>world" = 1.5 second pause between words Range: 0.01 to 99.99 seconds Emotion matching: speech-2.8 models automatically match emotions to your text content

Voice Selection

Choose the right voice for your content by consulting the voice catalog: # List all available voices python mmvoice.py list-voices Voice catalog: reference/voice_catalog.md Contains: All available system voices (male, female) Voice characteristics and recommended use cases How to select the right voice for your content

Voice Management

List available voices: python mmvoice.py list-voices Clone a voice from audio sample: python mmvoice.py clone audio_file.mp3 --voice-id my-custom-voice Design a voice from description: python mmvoice.py design "A warm, gentle female voice" --voice-id designed-voice

Audio Processing

Merge multiple audio files: python mmvoice.py merge file1.mp3 file2.mp3 file3.mp3 -o combined.mp3 Convert audio format: python mmvoice.py convert input.wav -o output.mp3 --format mp3

Reference Documents

Open these when needed for more details: || Document | When to Use | ||----------|-------------| || reference/voice_catalog.md | Choosing a voice_id | || reference/getting-started.md | Environment setup | || reference/audio-guide.md | Audio processing | || reference/voice-guide.md | Voice cloning and design | || reference/troubleshooting.md | Common issues and solutions |

Troubleshooting

Common issues: API key not set: Run export MINIMAX_VOICE_API_KEY="your-key" FFmpeg missing: Install with brew install ffmpeg (macOS) or sudo apt install ffmpeg (Ubuntu) Voice not found: Use python mmvoice.py list-voices to see available voices Run environment check: python check_environment.py See reference/troubleshooting.md for more solutions.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs2 Scripts
  • SKILL.md Primary doc
  • reference/audio-guide.md Docs
  • reference/getting-started.md Docs
  • reference/troubleshooting.md Docs
  • check_environment.py Scripts
  • mmvoice.py Scripts