Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

whisper-gpu-transcriber-skillWhisper GPU transcriber 技能

Agent Skill

whisper-gpu-transcriber-skill 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,398

周安装

187

GitHub Stars

公开资料未说明

下载量

1,541
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:whisper-gpu-transcriber-skill(Whisper GPU transcriber 技能)
来源仓库:https://github.com/allanmeng/whisper-gpu-transcriber-skill
安装命令:
openclaw skills install whisper-gpu-transcriber-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install whisper-gpu-transcriber-skill

简介

whisper-gpu-transcriber-skill 使用 GPU 加速的 Whisper 进行音频转录并输出 SRT 字幕。

  • 适合需要快速、高效处理音频内容的 OpenClaw 场景。
  • 支持 Intel XPU/NVIDIA CUDA/AMD ROCm/Apple Metal 自动识别加速。
  • 通过 clawhub 安装,需确认 GPU 驱动与 API 密钥配置是否正确。
  • 注意网络依赖性和模型加载对显存的影响,建议核实本地环境兼容性。

SKILL.md

name
whisper-gpu-transcribe
description
Convert audio to SRT subtitles using OpenAI Whisper with automatic GPU acceleration for Intel XPU / NVIDIA CUDA / AMD ROCm / Apple Metal. Ideal for content creators as a free alternative to paid subtitle generation.
version
1.0.2
metadata
openclaw
emoji
🎙️
homepage
https://github.com/allanmeng/whisper-gpu-transcriber-skill
requires
bins
install
package
openai-whisper

🎙️ Whisper GPU Audio Transcriber

Convert audio files to SRT subtitles using local Whisper models — completely free, offline, and GPU accelerated.


Use Cases

  • Content creation, free alternative to paid subtitle features (e.g., CapCut/剪映)
  • Meeting recording to text
  • Podcast/course subtitles

Supported GPU Acceleration

DeviceAccelerationFP16
Intel Arc SeriesXPU❌ Auto disabled
NVIDIA GPUsCUDA✅ Auto enabled
AMD GPUsROCm✅ Auto enabled
Apple M SeriesMetal✅ Auto enabled
No GPUCPU❌ Auto disabled

Usage

Basic Usage

Place the audio file in your current working directory and tell the AI:

Convert xxx.mp3 to SRT subtitles

Or specify the full path directly:

Convert /path/to/audio.mp3 to SRT subtitles

Advanced Usage

Convert xxx.mp3 to English subtitles using large-v3-turbo model

Convert xxx.mp3 to subtitles, language is Japanese

Execution

AI will execute the scripts/transcribe.py script, which will:

  1. Automatically detect available GPU and select optimal acceleration
  2. Load Whisper model (default: turbo)
  3. Transcribe audio to SRT format
  4. Save output in the same directory as the audio

Requirements

  • Python 3.8+
  • PyTorch (version matching your hardware)

- Intel GPU: pip install torch==2.10.0+xpu - NVIDIA GPU: pip install torch --index-url https://download.pytorch.org/whl/cu121 - CPU: pip install torch

  • openai-whisper: Automatically installed via pip install openai-whisper

Notes

  • First run will auto-download the model file (turbo ~1.5GB)
  • Models cache in ~/.cache/whisper by default, use symlink/Junction to redirect to another disk
  • Intel XPU requires Intel Arc GPU + matching PyTorch version
Tip for China users: If model download fails, manually download from mirror sites and place in ~/.cache/whisper/

Supported Models

ModelSizeSpeedAccuracy
tiny39MFastestLow
base74MFastMedium
small244MMediumMedium
medium769MSlowHigh
turbo809MMediumHigh ✅ Recommended
large-v31550MSlowestHighest
large-v3-turbo1550MSlowHighest


🎙️ Whisper GPU 音频转字幕

使用本地 Whisper 模型将音频文件转录为 SRT 字幕,完全免费,无需联网,支持 GPU 加速。


适用场景

  • 自媒体视频制作,替代剪映付费字幕功能
  • 会议录音转文字
  • 播客/课程内容转字幕

支持的 GPU 加速

设备加速方式FP16
Intel Arc 系列XPU❌ 自动禁用
NVIDIA 显卡CUDA✅ 自动启用
AMD 显卡ROCm✅ 自动启用
Apple M 系列Metal✅ 自动启用
无独显CPU❌ 自动禁用

使用方法

基础用法

将音频文件放入当前工作目录,然后告诉 AI:

把 xxx.mp3 转成 SRT 字幕文件

或者直接指定路径:

把 /path/to/audio.mp3 转成 SRT 字幕

高级用法

把 xxx.mp3 用 large-v3-turbo 模型转成英文字幕

把 xxx.mp3 转成字幕,语言是日语

执行方式

AI 会调用 scripts/transcribe.py 脚本执行转录,脚本会:

  1. 自动检测可用 GPU 设备并选择最优加速方式
  2. 加载 Whisper 模型(默认 turbo
  3. 将音频转录为 SRT 格式字幕
  4. 输出文件保存在与音频同目录

环境要求

  • Python 3.8+
  • PyTorch(版本需匹配硬件)

- Intel GPU:pip install torch==2.10.0+xpu - NVIDIA GPU:pip install torch --index-url https://download.pytorch.org/whl/cu121 - CPU:pip install torch

  • openai-whisper:由 ClawHub 通过 pip install openai-whisper 自动安装

注意事项

  • 首次运行会自动下载模型文件(turbo 约 1.5GB)
  • 模型默认缓存在 ~/.cache/whisper,可用软链接/Junction 指向其他磁盘
  • Intel XPU 需要 Intel Arc 独显 + 对应版本 PyTorch
国内用户提示:首次运行会自动下载模型,如下载失败可手动从镜像站下载后放入 ~/.cache/whisper/

支持的模型

模型大小速度准确度
tiny39M最快
base74M
small244M
medium769M
turbo809M高 ✅ 推荐
large-v31550M最慢最高
large-v3-turbo1550M最高

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.42%
按下载量换算1,316

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills