skills/video-frames/SKILL.md
Extract frames, thumbnails, or clips from video files using ffmpeg. Use when analyzing video content or creating previews.
npx skillsauth add emanueleielo/ciana-parrot 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, thumbnails, and clips from video files.
ffmpeg -i input.mp4 -ss 00:00:05 -frames:v 1 frame.png
-ss 00:00:05 = seek to 5 seconds.
ffmpeg -i input.mp4 -vf "fps=1" frames_%04d.png
fps=1 = one frame per second. Use fps=1/10 for one every 10 seconds.
ffmpeg -i input.mp4 -vf "fps=1/30,scale=320:-1,tile=4x4" contact_sheet.png
One frame every 30 seconds, 4x4 grid.
ffmpeg -i input.mp4 -ss 00:01:00 -to 00:02:00 -c copy clip.mp4
ffprobe -v quiet -print_format json -show_format -show_streams input.mp4
ffmpeg -i input.mp4 -vn -acodec mp3 audio.mp3
ffmpeg -i input.webm -c:v libx264 output.mp4
-y flag to overwrite output files without prompting-ss before -i for faster seekingtools
Send and read WhatsApp messages via the wacli CLI. Search chats, view history, send text and files to contacts or groups.
development
Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or forecasts for any location. NOT for: historical weather data, severe weather alerts, or detailed meteorological analysis. No API key needed.
tools
Diagnose and resolve errors with Ciana's host bridges, CLI tools, Claude Code mode, macOS permissions, and gateway connectivity.
development
Manage Trello boards: list/create/move cards, checklists, labels. Requires TRELLO_API_KEY and TRELLO_TOKEN.