ffmpeg-video-analysis
Complete FFmpeg video analysis and quality control filters for automation and broadcast workflows. PROACTIVELY activate for: (1) Detecting black frames (blackdetect, blackframe), (2) Finding blurry/frozen frames (blurdetect, freezedetect), (3) Auto crop detection (cropdetect), (4) Scene change detection (scdet), (5) Interlace detection (idet), (6) Quality metrics (PSNR, SSIM, VMAF), (7) Signal analysis (signalstats), (8) Frame information logging (showinfo), (9) QC automation scripts, (10) Broadcast compliance checking. Provides: Detection filters, quality metrics, analysis commands, automation patterns.
What this skill does
## CRITICAL GUIDELINES ### Windows File Path Requirements **MANDATORY: Always Use Backslashes on Windows for File Paths** When using Edit or Write tools on Windows, you MUST use backslashes (`\`) in file paths, NOT forward slashes (`/`). --- ## Quick Reference | Task | Filter | Command Pattern | |------|--------|-----------------| | Detect black frames | `blackdetect` | `-vf blackdetect=d=0.5:pic_th=0.98` | | Detect frozen frames | `freezedetect` | `-vf freezedetect=n=0.003:d=2` | | Detect blur | `blurdetect` | `-vf blurdetect=low=5:high=15` | | Auto crop | `cropdetect` | `-vf cropdetect=24:16:0` | | Scene changes | `scdet` | `-vf scdet=threshold=10` | | Quality metrics | `psnr`, `ssim` | `-lavfi "[0:v][1:v]psnr" -f null -` | | Frame info | `showinfo` | `-vf showinfo` | ## When to Use This Skill Use for **quality control and automation workflows**: - Automated video analysis pipelines - Detecting problematic frames (black, frozen, blurry) - Finding optimal crop parameters - Measuring quality after encoding - Broadcast compliance checking - Content-aware editing decisions --- # FFmpeg Video Analysis Filters (2025) Comprehensive guide to video analysis filters for quality control, automation, and professional workflows. ## Detection Filters ### blackdetect - Detect Black Frames Detects video sequences that are completely black, useful for finding commercial breaks, scene boundaries, or encoding issues. ```bash # Basic black detection ffmpeg -i input.mp4 -vf "blackdetect=d=0.5:pic_th=0.98:pix_th=0.10" -f null - # More sensitive detection (darker threshold) ffmpeg -i input.mp4 -vf "blackdetect=d=0.1:pic_th=0.90" -f null - # Save detection results to log ffmpeg -i input.mp4 -vf "blackdetect=d=0.5" -f null - 2>&1 | grep blackdetect # Detect and extract black segments ffmpeg -i input.mp4 -vf "blackdetect=d=2.0" -f null - 2>&1 | \ grep -oP 'black_start:\K[0-9.]+|black_end:\K[0-9.]+' ``` **Parameters:** | Parameter | Description | Default | Range | |-----------|-------------|---------|-------| | `d` | Minimum duration (seconds) | 2.0 | > 0 | | `pic_th` | Picture black ratio threshold | 0.98 | 0-1 | | `pix_th` | Pixel black threshold | 0.10 | 0-1 | **Output format:** ```text [blackdetect @ 0x...] black_start:10.5 black_end:12.3 black_duration:1.8 ``` ### blackframe - Detect Nearly Black Frames Similar to blackdetect but reports individual frames and their blackness amount. ```bash # Detect frames that are 98% black ffmpeg -i input.mp4 -vf "blackframe=amount=98:threshold=32" -f null - # Output includes frame number and percentage ffmpeg -i input.mp4 -vf "blackframe=amount=90" -f null - 2>&1 | grep blackframe ``` **Parameters:** | Parameter | Description | Default | Range | |-----------|-------------|---------|-------| | `amount` | Percentage threshold | 98 | 0-100 | | `threshold` | Pixel brightness threshold | 32 | 0-255 | ### freezedetect - Detect Frozen Frames Detects sequences where the video appears frozen (repeated frames). ```bash # Basic freeze detection ffmpeg -i input.mp4 -vf "freezedetect=n=0.003:d=2" -f null - # More sensitive (detect shorter freezes) ffmpeg -i input.mp4 -vf "freezedetect=n=0.001:d=0.5" -f null - # Very strict (only perfectly identical frames) ffmpeg -i input.mp4 -vf "freezedetect=n=0:d=1" -f null - ``` **Parameters:** | Parameter | Description | Default | Range | |-----------|-------------|---------|-------| | `n` | Noise tolerance (frame diff) | 0.001 | 0-1 | | `d` | Minimum freeze duration | 2.0 | > 0 | **Output format:** ```text [freezedetect @ 0x...] freeze_start: 45.2 [freezedetect @ 0x...] freeze_duration: 3.5 [freezedetect @ 0x...] freeze_end: 48.7 ``` ### blurdetect - Detect Blurry Frames Detects frames that are out of focus or motion blurred. ```bash # Basic blur detection ffmpeg -i input.mp4 -vf "blurdetect=low=5:high=15:radius=50" -f null - # More sensitive detection ffmpeg -i input.mp4 -vf "blurdetect=low=3:high=10" -f null - # Output blur values per frame ffmpeg -i input.mp4 -vf "blurdetect,metadata=print:file=blur.txt" -f null - ``` **Parameters:** | Parameter | Description | Default | Range | |-----------|-------------|---------|-------| | `low` | Low edge threshold | 5 | 1-100 | | `high` | High edge threshold | 15 | 1-100 | | `radius` | Search radius | 50 | 1-100 | | `block_pct` | Block percentage | 80 | 0-100 | | `block_width` | Block width | - | > 0 | | `block_height` | Block height | - | > 0 | | `planes` | Planes to analyze | 1 | 0-15 | **Output metadata:** - `lavfi.blur` - Blur value (lower = blurrier) ### scdet - Scene Change Detection Detects scene changes based on frame-to-frame differences. ```bash # Basic scene detection ffmpeg -i input.mp4 -vf "scdet=threshold=10:sc_pass=1" -f null - # More sensitive (detect more scene changes) ffmpeg -i input.mp4 -vf "scdet=threshold=5" -f null - # Output scene changes with timestamps ffmpeg -i input.mp4 -vf "scdet=t=10,metadata=print:file=scenes.txt" -f null - # Combined with select filter to extract scene thumbnails ffmpeg -i input.mp4 -vf "scdet=threshold=10,select='gt(scene,0.4)',showinfo" \ -vsync vfr scene_%04d.jpg ``` **Parameters:** | Parameter | Description | Default | Range | |-----------|-------------|---------|-------| | `threshold` / `t` | Scene change threshold | 10.0 | 0-100 | | `sc_pass` | Pass scene score to output | 0 | 0-1 | **Output metadata:** - `lavfi.scd.score` - Scene change score (0-1) - `lavfi.scd.mafd` - Mean absolute frame difference - `lavfi.scd.time` - Timestamp of scene change ### cropdetect - Auto Crop Detection Automatically detects optimal crop values to remove black borders. ```bash # Basic crop detection ffmpeg -i input.mp4 -vf "cropdetect=24:16:0" -f null - # More aggressive detection (lower threshold) ffmpeg -i input.mp4 -vf "cropdetect=16:2:0" -f null - # Detect and apply crop in one command crop=$(ffmpeg -i input.mp4 -vf "cropdetect=24:16:0" -f null - 2>&1 | \ grep -oP 'crop=\K[0-9:]+' | tail -1) ffmpeg -i input.mp4 -vf "crop=$crop" output.mp4 # Detect letterbox dimensions ffmpeg -i input.mp4 -vf "cropdetect=round=2:reset=0" -f null - 2>&1 | grep crop ``` **Parameters:** | Parameter | Description | Default | Range | |-----------|-------------|---------|-------| | `limit` | Threshold for black pixels | 24 | 0-255 | | `round` | Round to nearest multiple | 16 | >= 2 | | `reset` | Reset counter (frames) | 0 | >= 0 | | `skip` | Skip initial frames | 0 | >= 0 | **Output format:** ```text [cropdetect @ 0x...] x1:0 x2:1919 y1:140 y2:939 w:1920 h:800 x:0 y:140 crop=1920:800:0:140 ``` ### idet - Interlace Detection Detects whether video is interlaced and identifies field order. ```bash # Basic interlace detection ffmpeg -i input.mp4 -vf "idet" -frames:v 500 -f null - # Output detection summary ffmpeg -i input.mp4 -vf "idet" -f null - 2>&1 | grep -A5 "Repeated Fields" ``` **Output includes:** - Single (progressive frames) - Multi (interlaced - multiple fields from same frame) - Repeated (repeated fields - pulldown) - Top Field First (TFF) vs Bottom Field First (BFF) --- ## Quality Metrics ### psnr - Peak Signal-to-Noise Ratio Compares two videos and outputs PSNR quality metric. ```bash # Compare original vs encoded ffmpeg -i original.mp4 -i encoded.mp4 \ -lavfi "[0:v][1:v]psnr" -f null - # Output PSNR per frame to file ffmpeg -i original.mp4 -i encoded.mp4 \ -lavfi "[0:v][1:v]psnr=stats_file=psnr.log" -f null - # Get average PSNR only ffmpeg -i original.mp4 -i encoded.mp4 \ -lavfi "[0:v][1:v]psnr" -f null - 2>&1 | grep "average" ``` **Output format:** ```text [Parsed_psnr_0 @ 0x...] PSNR y:45.123 u:48.456 v:49.789 average:46.234 min:35.123 max:inf ``` **Quality guidelines:** | PSNR (dB) | Quality | |-----------|---------| | > 40 | Excellent (indistinguishable) | | 35-40 | Good | | 30-35 | Fair | | < 30 | Poor | ### ssim - Structural Similarity Index More perceptually accurate than PSNR for quality comparison. ```bash # Compare original vs encoded ffmpeg -i or
Related in Image & Video
watch
IncludedWatch a video (URL or local path). Downloads with yt-dlp, extracts auto-scaled frames with ffmpeg, pulls the transcript from captions (or Whisper API fallback), and hands the result to Claude so it can answer questions about what's in the video.
physical-ai-defect-image-generation
IncludedUse when the user wants to orchestrate defect image generation, run associated setup, or handle outputs on OSMO. The Day 0 path handles cold-start with USD-to-ROI, image-edit augmentation, and AnomalyGen to create initial PCBA datasets. The Day 1 path performs inference and labeling on real images. This skill helps with first-time asset setup, creation of finetuning checkpoints, and configuring deployment. Trigger keywords: defect image generation, dig workflow, dig pipeline, defect image detection workflow, aoi pipeline, aoi anomalygen, usd2roi anomalygen, day 0 pcba, day 1 pcba, day 1 real-photo alignment, day 1 manual roi, metal surface anomaly, glass defect, anomalygen finetune, setup_pcb, setup_metal, setup_glass, setup_pretrained, dig setup, dig datasets, dig pretrained checkpoint, dig image-edit endpoint.
accelint-react-best-practices
IncludedReact performance optimization and best practices. ALWAYS use this skill when working with any React code - writing components, hooks, JSX; refactoring; optimizing re-renders, memoization, state management; reviewing for performance; fixing hydration mismatches; debugging infinite re-renders, stale closures, input focus loss, animations restarting; preventing remounting; implementing transitions, lazy initialization, effect dependencies. Even simple React tasks benefit from these patterns. Covers React 19+ (useEffectEvent, Activity, ref props). Triggers - useEffect, useState, useMemo, useCallback, memo, inline components, nested components, components inside components, re-render, performance, hydration, SSR, Next.js, useDeferredValue, combined hooks.
elevenlabs-agents
IncludedBuild conversational AI voice agents with ElevenLabs Platform using React, JavaScript, React Native, or Swift SDKs. Configure agents, tools (client/server/MCP), RAG knowledge bases, multi-voice, and Scribe real-time STT. Use when: building voice chat interfaces, implementing AI phone agents with Twilio, configuring agent workflows or tools, adding RAG knowledge bases, testing with CLI "agents as code", or troubleshooting deprecated @11labs packages, Android audio cutoff, CSP violations, dynamic variables, or WebRTC config. Keywords: ElevenLabs Agents, ElevenLabs voice agents, AI voice agents, conversational AI, @elevenlabs/react, @elevenlabs/client, @elevenlabs/react-native, @elevenlabs/elevenlabs-js, @elevenlabs/agents-cli, elevenlabs SDK, voice AI, TTS, text-to-speech, ASR, speech recognition, turn-taking model, WebRTC voice, WebSocket voice, ElevenLabs conversation, agent system prompt, agent tools, agent knowledge base, RAG voice agents, multi-voice agents, pronunciation dictionary, voice speed control, elevenlabs scribe, @11labs deprecated, Android audio cutoff, CSP violation elevenlabs, dynamic variables elevenlabs, case-sensitive tool names, webhook authentication
humanizer
IncludedHumanize AI-generated text by detecting and removing patterns typical of LLM output. Rewrites text to sound natural, specific, and human. Uses 28 pattern detectors, 560+ AI vocabulary terms across 3 tiers, and statistical analysis (burstiness, type-token ratio, readability) for comprehensive detection. Use when asked to humanize text, de-AI writing, make content sound more natural/human, review writing for AI patterns, score text for AI detection, or improve AI-generated drafts. Covers content, language, style, communication, and filler categories.
generating-mermaid-diagrams
IncludedSalesforce architecture diagrams using Mermaid with ASCII fallback. Use this skill when generating text-based diagrams for Salesforce architecture, OAuth flows, ERDs, integration sequences, or Agentforce structure. TRIGGER when: user says "diagram", "visualize", "ERD", or asks for sequence diagrams, flowcharts, class diagrams, or architecture visualizations in Mermaid. DO NOT TRIGGER when: user wants PNG/SVG image output (use generating-visual-diagrams), or asks about non-Salesforce systems.