How to Trim a Video Online: Free, No Upload, No Watermark
Trimming a video — cutting it down to just the part you need — is one of the most common video edits, and one of the most frustrating to do "for free." Most online trimmers cap clip length, slap a watermark across the output, or require an account after the first use. The fix depends on whether you need a quick lossless cut or a frame-accurate one, and whether you're willing to upload your video to a third party.
Quick answer: To trim a video for free with no watermark and no upload, use Convertlo's Video Trimmer. Upload your video, set a start and end time using the live preview, and download the trimmed clip. It runs entirely in your browser via FFmpeg.wasm — your video never leaves your device, there's no watermark, and no account is required.
Trim a Video in Your Browser (No Upload, No Watermark)
- Go to convertlo.pro/video-trimmer.html
- Drop in your video file — MP4, MOV, WebM, MKV, and most other formats are supported
- The video loads into a preview player showing its total duration
- Play the video to the point where you want the clip to start, then click "Set to current" next to the start field (or type the time in seconds directly)
- Repeat for the end time
- Click Trim — the tool first attempts a fast, lossless cut (stream copy); if the format doesn't support that cleanly, it automatically falls back to a quality-preserving re-encode
- Download the result — same format as the source, just shorter
Trim a Video Right Now
Set start and end times, cut, and download — free, in your browser, no watermark.
Fast Trim vs. Re-encode: What's the Difference?
Every video file is made of "frames," but only some frames — called keyframes — contain a complete image. The frames in between only store the differences from the nearest keyframe, which is what makes video compression so effective. This has a direct consequence for trimming:
| Fast trim (stream copy) | Re-encode | |
|---|---|---|
| Speed | Seconds, regardless of length | Roughly real-time or slower |
| Quality | Zero loss — bytes are copied as-is | Slight loss from re-compression |
| Cut accuracy | Snaps to nearest keyframe (±1–2s) | Frame-accurate |
| Format support | Works when codecs are compatible | Always works |
Convertlo's Video Trimmer tries the fast method first automatically — it attempts -c copy trimming, and only falls back to re-encoding with libx264/aac if the fast cut produces an unusably small or broken output. For most users this means: short clips for quick sharing finish almost instantly, while precise edits where the exact frame matters get the slower but accurate path automatically.
When Frame-Accuracy Matters (and When It Doesn't)
If you're trimming a 10-minute screen recording down to the relevant 2 minutes for a colleague, a cut that's off by a second at the start or end is irrelevant — fast trim is perfect. If you're cutting a music video to the exact beat, or removing a single frame of a flash from a clip before posting it, you need frame-accurate trimming, which means accepting the re-encode tradeoff. Most consumer trimming tools, including Convertlo's, default to whichever method produces a valid result fastest, then let you re-run with adjusted times if the cut point looks slightly off.
Desktop and Mobile Methods (No Upload Required)
iPhone / iPad — Photos App
- Open the video in the Photos app
- Tap Edit
- Drag the yellow trim handles at each end of the filmstrip timeline
- Tap Done, then choose "Save as New Clip" to keep the original untouched
This is a lossless trim performed entirely on-device — no upload, no re-encoding for most clips.
Android — Google Photos
Open the video in Google Photos, tap Edit, drag the trim handles, and save as a copy. Same on-device behavior as iOS.
Windows — Clipchamp (built into Windows 11)
Windows 11 ships with Clipchamp pre-installed. Import your video, drag the trim handles on the timeline, and export. It runs locally and supports more formats and export options than the Photos app's basic trim.
Mac / Cross-platform — ffmpeg (Command Line)
For a lossless trim from the terminal:
ffmpeg -ss 00:01:30 -i input.mp4 -t 00:00:45 -c copy output.mp4
This starts at 1:30, copies 45 seconds without re-encoding, and writes output.mp4. If the result looks broken or the cut point is noticeably off, add -c:v libx264 -c:a aac in place of -c copy to force a re-encode that cuts at the exact frame.
Common Trimming Scenarios
Trimming a screen recording for a bug report
Screen recordings are often 10x longer than the actual bug demonstration. Fast trim (stream copy) is ideal here — the recording's keyframe interval is usually short, so the ±1-2 second imprecision rarely matters when the goal is "show the bug happening."
Cutting a highlight clip for social media
Social platforms have their own length and format requirements (see Convertlo's Best Video Format for Social Media guide). Trim first to the rough section you want, then run the trimmed clip through a format converter if the platform needs a different container or codec.
Removing a few seconds of dead air from the start and end
The most common trim of all — and the one where fast trim shines, since a second or two of imprecision at a "dead air" boundary is invisible.