Skip to main content
ClaudeWave
Skill1.3k estrellas del repoactualizado today

video-frames

This Claude Code skill uses ffmpeg to extract individual frames from video files at specified timestamps or from the beginning of a video. Use it when you need to generate quick thumbnail previews, inspect video content at specific moments, or capture frames for documentation and UI purposes.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/trpc-group/trpc-agent-go /tmp/video-frames && cp -r /tmp/video-frames/openclaw/skills/video-frames ~/.claude/skills/video-frames
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Video Frames (ffmpeg)

Extract a single frame from a video, or create quick thumbnails for inspection.

## Quick start

First frame:

```bash
{baseDir}/scripts/frame.sh /path/to/video.mp4 --out /tmp/frame.jpg
```

At a timestamp:

```bash
{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.