Agent skill · Media & Video

video-metadata-inspector

Use when asked to inspect video file metadata, get video duration, resolution, codec information, frame rate, or bitrate.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill video-metadata-inspector --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/video-metadata-inspector/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Video Metadata Inspector Extract and analyze comprehensive metadata from video files including duration, resolution, codec, frame rate, and technical specifications. ## Purpose Video metadata inspection for: - Format verification and compatibility checking - Quality assessment and validation - Transcoding planning and optimization - Video library cataloging - Technical specification reports ## Features - **Basic Info**: Duration, resolution, frame rate, file size - **Codec Details**: Video/audio codec, profile, bitrate - **Technical Specs**: Aspect ratio, pixel format, sample rate - **Metadata**: Title, artist, creation date, tags - **Batch Analysis**: Process multiple files in one operation - **Export Formats**: JSON, CSV, human-readable text ## Quick Start ```python from video_metadata_inspector import VideoMetadataInspector # Inspect single video inspector = VideoMetadataInspector() inspector.load('video.mp4') metadata = inspector.get_metadata() print(f"Duration: {metadata['duration_seconds']:.2f}s") print(f"Resolution: {metadata['width']}x{metadata['height']}") print(f"FPS: {metadata['fps']}") # Export full report inspector.export_report('report.json', format='json') # Batch

What's inside
Steps it walks through
  1. Purpose
  2. Features
  3. Quick Start
  4. CLI Usage
  5. API Reference
  6. VideoMetadataInspector
  7. Metadata Categories
  8. Basic Information
  9. Video Stream
  10. Audio Stream
  11. Container Format
  12. Use Cases
  13. Common Checks
  14. Limitations
Ships with 1 file
  • metadata.json
Commands it runs
Basic metadata
python video_metadata_inspector.py input.mp4
Full technical details
python video_metadata_inspector.py input.mp4 --verbose
Export to JSON
python video_metadata_inspector.py input.mp4 --output metadata.json --format json
Batch inspect directory
python video_metadata_inspector.py *.mp4 --output metadata.csv --format csv
Compare multiple videos
python video_metadata_inspector.py video1.mp4 video2.mp4 --compare
More from claude-skill-registry
All skills →
About this skill
What does the video-metadata-inspector skill do?

Use when asked to inspect video file metadata, get video duration, resolution, codec information, frame rate, or bitrate.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill video-metadata-inspector --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going