← All skills
Tencent SkillHub · Communication & Collaboration

Voice Message

Send voice messages across chat channels (Telegram, Discord, Feishu/Lark, Signal, WhatsApp, and others) using edge-tts for text-to-speech and ffmpeg for audi...

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

Send voice messages across chat channels (Telegram, Discord, Feishu/Lark, Signal, WhatsApp, and others) using edge-tts for text-to-speech and ffmpeg for audi...

⬇ 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, references/voices.md, scripts/gen_voice.sh, scripts/gen_waveform.py, scripts/send_feishu_voice.sh

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.4

Documentation

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

Voice Message

Send text as voice messages to any chat channel.

Prerequisites

edge-tts — Microsoft Edge TTS (pip install edge-tts) ffmpeg / ffprobe — audio conversion and duration detection

Default Voices

Chinese: zh-CN-XiaoxiaoNeural English: en-US-JennyNeural Other languages: see references/voices.md

Step 1: Generate Voice File

Use scripts/gen_voice.sh to convert text to an ogg/opus file: scripts/gen_voice.sh "你好" /tmp/voice.ogg scripts/gen_voice.sh "Hello" /tmp/voice.ogg en-US-JennyNeural Arguments: <text> <output.ogg> [voice] If voice is omitted, defaults to zh-CN-XiaoxiaoNeural.

Generic (Telegram, Signal, WhatsApp, etc.)

Use the message tool directly: action=send, asVoice=true, filePath=/tmp/voice.ogg This works for most channels. Telegram confirmed working.

Feishu/Lark

⚠️ Feishu does NOT support asVoice=true via the message tool. You must use the dedicated script. Use scripts/send_feishu_voice.sh: scripts/send_feishu_voice.sh /tmp/voice.ogg <receive_id> <tenant_access_token> [receive_id_type] receive_id_type: open_id (default), chat_id, user_id, union_id, email The script handles upload (as opus with duration) and sends as audio message type to produce a voice bubble. To get tenant_access_token, use the Feishu tenant token API with your app credentials.

Discord

Discord voice messages require a waveform and special flags. Generate ogg with scripts/gen_voice.sh Generate waveform: python3 scripts/gen_waveform.py /tmp/voice.ogg Outputs JSON: {"duration_secs": 4.2, "waveform": "base64..."} Send via Discord API with flags: 8192 (IS_VOICE_MESSAGE) and the waveform/duration in attachments metadata. Missing waveform/duration causes error 50161.

Fallback

If asVoice=true does not produce a voice bubble on a channel: Try sending via the platform's native API If native API unavailable, send as audio file attachment

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts2 Docs
  • SKILL.md Primary doc
  • references/voices.md Docs
  • scripts/gen_voice.sh Scripts
  • scripts/gen_waveform.py Scripts
  • scripts/send_feishu_voice.sh Scripts