π¦ ClawHub
Whisnap
by @neolio42
macOS CLI for transcribing audio and video files using local Whisper models or Whisnap Cloud.
TERMINAL
clawhub install whisnapπ About This Skill
name: whisnap description: macOS CLI for transcribing audio and video files using local Whisper models or Whisnap Cloud. homepage: https://whisnap.com metadata: {"clawdbot":{"emoji":"ποΈ","requires":{"bins":["whisnap"]},"install":[{"id":"app","kind":"manual","label":"Install via Whisnap app Settings β Advanced β Enable CLI"}]}}
whisnap
Use whisnap for transcribing audio/video files from the terminal. Requires the Whisnap macOS app with at least one model downloaded.
Setup (once)
/usr/local/bin/whisnap symlink)Common commands
whisnap recording.wavwhisnap meeting.mp4whisnap recording.wav --cloudwhisnap lecture.m4a --jsonwhisnap interview.wav -m small-q5_1whisnap recording.wav --cloud --jsonwhisnap --list-modelswhisnap recording.wav -vSupported formats
Flags
-c, --cloud β Use Whisnap Cloud instead of local model (requires sign-in)-m, --model β Override model (e.g., small-q5_1). Defaults to app's selected model.-j, --json β Structured JSON output with text, segments, timestamps, model info-v, --verbose β Print progress and diagnostics to stderr--list-models β List available models and exitJSON output format
{
"text": "transcribed text",
"segments": [{ "start_ms": 0, "end_ms": 1000, "text": "segment" }],
"model": "small-q5_1",
"backend": "whisper",
"processing_time_ms": 5000
}
Notes
~/Library/Application Support/com.whisnap.desktop/).--json and pipe stdout. Diagnostics go to stderr.0 = success, 1 = error.