Calabi Labs · Guide · 2026-05-26

How to add iphone 15 pro max metadata to a video

How to add iphone 15 pro max metadata to a video

How to Add iPhone 15 Pro Max Metadata to a Video

iPhone 15 Pro Max records video with rich technical metadata — including codec (HEVC/ProRes), frame rate, resolution (4K at 60fps), color space (HLG/Dolby Vision), and lens data — that's often stripped or altered when you edit or convert the file. Adding the correct metadata back ensures proper compatibility, playback, and color grading across editors and platforms.

What Metadata Matters on iPhone 15 Pro Max Video Files

Metadata FieldTypical iPhone 15 Pro Max ValueWhy It Matters
CodecHEVC (H.265) or Apple ProResAffects editing software compatibility
Frame Rate24, 30, 60, or 120 fpsMatching frame rate prevents audio sync issues
Resolution3840 × 2160 (4K UHD)Preserves sharpness on high-res displays
Color SpaceBT.2020 / HLG / Dolby VisionCritical for accurate color on HDR displays
Device ModeliPhone 15 Pro MaxIdentifies the source for proxy workflows
Lens0.99mm f/1.78 (main)Helps editors match color/science across clips
Capture Date/TimeUTC timestampSorts and syncs footage correctly
Gyro/Gyroscope DataRotation vectorsEnables gyroscope-based stabilization in tools

How to Add iPhone 15 Pro Max Metadata — 3 Methods

Method 1: FFmpeg (Free, Cross-Platform)

FFmpeg is the fastest way to inject or correct metadata on the command line.

Tag HEVC video with correct codec metadata: ``bash ffmpeg -i input.mov -c copy \ -metadata device="iPhone 15 Pro Max" \ -metadata make="Apple" \ -metadata model="iPhone 15 Pro Max" \ -metadata comment="Recorded on iPhone 15 Pro Max Main Camera" \ -tag:v hvc1 \ -map_metadata 0 \ output.mov ``

Force ProRes 422 HQ with full metadata: ``bash ffmpeg -i input.mov -c:v prores_ks -profile:v 3 \ -metadata make="Apple" \ -metadata model="iPhone 15 Pro Max" \ -metadata creation_time="$(date -Iseconds)" \ -color_primaries bt2020 \ -color_trc arib-b67 \ -colorspace bt2020_ncl \ output.mov ``

Key flags:

Method 2: ExifTool (Free, Detailed)

ExifTool gives fine-grained control over individual metadata fields.

Add device and technical metadata: ```bash

Install on macOS

brew install exiftool

Inject iPhone 15 Pro Max metadata

exiftool -overwrite_original \ -Model="iPhone 15 Pro Max" \ -Make="Apple" \ -LensModel="iPhone 15 Pro Max back camera 6.765mm f/1.78" \ -FocalLength="6.765mm" \ -FNumber="1.78" \ -ExposureTime="1/120" \ -ISO="200" \ -CreateDate="2024:03:15 14:32:01" \ -PixelXDimension="3840" \ -PixelYDimension="2160" \ -ColorSpace="sRGB" \ -ColorSpace_sRGB="1" \ -VideoCodec="HEVC" \ -FrameRate="60" \ -Megapixels="48" \ -SubSecCreateDate="2024:03:15 14:32:01.000" \ input.mov ```

Verify metadata was written: ``bash exiftool input.mov | grep -E "Model|Make|Codec|FrameRate|Resolution" ``

ExifTool is especially useful for batch-processing multiple clips from a shoot.

Method 3: Add Metadata with Calabi (Fastest, No Coding)

If you want a visual tool that handles iPhone 15 Pro Max metadata cleanly without a terminal, Calabi lets you drag in your video, pick your device preset, set your fields, and export — all in a browser window with zero signup.

Steps:

  1. Open calabilabs.com
  2. Drop your video file
  3. Select iPhone 15 Pro Max from the device preset list
  4. Add any custom fields (client name, project ID, shoot date)
  5. Click Export — metadata is written into the file, ready for your NLE or delivery

Calabi preserves the original codec and quality; it doesn't re-encode your video just to add metadata.

Common Issues & Fixes

Metadata is stripped after editing in Premiere/DaVinci Resolve

Video shows wrong colors on playback

ProRes files not recognized by some players

Batch-adding metadata to an entire folder ```bash

FFmpeg batch

for f in *.mov; do ffmpeg -i "$f" -c copy \ -metadata device="iPhone 15 Pro Max" \ -metadata make="Apple" \ -map_metadata 0 \ "marked_${f}" done

ExifTool batch

exiftool -overwrite_original -Model="iPhone 15 Pro Max" -Make="Apple" -r . ```

Quick Checklist Before Delivery

Try Calabi free at calabilabs.com — 3 cleans, no card.

3 free cleans. See the forensic proof before you download.
Try free →

Related