Generate natural speech from text using Crazyrouter — OpenAI-compatible TTS API.
| Voice | Style |
|---|---|
| ------- | ------- |
alloy | Neutral, balanced |
echo | Warm, conversational |
fable | Expressive, storytelling |
onyx | Deep, authoritative |
nova | Friendly, upbeat |
shimmer | Soft, gentle |
Agent Execution:
SKILL_DIR = this SKILL.md file's directory${SKILL_DIR}/scripts/main.mjs[ -n "${CRAZYROUTER_API_KEY}" ] && echo "key_present" || echo "not_set"
| Result | Action |
|---|---|
| -------- | -------- |
key_present | Continue |
not_set | Ask user to set CRAZYROUTER_API_KEY. Get key at https://crazyrouter.com |
# Basic TTS
node ${SKILL_DIR}/scripts/main.mjs --text "Hello world" --output hello.mp3
# Choose voice
node ${SKILL_DIR}/scripts/main.mjs --text "Welcome to Crazyrouter" --output welcome.mp3 --voice nova
# HD quality
node ${SKILL_DIR}/scripts/main.mjs --text "Premium audio" --output hd.mp3 --model tts-1-hd
# Read from file
node ${SKILL_DIR}/scripts/main.mjs --input article.txt --output article.mp3
# Adjust speed
node ${SKILL_DIR}/scripts/main.mjs --text "Slow and clear" --output slow.mp3 --speed 0.8
| Option | Description | Default |
|---|---|---|
| -------- | ------------- | --------- |
--text | Text to speak | — |
--input | Read text from file | — |
--output | Output audio file (required) | — |
--voice | Voice selection | alloy |
--model | tts-1 or tts-1-hd | tts-1 |
--speed | Speed (0.25-4.0) | 1.0 |
--format | mp3, opus, aac, flac | mp3 |
共 1 个版本