video-frames
This Claude Code skill extracts individual frames or thumbnails from video files using ffmpeg commands. Use it when you need to inspect specific moments in a video by timestamp or frame number, generate quick preview images for sharing, or capture crisp screenshots for UI documentation.
git clone --depth 1 https://github.com/the-open-agent/openagent /tmp/video-frames && cp -r /tmp/video-frames/skills/video-frames ~/.claude/skills/video-framesSKILL.md
# Video Frames (ffmpeg) Extract a single frame from a video, or create quick thumbnails for inspection. ## Quick start First frame: ```bash ffmpeg -hide_banner -loglevel error -y \ -i /path/to/video.mp4 \ -vf "select=eq(n\,0)" \ -vframes 1 \ /tmp/frame.jpg ``` At a timestamp: ```bash ffmpeg -hide_banner -loglevel error -y \ -ss 00:00:10 \ -i /path/to/video.mp4 \ -frames:v 1 \ /tmp/frame-10s.jpg ``` By frame index: ```bash ffmpeg -hide_banner -loglevel error -y \ -i /path/to/video.mp4 \ -vf "select=eq(n\,42)" \ -vframes 1 \ /tmp/frame42.jpg ``` ## Notes - Prefer `-ss` + timestamp for "what is happening around here?". - Use `.jpg` for quick sharing; use `.png` for crisp UI frames. - Use `-hide_banner -loglevel error` to suppress verbose ffmpeg output.
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
Manage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
Create, search, and manage Bear notes via grizzly CLI.
Monitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI.
BluOS CLI (blu) for discovery, playback, grouping, and volume.
Use when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel="bluebubbles".
Capture frames or clips from RTSP/ONVIF cameras.