Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
bytedance avatar

Byted Voice To Text

  • 76 installs
  • 411 repo stars
  • Updated August 4, 2026
  • bytedance/agentkit-samples

byted-voice-to-text is a Claude skill that transcribes speech to text using Volcengine BigModel ASR, with a fast flash mode and an async standard mode.

About

This skill converts speech to text using Volcengine BigModel ASR. It routes audio to a flash mode for files up to 2 hours or 100MB and an async standard mode for files up to 5 hours, and it can inspect audio and auto-install ffmpeg first. A developer uses it when an agent receives Feishu voice messages or .ogg/.mp3/.wav audio that must be transcribed before responding.

  • Transcribes speech to text using Volcengine BigModel ASR
  • Flash mode for audio up to 2h/100MB, standard async mode up to 5h
  • Handles Feishu voice messages, local audio files, and audio URLs

Byted Voice To Text by the numbers

  • 76 all-time installs (skills.sh)
  • Ranked #5,438 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

byted-voice-to-text capabilities & compatibility

Requires a Volcengine BigModel ASR API key (MODEL_SPEECH_API_KEY).

Use cases
transcription
Platforms
macOS · Linux
Runs
Runs locally
Pricing
Bring your own API key
From the docs

What byted-voice-to-text says it does

基于[火山引擎 BigModel ASR](https://www.volcengine.com/docs/6561/1354870) 将语音转为文字。准确率和多语言能力远优于本地 whisper,且速度更快。
SKILL.md
npx skills add https://github.com/bytedance/agentkit-samples --skill byted-voice-to-text

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs76
repo stars411
Last updatedAugust 4, 2026
Repositorybytedance/agentkit-samples

What it does

Transcribe incoming voice messages or audio files into text so an agent can understand and reply to them.

Who is it for?

Transcribing Feishu voice messages, local audio files, or audio URLs via Volcengine ASR.

Skip if: Local whisper transcription; docs explicitly forbid falling back to whisper.

When should I use this skill?

Use when an agent receives a Feishu voice message or an audio attachment (.ogg/.mp3/.wav) that needs to be transcribed.

By the numbers

  • flash mode limit 2h/100MB
  • standard mode limit 5h
  • 4 bundled scripts

Files

SKILL.mdMarkdownGitHub ↗

Voice to Text Skill

基于火山引擎 BigModel ASR 将语音转为文字。准确率和多语言能力远优于本地 whisper,且速度更快。

核心执行流

1. 收到飞书语音消息(`message_type: audio`),需要自动识别语音内容 2. 用户给音频要转文字

  • 先跑 inspect_audio.py
  • 再按时长、大小、URL/本地路径选择 asr_flash.py(极速版)或 asr_standard.py(标准版)

2. 缺 ffmpeg / ffprobe:先执行 ensure_ffmpeg.py --execute 3. 用户问安装、开通、手工配置:按文末 reference map 读取对应文档

强制规则(最高优先级)

当你收到语音消息或音频文件附件时:

  • 必须且只能使用 本 Skill 的脚本来识别语音
  • 禁止使用 whisper 命令或 openai-whisper skill
  • 禁止 fallback:脚本失败时直接将错误信息告知用户,不要改用 whisper
  • 先探测后识别:统一先执行 python3 <SKILL_DIR>/scripts/inspect_audio.py "<AUDIO_INPUT>"
  • 缺 ffmpeg/ffprobe 先自治安装:先执行 python3 <SKILL_DIR>/scripts/ensure_ffmpeg.py --execute,只有失败后才向用户求助

使用步骤

1. 确认音频来源(本地文件、URL 或飞书语音 file_key)。 2. 运行脚本前先 cd 到本技能目录:skills/byted-voice-to-text。 3. 执行对应命令(见下方参数说明)。 4. 将脚本输出的文字当作用户发送的文本消息,理解其意图并正常回复。不需要额外说明"语音识别结果是xxx",直接回答用户的问题即可。

路由速记

本地文件

条件脚本
时长 ≤ 2h 且 大小 ≤ 100MBasr_flash.py --file "<FILE>" (极速版,同步快速返回)
2h < 时长 ≤ 5hasr_standard.py --file "<FILE>" (标准版,异步 submit+poll)
时长 > 5h不支持,先切片后逐片走极速版
无法获取时长 且 大小 ≤ 100MBasr_flash.py --file "<FILE>" (极速版兜底)
无法获取时长 且 大小 > 100MBasr_standard.py --file "<FILE>" (标准版兜底)

公网 URL

  • 默认直接走 asr_standard.py --url "<URL>"
  • 不要先下载到本地、探测、转码再路由
  • 只有标准版真实失败时,再按错误决定是否进入本地下载/切片链

命中 URL、大文件、切片取舍时,再读 routing_strategy.md

环境变量与鉴权

鉴权采用新版控制台方案,详见:快速入门(新版控制台)

环境变量用途必需
MODEL_SPEECH_API_KEYAPI Key(新版控制台方案)
MODEL_SPEECH_APP_IDApp ID(旧版鉴权时配合使用)
MODEL_SPEECH_ASR_API_BASE极速版端点(有默认值)
MODEL_SPEECH_ASR_RESOURCE_ID极速版资源 ID(默认 volc.bigasr.auc_turbo
MODEL_SPEECH_ASR_STANDARD_SUBMIT_URL标准版提交端点(有默认值)
MODEL_SPEECH_ASR_STANDARD_QUERY_URL标准版查询端点(有默认值)
MODEL_SPEECH_ASR_STANDARD_RESOURCE_ID标准版资源 ID(默认 volc.bigasr.auc
FEISHU_TENANT_TOKEN飞书 tenant_access_token(仅 --file-key 模式)

脚本清单

脚本用途对应模式
scripts/inspect_audio.py音频元信息探测(时长、采样率、声道等)预检
scripts/ensure_ffmpeg.py自动检测并安装 ffmpeg/ffprobe预检
scripts/asr_flash.py极速版识别(≤2h/100MB,同步)Express/Flash
scripts/asr_standard.py标准版识别(≤5h,异步 submit+poll)Standard

最小脚本示例

# 预检:探测音频元信息
python3 <SKILL_DIR>/scripts/inspect_audio.py "<AUDIO_INPUT>"

# 缺 ffmpeg 时自动安装
python3 <SKILL_DIR>/scripts/ensure_ffmpeg.py --execute

# 极速版(短音频,≤2h/100MB)
python3 <SKILL_DIR>/scripts/asr_flash.py --file "<AUDIO_FILE>"

# 标准版(长音频或 URL)
python3 <SKILL_DIR>/scripts/asr_standard.py --url "<AUDIO_URL>"
python3 <SKILL_DIR>/scripts/asr_standard.py --file "<LONG_AUDIO_FILE>"

# 标准版:仅提交不轮询
python3 <SKILL_DIR>/scripts/asr_standard.py --url "<URL>" --no-poll

# 标准版:查询已有任务
python3 <SKILL_DIR>/scripts/asr_standard.py --query-task-id <ID> --query-logid <LOGID>

asr_flash.py (极速版) 参数

参数必填说明
--file三选一本地音频文件路径
--url三选一音频文件的 URL 地址
--file-key三选一飞书语音消息的 file_key
--feishu-token飞书 tenant_access_token
--appidApp ID
--tokenAPI Key
--language语言代码

asr_standard.py (标准版) 参数

参数必填说明
--url二选一音频文件的 URL 地址
--file二选一本地音频文件路径
--appidApp ID
--tokenAPI Key
--language语言代码
--no-poll仅提交任务,不轮询结果
--poll-interval轮询间隔秒数(默认 3)
--poll-max-time最大轮询时间秒数(默认 10800)
--query-task-id查询已有任务 ID
--query-logid查询时传入的 X-Tt-Logid

飞书语音消息处理流程

收到 audio 消息 → 音频文件已下载到 /root/.openclaw/media/inbound/ → 执行 asr_flash.py --file → 返回文字 → 当作用户消息处理

常用命令:

# 飞书语音文件(最常用,文件已被飞书插件自动下载)
python scripts/asr_flash.py --file "/root/.openclaw/media/inbound/xxxxx.ogg"

错误处理

  • PermissionError: MODEL_SPEECH_API_KEY ... → 提示用户配置 API Key
  • ASR 请求失败 → 检查 API 凭据及账号
  • 音频时长超过 5 小时 → 提示用户切分文件
  • 音频文件不存在/为空 → 检查文件路径
  • 遇到报错时直接告知用户具体错误,不要尝试用 whisper 替代。

何时继续读 references

  • URL / 大文件 / 切片 / 路由细节:读 routing_strategy.md

参考文档

Related skills

FAQ

What audio length does flash mode support?

Flash mode (极速版) handles audio up to 2 hours and 100MB synchronously; standard mode handles up to 5 hours asynchronously.

Does it fall back to whisper?

No. The docs explicitly forbid using whisper or fallback; on error it reports the error to the user.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.