Skip to main content
ClaudeWave
Skill2.7k estrellas del repoactualizado 7d ago

video-frames

The video-frames skill uses ffmpeg to extract individual frames from video files at specified timestamps or from the beginning, outputting them as image files. Use this skill when you need to generate thumbnails for quick video inspection, capture specific moments from video content, or create image previews without processing entire video files.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/moltis-org/moltis /tmp/video-frames && cp -r /tmp/video-frames/crates/skills/src/assets/media/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.