skills/design-and-media/ui-ux/design-skills/video-to-frames-workflow/SKILL.md
Converts AI-generated videos into image frame sequences for web animations. Use when the user needs to extract frames from video, create scroll animations, or convert MP4 to image sequences.
npx skillsauth add lunartech-x/superpowers video-to-frames-workflowInstall 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.
Convert videos into frame sequences for scroll-based web animations.
MP4 on scroll = laggy, choppy experience Frame sequence on scroll = smooth, Apple-quality animations
| Use Case | FPS | Est. Frames (10s video) | |----------|-----|-------------------------| | Smooth scroll | 30 | 300 | | Standard scroll | 25 | 250 | | Lightweight | 15 | 150 |
# Extract ZIP to project
unzip frames.zip -d ./sequence
# Rename folder for consistency
mv extracted_folder sequence
sequence/
├── frame_001.jpg
├── frame_002.jpg
├── frame_003.jpg
└── ... (200-300 frames)
After extracting frames:
The frames for the animation are in the sequence folder.
Build a sticky scroll component that maps scroll position to these frames.
Use Next.js. Preload frames. Map 0-100% scroll to frame 1-N.
| Tool | Pros | Cons | |------|------|------| | EZGif | Free, fast, web-based | Limited file size | | FFmpeg | Powerful, local | Requires CLI | | VLC | Already installed | Manual process |
ffmpeg -i input.mp4 -vf fps=30 sequence/frame_%03d.jpg
tools
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
testing
Access AlphaFold 200M+ AI-predicted protein structures. Retrieve structures by UniProt ID, download PDB/mmCIF files, analyze confidence metrics (pLDDT, PAE), for drug discovery and structural biology.
development
Access real-time and historical stock market data, forex rates, cryptocurrency prices, commodities, economic indicators, and 50+ technical indicators via the Alpha Vantage API. Use when fetching stock prices (OHLCV), company fundamentals (income statement, balance sheet, cash flow), earnings, options data, market news/sentiment, insider transactions, GDP, CPI, treasury yields, gold/silver/oil prices, Bitcoin/crypto prices, forex exchange rates, or calculating technical indicators (SMA, EMA, MACD, RSI, Bollinger Bands). Requires a free API key from alphavantage.co.
development
This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search. Use when working with temporal data, sequential patterns, or time-indexed observations requiring specialized algorithms beyond standard ML approaches. Particularly suited for univariate and multivariate time series analysis with scikit-learn compatible APIs.