| name | mmEasyVoice |
| description | Simple text-to-speech skill using MiniMax Voice API. Converts text to audio with customizable voice selection. Use for generating speech audio from text. |
MiniMax Easy Voice
Simple text-to-speech skill powered by MiniMax Voice API. Converts any text into natural-sounding audio with customizable voice selection.
Usage
[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:
python mmvoice.py tts "Hello, this is a test." -o test.mp3
python mmvoice.py tts "你好,这是一个测试。" -o test_cn.mp3
python mmvoice.py tts "Hello world" -v female-shaonv -o hello.mp3
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)