- name
- bailian-tts
- description
- Generate speech audio with 阿里云百炼 TTS via the
bailian-clinpm package. Use when users ask to convert text to voice, choose voices/languages, batch-generate narration, or troubleshoot 百炼 TTS setup (npm install, API key, region, output format/path).
Bailian TTS
Use this skill to produce speech audio from text with @hackerpl/bailian-cli.
Quick Workflow
- Check CLI availability.
- Check
BAILIAN_API_KEY. - If key is missing, guide user to prepare one in 阿里云百炼.
- Run
bailian ttswith requested voice/language/style. - Return output path (or base64 when requested). Default audio output directory:
~/.openclaw/media/audio.
1) Check and install CLI
Run:
npm ls -g --depth=0 @hackerpl/bailian-cliIf missing, install:
npm i -g @hackerpl/bailian-cli2) Check API key
Run:
[ -n "$BAILIAN_API_KEY" ] && echo SET || echo MISSINGIf missing, ask user to create and configure key from the 阿里云百炼官方入口(控制台/平台):
- https://bailian.console.aliyun.com/
Then set it:
export BAILIAN_API_KEY="sk-xxxx"
# optional
export BAILIAN_REGION="beijing" # or singapore3) Generate speech (bailian-cli)
Basic (default to OpenClaw media folder):
mkdir -p ~/.openclaw/media/audio
bailian tts -t "你好,欢迎使用百炼 TTS 服务" -o url -d ~/.openclaw/media/audioSpecify voice/language:
mkdir -p ~/.openclaw/media/audio
bailian tts -t "Hello world" -v "Ethan" -l "English" -o url -d ~/.openclaw/media/audioWith style instruction:
mkdir -p ~/.openclaw/media/audio
bailian tts -t "春眠不觉晓" -v "Serena" -i "用温柔缓慢的语调朗读" -o url -d ~/.openclaw/media/audioReturn base64 instead of file:
bailian tts -t "测试" -o dataCustom output directory:
bailian tts -t "你好世界" -d "./audio"4) Voices and languages
- For live lookup:
bailian tts --list-voices- Full built-in table: read
references/voices-and-languages.md.
5) Operational notes
- Keep text length within CLI limit (600 chars per request).
- Default output directory:
~/.openclaw/media/audio(create withmkdir -p ~/.openclaw/media/audio). - Prefer
-o urlfor file delivery,-o datafor programmatic pipelines. - Respect user privacy: do not upload sensitive text externally without explicit confirmation.
- If generation fails, check in order: API key → region → network → voice/language spelling.
- When producing many clips, keep a consistent voice and instruction style for tonal continuity.