Openai Whisper
OpenAI Whisper:使用 Whisper 模型进行视频语音识别和转录。
clawhub install openai-whisperTranscribe 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.
# Install Skill (downloads SKILL.md to .claude/skills/) clawhub install transcribe # Then just tell Claude: "use Transcribe to help me..."
# Same install command — works with all SKILL.md-compatible AI coding tools clawhub install transcribe
This Skill is compatible with the OpenClaw standard. After installation, a SKILL.md file is auto-generated, usable by any OpenClaw-compatible AI Agent (Claude Code, Cursor, Windsurf, etc.).
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