Openai Whisper
OpenAI Whisper:使用 Whisper 模型进行视频语音识别和转录。
clawhub install openai-whisper音频转录:使用本地 Whisper(Docker)将音频文件转录为文本,支持 .mp3、.m4a、.ogg、.wav、.webm 等多种格式。
Transcribe audio files to text using local Whisper (Docker). Use when receiving voice messages, audio files (.mp3, .m4a, .ogg, .wav, .webm), or when asked to transcribe audio content.
# 安装 Skill(会下载 SKILL.md 到 .claude/skills/) clawhub install transcribe # 之后直接对 Claude 说"用 Transcribe 帮我…"即可
# 同样的安装命令,兼容所有支持 SKILL.md 的 AI 编程工具 clawhub install transcribe
此 Skill 兼容 OpenClaw 标准。 安装后自动生成 SKILL.md 文件,任何支持 OpenClaw 协议的 AI Agent(Claude Code、Cursor、Windsurf 等)均可直接调用。
完全本地离线处理,使用 Whisper Docker 容器,无需 API 密钥
cd /path/to/skills/transcribe/scripts
chmod +x install.sh
./install.sh
whisper:local and installs the transcribe CLI.transcribe /path/to/audio.mp3 [language]
es (Spanish)auto for auto-detectiontranscribe /tmp/voice.ogg # Spanish (default)
transcribe /tmp/meeting.mp3 en # English
transcribe /tmp/audio.m4a auto # Auto-detect
transcribe <path>scripts/transcribe - CLI wrapper (bash)scripts/install.sh - Installation script (includes Dockerfile inline)small (fast) - edit install.sh for large-v3 (accurate)clawhub transcribe meeting_recording.wav && cat meeting_recording.txt