Calabi Labs · Guide · 2026-05-27
iPhone 16 Pro Max records video with embedded metadata automatically — frame rate, resolution, color space, and device info are baked into the file. To add or modify custom metadata (location data, credits, copyright, descriptive tags), you have three practical paths:
Calabi is purpose-built for this. It gives you a clean interface to inspect and edit video metadata including iPhone-specific fields.
Steps:
Works with HEVC, ProRes, and all iPhone 16 Pro Max codec formats.
iPhone 16 Pro Max videos captured on-device already carry metadata. You can add to it via Apple Photos on Mac or iCloud:
For true metadata embedding in the video file, use Method 1 or 3.
For full control over every metadata field on any platform:
```bash
ffmpeg -i input.mp4 -metadata title="My Video Title" \ -metadata author="Your Name" \ -metadata copyright="© 2025 Your Name" \ -metadata location="City, Country" \ -metadata description="Video description here" \ -c:v copy -c:a copy output_with_metadata.mp4 ```
Key iPhone 16 Pro Max metadata fields to know:
| Field | Description |
|---|---|
make | Apple |
model | iPhone 16 Pro Max |
creation_time | When recorded |
com.apple.quicktime.make | Device manufacturer |
com.apple.quicktime.model | Full device name |
com.apple.quicktime.location.ISO6709 | GPS coordinates |
To view existing metadata:
``bash ffprobe -v quiet -print_format json -show_format -show_streams input.mp4 ``
Your iPhone 16 Pro Max records in HEVC (H.265) or ProRes depending on settings. Metadata support:
| Need | Use |
|---|---|
| Quick, no-tech metadata editing | Calabi |
| Basic title/description only | Apple Photos |
| Batch editing many files | FFmpeg |
| Professional post-production | Calabi + FFmpeg combo |
| iPhone-specific fields preserved | Keep original file + re-export via Calabi |
Try Calabi free at calabilabs.com — 3 cleans, no card.