Video Trim Tool
Cut a video down to the section you actually need. Re-encodes to a clean MP4 that plays everywhere.
What this tool does
- Frame-accurate start / end input
- Outputs MP4 (H.264 + AAC)
- Files stay on-device
How to use
- 1
Pick a video
MP4 / MOV / MKV.
- 2
Set start / end
In seconds, with visual range preview.
- 3
Trim
Preview + download appear when done.
What each setting means
Recommended settings
Common pitfalls
Symptom: Cut starts in the wrong place
Cause: Keyframe alignment.
Fix: Try ±1s on the start, or accept slight drift.
Symptom: Audio missing
Cause: Source uses uncommon audio codec.
Fix: Convert to MP4 first, then trim.
Equivalent FFmpeg commands
Reference commands you can run on the desktop FFmpeg CLI.
ffmpeg -i input.mp4 -ss 5 -to 25 -c:v libx264 -crf 23 -preset fast -c:a aac -b:a 128k -movflags +faststart output.mp4ffmpeg -ss 5 -to 25 -i input.mp4 -c copy output.mp4Browser support & limits
- MP4 output only
- Single range per run
Privacy
This tool runs ffmpeg.wasm directly in your browser. Files never leave your device — everything runs locally. Read the privacy policy →
Frequently asked questions
Can I copy-stream (no re-encode)?
Not in this tool — we always re-encode for predictable output. Use FFmpeg -c copy on the desktop if you need that.
Can I cut multiple ranges?
Currently one range only. Run multiple trims and concat them in a separate tool.
Long videos?
Up to ~500MB input.