
Gif Generation
- 105 installs
- 325 repo stars
- Updated August 2, 2026
- athola/claude-night-market
Turn screen recordings or demo videos into optimized, shareable GIFs for docs, social posts, and launch assets using ffmpeg presets.
About
GIF Generation is a procedural media skill for solo builders who capture product demos as webm or mp4 and need compact animated GIFs for distribution. It walks through validating the source file, confirming ffmpeg is installed, running conversion with explicit quality tiers, and verifying the output meets size and clarity goals. The recommended path uses ffmpeg palette generation for a balance of quality and weight; alternate paths cover fast defaults and maximum-quality dithering. Optimization options and named presets help you hit social or documentation constraints without becoming a video engineer. Use it after you have a recording—often from a night-market or agent demo pipeline—and before you embed assets in a landing page, README, or launch thread. The skill expects local shell access and disciplined TodoWrite-style checkpoints so conversions do not run on missing binaries or wrong inputs.
- Four-step workflow: validate input, check ffmpeg, convert, verify output
- Three conversion modes: basic fast, palette-based recommended, maximum quality with dithering
- Common presets and optimization flags for file size vs quality
- Troubleshooting for large files, color banding, and slow conversion
- Inputs: webm and mp4; shell-driven ffmpeg execution
Gif Generation by the numbers
- 105 all-time installs (skills.sh)
- Ranked #784 of 1,335 Generative Media skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/athola/claude-night-market --skill gif-generationAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 105 |
|---|---|
| repo stars | ★ 325 |
| Security audit | 3 / 3 scanners passed |
| Last updated | August 2, 2026 |
| Repository | athola/claude-night-market ↗ |
What it does
Turn screen recordings or demo videos into optimized, shareable GIFs for docs, social posts, and launch assets using ffmpeg presets.
Files
Table of Contents
- Overview
- Required TodoWrite Items
- Process
- Step 1: Validate Input File
- Step 2: Check ffmpeg Installation
- Step 3: Execute Conversion
- Basic Conversion (Fast, Larger File))
- High Quality with Palette Generation (Recommended))
- Maximum Quality with Dithering
- Optimization Options
- Common Presets
- Step 4: Verify Output
- Exit Criteria
- Troubleshooting
- Large Output File
- Color Banding
- Slow Conversion
GIF Generation Skill
Post-process video files (webm/mp4) and generate optimized GIF output with configurable quality settings.
When To Use
- Converting recordings to animated GIF format
- Creating lightweight demo animations
When NOT To Use
- High-quality video output - use full recording tools
- Static image generation without animation needs
Overview
This skill handles the conversion of video recordings (typically from browser automation) to GIF format. It provides multiple quality presets and optimization options to balance file size with visual quality.
Required TodoWrite Items
- Validate input video file exists
- Check ffmpeg installation
- Execute GIF conversion
- Verify output and report resultsVerification: Run the command with --help flag to verify availability.
Process
Step 1: Validate Input File
Confirm the source video file exists and is a supported format:
# Check file exists and get info
if [[ -f "$INPUT_FILE" ]]; then
file "$INPUT_FILE"
ffprobe -v quiet -show_format -show_streams "$INPUT_FILE" 2>/dev/null | head -20
else
echo "Error: Input file not found: $INPUT_FILE"
exit 1
fiVerification: Run the command with --help flag to verify availability.
Supported input formats: .webm, .mp4, .mov, .avi
Step 2: Check ffmpeg Installation
Verify ffmpeg is available:
if ! command -v ffmpeg &> /dev/null; then
echo "Error: ffmpeg is not installed"
echo "Install with: sudo apt install ffmpeg (Linux) or brew install ffmpeg (macOS)"
exit 1
fi
ffmpeg -version | head -1Verification: Run the command with --help flag to verify availability.
Step 3: Execute Conversion
Choose the appropriate conversion command based on quality requirements:
Basic Conversion (Fast, Larger File)
ffmpeg -i input.webm -vf "fps=10,scale=800:-1" output.gifVerification: Run the command with --help flag to verify availability.
High Quality with Palette Generation (Recommended)
ffmpeg -i input.webm -vf "fps=10,scale=800:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" output.gifVerification: Run the command with --help flag to verify availability.
Maximum Quality with Dithering
ffmpeg -i input.webm -vf "fps=15,scale=1024:-1:flags=lanczos,split[s0][s1];[s0]palettegen=max_colors=256:stats_mode=single[p];[s1][p]paletteuse=dither=bayer:bayer_scale=5" output.gifVerification: Run the command with --help flag to verify availability.
Optimization Options
| Option | Description | Recommended Value |
|---|---|---|
fps | Frames per second | 10-15 for smooth, 5-8 for smaller files |
scale | Width in pixels (-1 maintains aspect ratio) | 800 for web, 480 for thumbnails |
flags=lanczos | High-quality scaling algorithm | Always use for best quality |
palettegen | Generate optimized color palette | Use for quality-critical output |
dither | Dithering algorithm | bayer for patterns, floyd_steinberg for smooth |
Common Presets
# Thumbnail (small, fast loading)
ffmpeg -i input.webm -vf "fps=8,scale=480:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" thumbnail.gif
# Documentation (balanced)
ffmpeg -i input.webm -vf "fps=10,scale=800:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" docs.gif
# High-fidelity demo
ffmpeg -i input.webm -vf "fps=15,scale=1024:-1:flags=lanczos,split[s0][s1];[s0]palettegen=max_colors=256[p];[s1][p]paletteuse" demo.gifVerification: Run the command with --help flag to verify availability.
Step 4: Verify Output
Confirm successful conversion and report metrics:
if [[ -f "$OUTPUT_FILE" ]]; then
echo "GIF generated successfully: $OUTPUT_FILE"
# Report file size
SIZE=$(du -h "$OUTPUT_FILE" | cut -f1)
echo "File size: $SIZE"
# Get dimensions and frame count
ffprobe -v quiet -select_streams v:0 -show_entries stream=width,height,nb_frames -of csv=p=0 "$OUTPUT_FILE"
else
echo "Error: GIF generation failed"
exit 1
fiVerification: Run the command with --help flag to verify availability.
Exit Criteria
- [ ] Input file validated as existing video format
- [ ] ffmpeg confirmed available
- [ ] GIF file created at specified output path
- [ ] Output file size reported to user
- [ ] No ffmpeg errors during conversion
Troubleshooting
Large Output File
Reduce quality settings:
# Lower fps and resolution
ffmpeg -i input.webm -vf "fps=8,scale=640:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" smaller.gifVerification: Run the command with --help flag to verify availability.
Color Banding
Use dithering:
ffmpeg -i input.webm -vf "fps=10,scale=800:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse=dither=floyd_steinberg" smooth.gifVerification: Run the command with --help flag to verify availability.
Slow Conversion
Use basic conversion without palette generation for speed:
ffmpeg -i input.webm -vf "fps=10,scale=800:-1" quick.gifVerification: Run the command with --help flag to verify availability.
Related skills
FAQ
Is Gif Generation safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.