Install
openclaw skills install whisnapmacOS CLI for transcribing audio and video files using local Whisper models or Whisnap Cloud.
openclaw skills install whisnapUse 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 <ID> — 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.