Free video editor with no watermark
Cut a section out, trim to the part you want, change the speed, drop the audio or convert the format — then download a file with nothing stamped on it. No account, no export limit, no paid tier, and the video never leaves your browser. The reason that is possible is worth understanding before you trust it, so it is explained below rather than asserted.
Drop your video here
or click to browse — MP4, MKV, MOV, WebM, AVI and more
Why free online editors put a logo on your video
Not out of malice, and not as a trick. A server-based editor has to receive your file, decode it, apply the edit, re-encode it and send it back, and every one of those steps runs on hardware someone is paying for by the minute. Video is the most expensive common workload on the web: a few minutes of 4K can occupy a machine for longer than the clip itself lasts.
A free tier has to pay for that somehow. The watermark is the neatest way — it costs nothing to add, it does not degrade the edit, and it advertises the paid plan that removes it to everyone who sees the video. That is a rational trade for a company with an encoding bill.
What "free" usually costs instead
Worth checking for before you upload anything, because these are the six ways the bill comes back:
A watermark
A logo burned into the frames. It cannot be removed afterwards without cropping or re-encoding over it, because it is now part of the picture.
A sign-up
An email address before the export button works, which is the point of the free tier for the operator.
A length or size cap
Free up to a few minutes, or a few hundred megabytes, then a paid plan. Reasonable on their side: those minutes cost them CPU time.
A resolution cap
The edit is free; getting it back at the resolution you gave them is not.
A queue
Your file waits its turn on shared hardware, which is why a two-minute clip can take twenty minutes at busy times.
The upload itself
The slowest step, and the one that puts a copy of your recording on someone else's disk under a retention policy you did not write.
Why this one has nothing to stamp
The encoding does not happen on a server here. It happens in the tab you are reading this in: FFmpeg compiled to WebAssembly is downloaded once, your file is read off your own disk into the page, and the edit runs on your processor. The operator's cost per edit is not small — it is zero. Serving the page and the engine costs the same whether you edit one clip or fifty.
With no per-edit cost there is no free tier to defend, so there is no watermark, no account, no queue, no length cap and no upsell. This is not generosity; it is what the architecture makes cheap. The full pipeline is documented, and the no-upload claim is one you can verify yourself in about ninety seconds with your browser's network tab.
What you actually get
- The output at the source's own resolution, unless you cap it at 1080p, 720p or 480p on purpose.
- H.264 video and AAC audio in MP4, MKV or MOV; VP8 and Opus if you pick WebM. The encoder settings are published.
- A file named after the one you opened, so a folder of edits does not become
output (3).mp4. - Nothing added to the frames, nothing written into the metadata, and no branded intro or outro.
And the honest costs
Three of them, all of which follow from doing the work locally. The first edit downloads about 32 MB of engine, cached afterwards. Encoding uses your CPU, so a long clip on a modest laptop or a phone takes longer than it would on rented hardware. And the practical ceiling is memory, not a policy: the input, the working buffers and the output all sit in the tab at once, which this guide puts real numbers around.
There is also a feature cost. This is a cutting, retiming and converting tool — there is no crop, no rotate, no joining several files, no titles and no transitions. If you need those, a full editor is the right answer, and several free ones exist that do not watermark either.
Questions about watermarks and limits
Is the output really free of any watermark?
Why do other free online editors add one?
Do I need an account or an email address?
Is there a length limit or a file size limit?
What is the catch, then?
Can I use the output commercially?
The same editor, by job
Every one of these is the tool above with a different starting point: cut a section out, trim to one part, speed a stretch up, slow one down, remove the audio, downscale it or change the container. None of them watermark anything either.
Guides related to this
How to check any online tool's claims for yourself, where a browser tab actually runs out of room, and what a re-encode costs in quality.
- How to check if an online video editor uploads your fileEvery browser tool claims to be private. You can verify the claim in about ninety seconds with the tools already in your browser. Here is exactly how.
- Trimming large video files online: what the real limit isServer-based tools cap file size because your upload costs them money. A browser tool's ceiling is the WebAssembly heap; here is how to work within it.
- How to trim a video without losing qualityTrimming only loses quality if the video gets re-encoded. Here is when that happens, when it does not, and the trade you are making either way.