← All skills
Tencent SkillHub · Developer Tools

feishu-audio

将音频文件转换为飞书可播放的语音消息。先用 ffmpeg 转为 opus 格式,再上传到飞书,最后发送 audio 消息。适用于用户想要在飞书中收到可播放的语音消息的场景。

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

将音频文件转换为飞书可播放的语音消息。先用 ffmpeg 转为 opus 格式,再上传到飞书,最后发送 audio 消息。适用于用户想要在飞书中收到可播放的语音消息的场景。

⬇ 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, scripts/send_audio.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.1

Documentation

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

feishu-audio

将本地音频文件转换为飞书可播放的语音消息。

适用场景

用户说"朗读 xxx"、"语音播报" 需要发送可播放的语音消息到飞书

前置条件

ffmpeg - 音频格式转换 brew install ffmpeg 飞书应用配置 - 需要以下环境变量: FEISHU_APP_ID FEISHU_APP_SECRET 接收者 - 飞书用户 Open ID(从上下文获取或手动指定)

方式 1:使用已有音频文件

bash scripts/send_audio.sh <音频文件路径> [接收者OpenID]

方式 2:结合 TTS 使用

先生成音频,再用本技能发送: # 1. 用 edge-tts 生成音频 edge-tts -t "你好,我是小曦" -v zh-CN-XiaoxiaoNeural --write-media /tmp/voice.mp3 # 2. 转为 opus 并发送到飞书 bash scripts/send_audio.sh /tmp/voice.mp3

send_audio.sh

主脚本,完整的音频消息发送流程。 参数: $1 - 音频文件路径(必需) $2 - 接收者 Open ID(可选,默认从环境变量 FEISHU_RECEIVER 获取) 环境变量: FEISHU_APP_ID - 飞书应用 ID FEISHU_APP_SECRET - 飞书应用密钥 FEISHU_RECEIVER - 接收者 Open ID(可选) 流程: 检查 ffmpeg 是否可用 检查音频文件是否存在 用 ffmpeg 转换为 opus 格式(飞书要求) 获取飞书 tenant_access_token 上传到飞书(file_type=opus) 发送 audio 消息

音频格式要求

飞书语音消息要求: 格式: opus (OGG 容器) 编码: libopus 采样率: 24000 Hz 声道: 单声道

ffmpeg 未安装

brew install ffmpeg

上传失败

检查飞书应用权限: im:message im:message:send_as_bot

消息发送成功但无法播放

确认: 上传时使用了 file_type=opus 上传时传递了 duration 参数

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
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/send_audio.sh Scripts