/video-understand
Understand video content locally using ffmpeg frame extraction and Whisper transcription. No API keys needed. Use when: (1) Understanding what a video contains, (2) Transcribing video audio locally, (3) Extracting key frames for visual analysis, (4) Getting video content without
$ npx -y skills add calesthio/OpenMontage --skill video-understand --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/video-understand
Context preview
The summary Claude sees to decide when to auto-load this skill.
Understand video content locally using ffmpeg frame extraction and Whisper transcription. No API keys needed. Use when: (1) Understanding what a video contains, (2) Transcribing video audio locally, (3) Extracting key frames for visual analysis, (4) Getting video content without
SKILL.md
video-understand.SKILL.mdname: video-understand
description: |
Understand video content locally using ffmpeg frame extraction and Whisper transcription. No API keys needed.
Use when: (1) Understanding what a video contains, (2) Transcribing video audio locally,
(3) Extracting key frames for visual analysis, (4) Getting video content without API keys.
video-understand
Understand video content locally using ffmpeg for frame extraction and Whisper for transcription. Fully offline, no API keys required.
Prerequisites
- `ffmpeg` + `ffprobe` (required): `brew install ffmpeg`
- `openai-whisper` (optional, for transcription): `pip install openai-whisper`
Commands
# Scene detection + transcribe (default)
python3 skills/video-understand/scripts/understand_video.py video.mp4
# Keyframe extraction
python3 skills/video-understand/scripts/understand_video.py video.mp4 -m keyframe
# Regular interval extraction
python3 skills/video-understand/scripts/understand_video.py video.mp4 -m interval
# Limit frames extracted
python3 skills/video-understand/scripts/understand_video.py video.mp4 --max-frames 10
# Use a larger Whisper model
python3 skills/video-understand/scripts/understand_video.py video.mp4 --whisper-model small
# Frames only, skip transcription
python3 skills/video-understand/scripts/understand_video.py video.mp4 --no-transcribe
# Quiet mode (JSON only, no progress)
python3 skills/video-understand/scripts/understand_video.py video.mp4 -q
# Output to file
python3 skills/video-understand/scripts/understand_video.py video.mp4 -o result.json
CLI Options
| Flag | Description | |------|-------------| | `video` | Input video file (positional, required) | | `-m, --mode` | Extraction mode: `scene` (default), `keyframe`, `interval` | | `--max-frames` | Maximum frames to keep (default: 20) | | `--whisper-model` | Whisper model size: tiny, base, small, medium, large (default: base) | | `--no-transcribe` | Skip audio transcription, extract frames only | | `-o, --output` | Write result JSON to file instead of stdout | | `-q, --quiet` | Suppress progress messages, output only JSON |
Extraction Modes
| Mode | How it works | Best for | |------|-------------|----------| | `scene` | Detects scene changes via ffmpeg `select='gt(scene,0.3)'` | Most videos, varied content | | `keyframe` | Extracts I-frames (codec keyframes) | Encoded video with natural keyframe placement | | `interval` | Evenly spaced frames based on duration and max-frames | Fixed sampling, predictable output |
If `scene` mode detects no scene changes, it automatically falls back to `interval` mode.
Output
The script outputs JSON to stdout (or file with `-o`). See `references/output-format.md` for the full schema.
{
"video": "video.mp4",
"duration": 18.076,
"resolution": {"width": 1224, "height": 1080},
"mode": "scene",
"frames": [
{"path": "/abs/path/frame_0001.jpg", "timestamp": 0.0, "timestamp_formatted": "00:00"}
],
"frame_count": 12,
"transcript": [
{"start": 0.0, "end": 2.5, "text": "Hello and welcome..."}
],
"text": "Full transcript...",
"note": "Use the Read tool to view frame images for visual understanding."
}Use the Read tool on frame image paths to visually inspect extracted frames.
References
- `references/output-format.md` -- Full JSON output schema documentation
Read more
name: video-understand description: | Understand video content locally using ffmpeg frame extraction and Whisper transcription. No API keys needed. Use when: (1) Understanding what a video contains, (2) Transcribing video audio locally, (3) Extracting key frames for visual analysis, (4) Getting video content without API keys.
video-understand
Understand video content locally using ffmpeg for frame extraction and Whisper for transcription. Fully offline, no API keys required.
Prerequisites
- `ffmpeg` + `ffprobe` (required): `brew install ffmpeg`
- `openai-whisper` (optional, for transcription): `pip install openai-whisper`
Commands
# Scene detection + transcribe (default) python3 skills/video-understand/scripts/understand_video.py video.mp4 # Keyframe extraction python3 skills/video-understand/scripts/understand_video.py video.mp4 -m keyframe # Regular interval extraction python3 skills/video-understand/scripts/understand_video.py video.mp4 -m interval # Limit frames extracted python3 skills/video-understand/scripts/understand_video.py video.mp4 --max-frames 10 # Use a larger Whisper model python3 skills/video-understand/scripts/understand_video.py video.mp4 --whisper-model small # Frames only, skip transcription python3 skills/video-understand/scripts/understand_video.py video.mp4 --no-transcribe # Quiet mode (JSON only, no progress) python3 skills/video-understand/scripts/understand_video.py video.mp4 -q # Output to file python3 skills/video-understand/scripts/understand_video.py video.mp4 -o result.json
CLI Options
| Flag | Description | |------|-------------| | `video` | Input video file (positional, required) | | `-m, --mode` | Extraction mode: `scene` (default), `keyframe`, `interval` | | `--max-frames` | Maximum frames to keep (default: 20) | | `--whisper-model` | Whisper model size: tiny, base, small, medium, large (default: base) | | `--no-transcribe` | Skip audio transcription, extract frames only | | `-o, --output` | Write result JSON to file instead of stdout | | `-q, --quiet` | Suppress progress messages, output only JSON |
Extraction Modes
| Mode | How it works | Best for | |------|-------------|----------| | `scene` | Detects scene changes via ffmpeg `select='gt(scene,0.3)'` | Most videos, varied content | | `keyframe` | Extracts I-frames (codec keyframes) | Encoded video with natural keyframe placement | | `interval` | Evenly spaced frames based on duration and max-frames | Fixed sampling, predictable output |
If `scene` mode detects no scene changes, it automatically falls back to `interval` mode.
Output
The script outputs JSON to stdout (or file with `-o`). See `references/output-format.md` for the full schema.
{
"video": "video.mp4",
"duration": 18.076,
"resolution": {"width": 1224, "height": 1080},
"mode": "scene",
"frames": [
{"path": "/abs/path/frame_0001.jpg", "timestamp": 0.0, "timestamp_formatted": "00:00"}
],
"frame_count": 12,
"transcript": [
{"start": 0.0, "end": 2.5, "text": "Hello and welcome..."}
],
"text": "Full transcript...",
"note": "Use the Read tool to view frame images for visual understanding."
}Use the Read tool on frame image paths to visually inspect extracted frames.
References
- `references/output-format.md` -- Full JSON output schema documentation
World's first open-source, agentic video production system. 12 production pipelines, 100+ tools, 700+ agent skill and production-knowledge files. Turn your AI coding assistant into a full video production studio.
Repo: calesthio/OpenMontage
Other skills on openmontage.
- /acestep
AI music generation with ACE-Step 1.5 — background music, vocal tracks, covers, stem extraction for video production. Use when generating music, soundtracks, jingles, or working with audio stems. Triggers include background music, soundtrack, jingle, music generation, stem
Open skill - /agents
Build voice AI agents with ElevenLabs. Use when creating voice assistants, customer service bots, interactive voice characters, or any real-time voice conversation experience.
Open skill - /ai-video-gen
Generate AI videos from text prompts using multiple provider gateways. Use when: (1) Generating videos from text descriptions, (2) Creating AI-generated video clips for content production, (3) Image-to-video generation with a reference image, (4) Choosing between video
Open skill - /avatar-video
Create AI avatar videos with precise control over avatars, voices, scripts, scenes, and backgrounds using HeyGen's v2 API. Use when: (1) Choosing a specific avatar and voice for a video, (2) Writing exact scripts for an avatar to speak, (3) Building multi-scene videos with
Open skill - /azure-speech-to-text
Transcribe audio to text using Azure AI Speech (Fast Transcription REST API). Use when converting audio/video to text, generating subtitles, or processing spoken content in OpenMontage. Optional cloud STT provider — preferred when AZURE_SPEECH_KEY is configured; the local
Open skill - /beautiful-mermaid
Render Mermaid diagrams as SVG and PNG using the Beautiful Mermaid library. Use when the user asks to render a Mermaid diagram.
Open skill

