transcribe
✓Verified·Scanned 2/18/2026
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.
from clawhub.ai·vd7db747·3.1 KB·0 installs
Scanned from 1.0.2 at d7db747 · Transparency log ↗
$ vett add clawhub.ai/javicasper/transcribe
Transcribe
Local audio transcription using faster-whisper in Docker.
Installation
cd /path/to/skills/transcribe/scripts
chmod +x install.sh
./install.sh
This builds the Docker image whisper:local and installs the transcribe CLI.
Usage
transcribe /path/to/audio.mp3 [language]
- Default language:
es(Spanish) - Use
autofor auto-detection - Outputs plain text to stdout
Examples
transcribe /tmp/voice.ogg # Spanish (default)
transcribe /tmp/meeting.mp3 en # English
transcribe /tmp/audio.m4a auto # Auto-detect
Supported Formats
mp3, m4a, ogg, wav, webm, flac, aac
When Receiving Voice Messages
- Save the audio attachment to a temp file
- Run
transcribe <path> - Include the transcription in your response
- Clean up the temp file
Files
scripts/transcribe- CLI wrapper (bash)scripts/install.sh- Installation script (includes Dockerfile inline)
Notes
- Model:
small(fast) - edit install.sh forlarge-v3(accurate) - Fully local, no API key needed