Trim Video Online (Free, No Upload)
Cut your video to the exact length you need without uploading anything. This tool runs entirely in your browser, so your files stay on your device. Completely free, no account required.
Try it in your browser
Loading FFmpeg engine... (~31 MB)
How to trim video online online
- 1Drop your video file into the tool above, or click to browse your files.
- 2Set the start and end times for the section you want to keep.
- 3Click trim and download your shortened video file.
About MP4 format
Video trimming removes unwanted sections from the beginning, end, or middle of a clip. It's one of the most common edits people need, whether you're shortening a screen recording, pulling a highlight from a longer video, or cutting dead air before posting to social media.
There are two approaches to trimming. Stream copy is fast because it doesn't re-encode the video. It just finds the nearest keyframes and cuts there. The downside is your cut points might be off by a fraction of a second. Re-encoding gives you frame-accurate cuts but takes longer and requires choosing quality settings.
For most people, stream copy is the right choice. It's instant, keeps the original quality, and the keyframe offset is usually too small to notice.
Use the API
curl -X POST https://renderio.dev/api/v1/run-ffmpeg-command \
-H "X-API-KEY: ffsk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"ffmpeg_command": "-i {{in_video}} -ss 00:00:10 -to 00:01:30 -c copy {{out_video}}",
"input_files": {
"in_video": "https://example.com/input.mp4"
},
"output_files": {
"out_video": "output.mp4"
}
}'Need an API key? Get your free API key to start processing files programmatically.
Common Variations
-i input.mp4 -t 30 -c copy output.mp4-sseof -60 -i input.mp4 -c copy output.mp4-i input.mp4 -ss 00:00:10 -to 00:01:30 -c:v libx264 -crf 23 -c:a aac output.mp4-i input.mp4 -ss 00:05:00 -t 120 -c copy output.mp4Frequently Asked Questions
Is this video trimmer really free?+
Are my files safe? Do you upload my video?+
What's the maximum file size I can trim?+
What video formats can I trim?+
Does this work on iPhone or Android?+
Will trimming reduce my video quality?+
What's the difference between trimming and cutting a video?+
Privacy
Your video files never leave your device. Everything runs locally in your browser, with no data uploaded to any server. Nothing is stored, logged, or tracked.
Related Operations
Need to process at scale?
Automate this with the RenderIO FFmpeg API. Process thousands of files programmatically or through no-code video automation.