video-metadata-inspector
Use when asked to inspect video file metadata, get video duration, resolution, codec information, frame rate, or bitrate.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Purpose
- Features
- Quick Start
- CLI Usage
- API Reference
- VideoMetadataInspector
- Metadata Categories
- Basic Information
- Video Stream
- Audio Stream
- Container Format
- Use Cases
- Common Checks
- Limitations
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
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.
