Privacy Basics
How to Remove Metadata From Video Files (MP4, MOV) — Free Guide
Strip GPS, creation date, device info, and encoder tags from MP4 and MOV video files. Step-by-step methods for Windows, macOS, iPhone, Android, and the web.
· 8 min read
Photos aren't the only files that leak. MP4 and MOV videos embed location, creation timestamps, device model, and encoder fingerprints in their container — and almost no one strips them before uploading to YouTube, TikTok, or Slack. This guide shows you exactly how to remove metadata from a video file on every major platform, for free.
What Metadata Is in a Video File
Modern video containers (MP4, MOV, MKV) store metadata in atoms/boxes — chunks of data labeled by four-character codes. The most common privacy-sensitive fields:
- \u00a9xyz / GPS — latitude, longitude, altitude when the video was recorded
- com.apple.quicktime.location.ISO6709 — Apple's location atom (iPhone-recorded videos)
- CreationDate — exact timestamp of recording
- Make / Model — phone or camera brand and model
- Software — encoder used (HandBrake, iOS version, FFmpeg, OBS)
- Encoder serial — proprietary tags that fingerprint the encoding device
A standard iPhone-recorded MOV file leaks all of the above. See the EFF's guide to digital footprints for the broader threat model.
The Fastest Free Method (Web, No Install)
- Open MetaClean Pro.
- Drag your MP4 or MOV in.
- Click Clean Metadata.
- Download the cleaned file.
Works for files up to 500 MB on the free plan, larger on Premium.
Try MetaClean — clean this kind of file in seconds.
Strip EXIF, GPS, author, and edit-history metadata from photos, PDFs, and Office documents right in your browser.
Clean a file now · See what gets removed · Step-by-step guides · Pricing
FFmpeg (Free, Cross-Platform, Best for Power Users)
FFmpeg is the universal video tool and the cleanest way to strip metadata without re-encoding (no quality loss):
``` ffmpeg -i input.mp4 -map_metadata -1 -c:v copy -c:a copy output.mp4 ```
- `-map_metadata -1` removes all metadata
- `-c:v copy -c:a copy` skips re-encoding, so it runs in seconds and preserves quality
For MOV files, the same command works with `.mov` extensions.
Windows
Built-in (limited): Right-click the video → Properties → Details tab → Remove Properties and Personal Information. Windows only handles a subset of fields and ignores Apple's QuickTime atoms entirely.
Recommended: Use the web cleaner or FFmpeg.
macOS
Apple Photos / QuickTime do not remove video metadata. The "Share" sheet location toggle only affects what's shown, not what's embedded.
Use FFmpeg via Homebrew: ``` brew install ffmpeg ffmpeg -i in.mov -map_metadata -1 -c copy out.mov ```
Or drop the file into MetaClean Pro.
iPhone
iOS does not offer a built-in way to strip video metadata. Workarounds:
- Before recording — Settings → Privacy & Security → Location Services → Camera → Never. This prevents GPS from being embedded in the first place.
- Existing videos — share to MetaClean Pro in mobile Safari, or use the Shortcuts app with a remove-metadata action.
Android
Same as iPhone in spirit: prevent at recording time, or strip after. Most Android camera apps have a "Save location" toggle. For existing files, use a free Android tool like Scrambled Exif (also handles videos) or upload to the web cleaner.
What Platforms Already Strip
- YouTube, TikTok, Instagram Reels — re-encode videos and strip most metadata in the process.
- Twitter/X, Facebook — strip most EXIF and location.
- WhatsApp — strips most metadata when sent as "video", less when sent as "document".
- Telegram — strips less than WhatsApp. See does Telegram remove metadata.
- Slack, Google Drive, iCloud, Dropbox — strip nothing. Whatever you upload, recipients can extract.
If you ever share files via cloud links, file transfer, or email, strip before uploading.
Verify the Metadata Is Gone
Use MediaInfo (free, open-source) or run: ``` ffprobe -v error -show_entries format_tags:stream_tags cleaned.mp4 ```
An empty output means you're clean.
Common Mistakes
- "Trimming" a video in iOS Photos doesn't strip metadata. It re-saves the same atoms.
- Re-encoding with default settings keeps metadata. Always pass `-map_metadata -1` in FFmpeg.
- Compressing to ZIP doesn't strip metadata. The file inside still carries it.
FAQ
Does removing video metadata reduce quality? No, if you use `-c copy` in FFmpeg or any tool that strips without re-encoding. MetaClean Pro does this by default.
Can I remove metadata from a Zoom recording? Yes. MP4 files from Zoom carry creation date and software fingerprint. Strip the same way as any MP4.
What about 4K HDR videos? Fully supported. Metadata removal doesn't touch HDR color metadata required for playback (HDR transfer characteristics live in the video bitstream, not the file's user metadata).
Conclusion
Video metadata is a bigger privacy hole than photo metadata — files are larger, fields are more numerous, and almost no one cleans them. Make stripping a habit. For one-offs, use the free video metadata cleaner. For workflows, FFmpeg or Premium batch processing. For background, read about the hidden dangers of file metadata.
Try MetaClean Pro free — remove metadata from your files in seconds.