agentsclimarketplace

Run2 extract video keyframes

Skill cxcscmu/SkillLearnBench/skills/b3-teacher-feedback-claude-sonnet-4-6/video-object-counting/run2_extract-video-keyframes

Extract key frames from an MP4 video file and save them as PNG images in a target directory. Use this skill when you need to convert a video into individual frame images for further analysis.From its SKILL.md

Install
npx -y skills add cxcscmu/SkillLearnBench --skill run2_extract-video-keyframes

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

0.7 KB, 132 tokens by cl100k_base, as published. Nobody here has run it

Extract Video Keyframes

Use ffmpeg to extract key frames from the video and save them as sequentially numbered PNG files.

ffmpeg -i /root/super-mario.mp4 -vf "select=eq(pict_type\,I)" -vsync vfr /root/keyframes_%03d.png

This extracts only I-frames (keyframes) from the video and saves them as /root/keyframes_001.png, /root/keyframes_002.png, etc., in timeline order.

After extraction, verify the files exist:

ls /root/keyframes_*.png | sort

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.