If you’re trimming a clip that’s going into a doc, a Slack thread, or a Linear ticket, you need: drop the front, drop the back, done. You’re not editing a documentary.
These are the four ways to trim on a Mac, in order of how fast they actually are.
1. Inside your screen recorder (fastest)
If your recorder includes a trim panel — Zenguy, Screen Studio, CleanShot — this is the right answer. The clip is still loaded; the trim handles are right there. Two drags and you’re done.
Most modern recorders also let you preview while trimming, so you don’t accidentally cut out the punchline. The edit is non-destructive (you can still re-trim later).
Time-to-trim: ~15 seconds.
2. QuickTime Player (fast, free, built in)
Open the .mov in QuickTime, press ⌘ + T for Edit → Trim. A yellow timeline bar appears at the bottom. Drag the left and right handles inward, click “Trim” in the top-right.
Save with ⌘ + S (overwrites) or ⌘ + Shift + S (saves a copy).
Limitations:
- Only top-and-tail. You can’t cut a middle section.
- No frame-level precision. The handles snap to nearest second.
- MOV only. If you have an MP4 from another tool, QuickTime might still open it but trim sometimes refuses.
Time-to-trim: ~30 seconds.
3. Photos app (clunky but possible)
The macOS Photos app has a trim mode that mirrors iOS. Drop your video into the library, click Edit, drag the timeline handles. It works, but the import step is slow and you end up with a copy in your Photos library you didn’t want.
We’d skip this unless your only goal is to keep the clip alongside iPhone videos.
Time-to-trim: ~90 seconds (mostly import).
4. iMovie / Final Cut / DaVinci Resolve (overkill)
Don’t. Unless you’re going to compose, color-correct, or add titles, real video editors are the wrong tool. The time-to-export alone is longer than every other option combined.
We list this as a non-recommendation because tutorials sometimes default to “open iMovie” for a 5-second trim. It’s like emailing a screenshot via Photoshop.
Time-to-trim: 5+ minutes.
Cutting a middle section
Almost every native Mac tool handles “trim the start” and “trim the end” but not “remove a middle section.”
Options if you need a middle cut:
- Re-record. If the clip is under 60 seconds, re-recording is often faster than splicing.
- Use a recorder with split-and-delete. Zenguy, Screen Studio, and CleanShot let you scrub to a point, split, then delete a segment.
- iMovie or DaVinci Resolve. The right tool if you’re cutting more than once.
Honestly, the best mid-cut tool is “good first take.” If you’re doing tutorials and you fluff a sentence, just stop, take a breath, and start the sentence over. You’ll cut to the second take in trim.
If you know you'll trim later, leave 2 seconds of silence at the start of the recording. It gives you a clean grab handle and prevents accidentally cutting the first word.
Frame-level precision
Almost nobody needs it. The exception: you’re trimming on a beat (music, audio cue) and one frame matters.
If that’s you:
- DaVinci Resolve is free and frame-accurate. Steep learning curve.
- Final Cut Pro if you have it.
- ffmpeg with
-ssand-toflags for command-line precision:
ffmpeg -i input.mov -ss 00:00:03.500 -to 00:01:12.000 -c copy output.mov
The -c copy flag avoids re-encoding, which is fast and lossless. The trade-off is the cut may snap to the nearest keyframe (typically every 2 seconds).
For frame-perfect cuts, drop -c copy and let ffmpeg re-encode:
ffmpeg -i input.mov -ss 00:00:03.500 -to 00:01:12.000 output.mov
Slower, but exact.
Trimming + GIF in one shot
If your end goal is a GIF, you can trim and export in a single ffmpeg pass:
ffmpeg -i input.mov -ss 00:00:03 -to 00:00:18 \
-vf "fps=15,scale=720:-1:flags=lanczos" \
-loop 0 output.gif
15 seconds, 720px wide, 15 fps. That’s the right shape for a GitHub-issue GIF. Our GIF export guide has more on the trade-offs.
One panel: record, trim, export
Zenguy keeps your clips local and the editor inline. Drag two handles, hit export. No round trip through QuickTime.