| name | video-frames |
| description | Extract frames or short clips from videos using ffmpeg. |
| metadata | {"openclaw":"{\"emoji\":\"🎞️\",\"requires\":{\"bins\":[\"ffmpeg\"]},\"install\":[{\"id\":\"brew\",\"kind\":\"brew\",\"formula\":\"ffmpeg\",\"bins\":[\"ffmpeg\"],\"label\":\"Install ffmpeg (brew)\"}]}","legacy_homepage":"https://ffmpeg.org"} |
Video Frames (ffmpeg)
When to use this skill
- Use when the user request matches this skill's domain and capabilities.
- Use when this workflow or toolchain is explicitly requested.
When not to use this skill
- Do not use when another skill is a better direct match for the task.
- Do not use when the request is outside this skill's scope.
Extract a single frame from a video, or create quick thumbnails for inspection.
Quick start
First frame:
{baseDir}/scripts/frame.sh /path/to/video.mp4 --out /tmp/frame.jpg
At a timestamp:
{baseDir}/scripts/frame.sh /path/to/video.mp4 --time 00:00:10 --out /tmp/frame-10s.jpg
Notes
- Prefer
--time for “what is happening around here?”.
- Use a
.jpg for quick share; use .png for crisp UI frames.