video-frame-extractor

This skill should be used when extracting frames from video files, such as generating keyframe sequences from videos, creating video thumbnails at intervals, or preparing video frames for analysis. Triggers include requests like "extract frames from video", "sample frames every N seconds", "extract keyframes for video analysis", or "generate video thumbnail sequence".

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "video-frame-extractor" with this command: npx skills add huanghaoyu1997/video-frame-extractor

Video Frame Extractor

Overview

This skill guides LLM agents to extract frames from video files using FFmpeg. It provides complete workflow for frame extraction including environment setup, parameter configuration, and command execution.

Primary method: FFmpeg (fast and reliable)
Fallback method: OpenCV (if FFmpeg unavailable)

Workflow

Step 1: Verify FFmpeg Installation

Before extracting frames, check if FFmpeg is installed:

ffmpeg -version

If FFmpeg is not installed, see FFmpeg Installation section below.

Step 2: Determine Extraction Parameters

Before extracting frames, the LLM MUST confirm these parameters with the user:

ParameterDescriptionExample
output_pathDirectory to save extracted framesDefault: ./tmp/frames
frame_rateFrames per second to extract0.25 (1 frame every 4 seconds)
scaleShort side resize target in pixels (optional)640 (short side → 640px)

Parameter Calculation Guide:

  • To extract 1 frame every X seconds: frame_rate = 1/X
  • Example: 1 frame every 4 seconds → frame_rate = 0.25
  • Example: 1 frame every 10 seconds → frame_rate = 0.1
  • Example: 1 frame per second → frame_rate = 1

Step 3: Execute FFmpeg Command

Generate and execute the FFmpeg command:

Basic Command (no resize):

ffmpeg -hide_banner -loglevel error -i "{video_path}" -vf "fps={frame_rate}" -fps_mode vfr -q:v 2 -f image2 "{output_path}/%06d.jpg"

With Short Side Resize (recommended for analysis):

ffmpeg -hide_banner -loglevel error -thread_queue_size 512 -i "{video_path}" -vf "fps={frame_rate},scale='if(gt(iw,ih),-2,{scale}):if(gt(iw,ih),{scale},-2)':flags=lanczos" -fps_mode vfr -q:v 2 -f image2 -atomic_writing 1 "{output_path}/%06d.jpg"

Parameter Breakdown:

FlagPurpose
-hide_bannerSuppress build info
-loglevel errorQuiet mode, show only errors
-thread_queue_size 512Increase thread queue for large files
-vf "fps={rate}"Set frame extraction rate
-fps_mode vfrVariable frame rate (skip duplicates)
-q:v 2JPEG quality (1-31, lower = better)
-atomic_writing 1Atomic file write (prevent corruption)
%06d.jpgSequential naming: 000001.jpg, 000002.jpg...

Step 4: Verify Output

After extraction, verify the output:

  • Count frames: ls {output_path}/*.jpg | wc -l
  • Check frame sizes: ls -lh {output_path}/*.jpg | head -5

FFmpeg Installation

Windows

Option 1: winget (Recommended)

winget install ffmpeg

Option 2: Chocolatey

choco install ffmpeg

Option 3: Manual Download

  1. Download from: https://www.gyan.dev/ffmpeg/builds/
  2. Extract to a permanent location (e.g., C:\tools\ffmpeg)
  3. Add to PATH: setx PATH "$PATH;C:\tools\ffmpeg\bin
  4. Restart terminal

Verify Installation:

ffmpeg -version

Linux (Ubuntu/Debian)

sudo apt update
sudo apt install ffmpeg

Verify Installation:

ffmpeg -version

Linux (CentOS/RHEL/Fedora)

sudo dnf install ffmpeg

macOS

brew install ffmpeg

Common Use Cases

Extract 1 frame every 4 seconds, resize to 640px

frame_rate = 0.25
scale = 640

Extract 1 frame every 10 seconds, original size

frame_rate = 0.1
scale = 0 (no resize)

Extract 1 frame per second for a 10-minute video (600 frames)

frame_rate = 1
video_duration = 600 seconds
expected_frames = 600

Output Directory Structure

Frames are saved with sequential naming:

output_path/
├── 000001.jpg
├── 000002.jpg
├── 000003.jpg
└── ...

The sequential naming (%06d) ensures frames are in temporal order regardless of original frame numbers.

Error Handling

ErrorSolution
ffmpeg: command not foundInstall FFmpeg first
No such file or directoryCheck video_path is correct
Permission deniedCheck write permissions for output_path
Output directory not emptyClear or use different output path

Notes

  • FFmpeg is much faster than OpenCV for frame extraction (10-100x)
  • The scale filter uses -2 instead of -1 to ensure dimensions are divisible by 2 (better codec compatibility)
  • -fps_mode vfr (variable frame rate) skips duplicate frames when seeking
  • Use -q:v 2 for high quality JPEG (range 1-31, default 31)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Huo15 Openclaw Enhance

火一五·克劳德·龙虾增强插件 v5.7.8 — 全面适配 openclaw 2026.4.24:peerDep ^4.24 + build/compat 同步到 4.24 + 14 处 api.on 全部去掉 as any 改成 typed hook(hookName 联合类型 + handler 自动推断 Pl...

Registry SourceRecently Updated
General

Content Trend Analyzer

Aggregates and analyzes content trends across platforms to identify hot topics, user intent, content gaps, and generates data-driven article outlines.

Registry SourceRecently Updated
General

Prompt Debugger

Debug prompts that produce unexpected AI outputs — diagnose failure modes, identify ambiguity and conflicting instructions, test variations, compare model re...

Registry SourceRecently Updated
General

Indie Maker News

独行者 Daily - 变现雷达。读对一条新闻,少走一年弯路。每天5分钟,给创业者装上商业雷达。聚焦一人公司、副业、创业变现资讯,智能分类,行动导向。用户下载即能用,无需本地部署!

Registry SourceRecently Updated