Most online video converters work the same way: you pick a file, it uploads to a server, something happens there, and you download the result. It is a reasonable design and it has been standard for twenty years. It also means handing a complete copy of your footage to a company you know almost nothing about.
For a clip of your dog, that hardly matters. For a recording of a client meeting, a medical consultation, an unreleased product, or your own home, the calculation is different. This is a look at what actually happens to an uploaded file, what the policies typically permit, and why doing the work in the browser sidesteps the question rather than answering it.
What happens to an uploaded file
The upload itself is usually fine. Any competent service uses HTTPS, so the transfer is encrypted and nobody on your network is reading it in transit. The questions start once the file lands.
It gets written to disk on a server, because processing needs it there. It is likely copied to object storage, because that is how modern infrastructure works. The output is written somewhere too, and served from a URL. Backups may capture all of it. Logs record that the request happened, from which IP, at what time.
None of this is sinister - it is just how servers work. The issue is that each of those copies is a place your footage exists, on hardware you do not control, governed by a retention policy you did not negotiate.
What the policies usually say
Converter privacy policies tend to promise deletion after some window - an hour, a day, sometimes a week. Those promises are usually made in good faith. They are also weaker than they sound, for reasons worth naming.
Deletion windows are a policy, not a mechanism. Nothing verifiable stops the window from changing, and you would not be told if it did. Backups frequently outlive the primary copy by design, since the point of a backup is to survive deletion. And a policy binds a company, not the company that buys it - acquisitions and asset sales routinely transfer data under new terms.
The broader point: every one of these is a promise you are asked to trust. None of them is something you can check.
| Risk | Server-based converter | Browser-based |
|---|---|---|
| File copied to third-party disk | Yes | No |
| Retention depends on a policy | Yes | Nothing to retain |
| Exposed in a breach | Possible | Nothing to expose |
| Transfers on acquisition | Possible | Nothing to transfer |
| Subject to legal disclosure | Possible | Nothing to disclose |
| Verifiable by you | No | Yes, in devtools |
Where this genuinely matters
Plenty of footage is unremarkable and uploading it costs nothing. It is worth being clear about which cases are not that.
- Recordings involving patients, clients or students, where confidentiality is a professional obligation rather than a preference
- Legal footage - depositions, incident recordings, anything that may become evidence and needs a clean chain of custody
- Unreleased commercial material, where a leak has direct financial consequences
- Internal company recordings covered by an NDA you personally signed
- Anything filmed inside your home, which carries location and household detail you did not intend to publish
- Footage of other people who did not agree to have it uploaded anywhere
Under GDPR, uploading personal data to a third-party processor generally requires a lawful basis and often a data processing agreement. A free web converter with an unread privacy policy is not a compliant processor arrangement.
The metadata you forget about
A video file carries more than pictures. Phone footage typically embeds GPS coordinates, device model, and a creation timestamp accurate to the second. Professional cameras add serial numbers. Screen recordings can capture notification banners, open tabs, and whatever was visible in the background.
Uploading a file uploads all of that. Extracted frames usually shed most of it, because encoding a canvas to JPEG or PNG produces a fresh image without the source container’s metadata - but that only helps if the original never left your machine in the first place.
If you do need to share source footage, strip metadata first. ExifTool handles this in one command and is free on every platform.
Strip all metadata from a video
exiftool -all= input.mp4How browser-based processing changes the question
Browsers already contain video decoders and a canvas API that can capture what they produce. That is genuinely all frame extraction requires. Put the two together and the work happens on your machine, with no server involved at any point.
This is not a stronger promise than a good privacy policy. It is a different kind of thing entirely - there is no promise to keep, because there is no transfer to regulate. Nothing is retained because nothing arrives. Nothing leaks in a breach because nothing is stored. Nothing is disclosed under subpoena because there is nothing to hand over.
Try FrameRipper - free, no upload
Extract frames from any video directly in your browser. No sign-up, no file size limits.
Open FrameRipperHow to verify it yourself
The claim is checkable in under a minute, and you should check it rather than taking anyone’s word for it - including ours.
- 1Open the extractor and press F12 to open developer tools.
- 2Switch to the Network tab and clear whatever is listed.
- 3Select a video and run an extraction.
- 4Watch the request list. You will see no upload, and no request whose size resembles your file.
- 5For a stronger test: load the page, disconnect from wifi entirely, then extract. It works identically.
What browser-based processing does not protect you from
Worth being straight about the limits, because overselling this would be its own kind of dishonesty.
It does not protect against malware already on your machine - anything with local access can read your files regardless of which website you visit. It does not encrypt anything at rest; your video sits on your disk exactly as before. It says nothing about analytics or advertising on the page itself, which are separate systems that never touch your file but do involve third parties.
And it is not unique. FFmpeg running locally offers exactly the same guarantee and has for decades. The advantage of the browser is not that it is more private than desktop software - it is that it is as private as desktop software while being as convenient as a web tool.
A short checklist for any online tool
- Does it upload? Open the Network tab and find out rather than reading the marketing copy.
- If it uploads, what does the privacy policy actually say about retention and third parties?
- Is there a file size limit? A limit usually implies server-side processing.
- Does it work offline after loading? If yes, it is doing the work locally.
- Does the footage contain other people, confidential material, or your home? If so, prefer local processing regardless of the policy.
Try FrameRipper - free, no upload
Extract frames from any video directly in your browser. No sign-up, no file size limits.
Open FrameRipper