Calabi Labs · Guide · 2026-05-24
AI metadata (also called NAI metadata — non-creator AI generation data) is embedded information that video editors, AI tools, and platforms attach to footage during processing. It includes things like the AI model used, generation timestamps, edit history, platform attribution, and technical hashes that can identify synthetic content.
To remove AI metadata from a video: use a dedicated metadata stripping tool, re-encode the video through a converter, or manually strip EXIF/metadata headers using a video utility. Re-encoding is the most reliable universal method. Dedicated tools are fastest.
Re-encoding with a standard codec strips all non-native metadata. Use a tool like HandBrake, FFmpeg, or Shotcut:
``bash ffmpeg -i input.mp4 -map_metadata -1 -c:v libx264 -crf 18 output.mp4 ``
The -map_metadata -1 flag strips all metadata in one step. Re-encoding at high quality (CRF 18 or lower) preserves visual fidelity while removing every metadata field.
Tools like Calabi, ExifTool, and some video editors have one-click metadata stripping:
``bash exiftool -all= video.mp4 `` Handles most common metadata fields but may miss proprietary AI tags.
Open the video in an editor like DaVinci Resolve, Premiere Pro, or CapCut and re-export. New export = fresh metadata. This is simple but slower and re-compresses your footage.
Some platforms strip metadata on upload automatically, but this isn't guaranteed and you lose control over the process.
Common fields you'll encounter:
| Field Type | Examples |
|---|---|
| AI Model tags | AIModel: StableDiffusionXL, Generator: Runway v3 |
| Timestamps | CreatedWithAI_Time, processing duration logs |
| Platform attribution | UploadedVia: CapCut, ServiceTag: some_AI_editor |
| Hash signatures | Cryptographic hashes identifying the generation pipeline |
| Edit history | LayerCount, AppliedFilters, RenderEngine |
These are often stored in container metadata (MP4/iXML boxes, MOV atoms, MKV tags) rather than visible file properties.
-a -G1 flags, or Calabi's preview panel.Try Calabi free at calabilabs.com — 3 cleans, no card.