Initial commit: Video analyzer with ffmpeg-next

This commit is contained in:
2026-02-25 17:06:09 +08:00
parent 96af1c7e18
commit 35574fcdb8
7 changed files with 590 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Video Analyzer
A Rust-based tool to analyze video file metadata using FFmpeg.
## Features
- Extract video format, resolution, duration
- Analyze audio streams (sample rate, channels)
- Static/Dynamic linking support
## Usage
```bash
cargo build --release
./target/release/video_analyzer <video_file>
```