typescript/skills/video-frames/SKILL.md
Extract frames from video files using ffmpeg for analysis or processing.
npx skillsauth add kody-w/openrappter video-framesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Extract frames from video files.
ffmpeg -i video.mp4 -ss 00:00:05 -frames:v 1 /tmp/frame.jpg
# One frame every 10 seconds
ffmpeg -i video.mp4 -vf "fps=1/10" /tmp/frames/frame_%04d.jpg
ffmpeg -i video.mp4 -vf "select=eq(pict_type\\,I)" -vsync vfr /tmp/keyframes/kf_%04d.jpg
ffmpeg -i video.mp4 -vf "fps=1/30,scale=160:90,tile=5x4" /tmp/thumbnails.jpg
ffprobe -v quiet -print_format json -show_streams video.mp4
development
Get current weather and forecasts (no API key required).
tools
Send and receive WhatsApp messages via wacli command-line tool.
tools
Start and manage voice calls via the openrappter voice-call plugin.
development
Manage Trello boards, lists, and cards via the Trello REST API.