How to Trim Video in VLC in 2026: Step-by-Step Guide + Better Alternatives
VLC can trim videos by setting start and end times in its Convert/Save dialog. The catch: VLC re-encodes the video, which means small quality loss and the operation takes time. For lossless trimming, FFmpeg with -c copy is faster and produces identical-quality output. This guide walks through the VL
Quick answer
VLC can trim videos by playing the clip, marking start and end points, and saving the selected portion as a new file using its Convert/Save feature. The result is a new video file containing only the selected segment. The catch: VLC re-encodes the video during this process, which means there is a small quality loss and the operation takes time on long videos. For lossless trimming without re-encoding, a command-line tool called FFmpeg is faster and produces identical-quality output.
Three honest distinctions before the details:
- VLC's trim is a conversion, not a non-destructive cut. The original file is untouched; the new file is a re-encoded copy with the trimmed segment. Quality is not pixel-identical to the source.
- VLC's trim is good enough for most casual use. If you need a quick clip for social media or sharing, VLC works. For broadcast or archival-quality output, use FFmpeg with stream copy.
- Trimming is a different operation from real editing. VLC can cut at start and end points, but it cannot cut out a middle section, splice clips together, or do transitions. For real editing, use a dedicated video editor.
Step-by-step: how to trim a video in VLC
The cleanest VLC method uses Convert/Save with start and end time set manually. As of VLC 3.x on Windows, macOS, or Linux:
Step 1: Open VLC and load your video
- Launch VLC.
- Drag and drop your video file into the VLC window, or use Media > Open File.
Step 2: Find your trim points
- Play the video and use the playback controls to find the start point of the segment you want to keep.
- Pause at the start point. You can use the frame-by-frame controls (the "E" key advances one frame at a time) for precise cutting.
- Note the timestamp (shown in the playback bar).
- Play forward to the end point of the segment you want to keep. Pause and note that timestamp.
Tip: VLC's "Jump to specific time" feature (Ctrl+T on Windows, Cmd+T on macOS) lets you jump to an exact position. Useful for finding trim points without scrubbing.
Step 3: Open the Convert/Save dialog
- Go to Media > Convert/Save (or Ctrl+R / Cmd+R).
- Click "Add" and select your video file.
- Click "Convert/Save" at the bottom.
Step 4: Set start and end times
- In the Convert dialog, find the "Profile" dropdown. Pick a profile that matches your output format (MP4 is a safe default).
- Click the wrench / spanner icon next to the profile dropdown to edit the profile. Confirm the codec (H.264 video, AAC audio) and container (MP4) match what you want.
- Click "Start time" and enter the start point in HH:MM:SS format.
- Click "End time" and enter the end point in HH:MM:SS format.
Format examples:
00:00:30= 30 seconds00:01:30= 1 minute 30 seconds01:30:00= 1 hour 30 minutes
Step 5: Choose the output file
- Click "Destination" and choose "File."
- Enter the path and filename for the trimmed video, including the file extension (.mp4 is a safe choice).
Step 6: Start the trim
- Click "Start." VLC will re-encode the selected portion of the video and save it as a new file.
- The progress bar shows how long the conversion will take. For a 5-minute clip on a modern computer, expect 30 seconds to a few minutes depending on video length and resolution.
Step 7: Verify the result
- When VLC finishes, open the new file in VLC (or any other video player).
- Check that the trim points are correct and the audio is in sync with the video.
That's the full process. It looks long because each step is detailed, but the actual operation is fast.
Alternative: lossless trim with FFmpeg
If you need the trimmed output to be byte-for-byte identical to the source (no quality loss, no re-encoding), use FFmpeg from the command line:
Trim from 30 seconds to 90 seconds:
ffmpeg -i input.mp4 -ss 00:00:30 -to 00:01:30 -c copy output.mp4
The -c copy option tells FFmpeg to stream-copy the original audio and video without re-encoding. The output file is byte-for-byte identical to the source for the trimmed portion.
Trim the first 30 seconds:
ffmpeg -i input.mp4 -ss 00:00:30 -c copy output.mp4
Trim a segment with precise frame accuracy:
ffmpeg -i input.mp4 -ss 00:00:30.500 -to 00:01:30.000 -c copy output.mp4
Cut from end (keep the first 5 minutes):
ffmpeg -i input.mp4 -t 00:05:00 -c copy output.mp4
FFmpeg advantages:
- Lossless: no re-encoding, identical quality.
- Fast: completes in seconds for stream-copy operations.
- Precise: frame-accurate cuts when you specify timestamps with milliseconds.
- Free and open-source.
FFmpeg disadvantages:
- Command-line only. No GUI.
- Stream-copy cuts only work on keyframe boundaries for some codecs. For frame-accurate cuts, you may need to re-encode the small surrounding region.
- Requires installing FFmpeg (or using a packaged version).
Better alternatives for non-destructive trimming
For more flexible editing, dedicated video editors offer non-destructive trim, which means the original file is untouched and your trim can be adjusted without re-exporting.
Free, non-destructive trim tools
- DaVinci Resolve (free) — professional-grade, non-destructive trim, no quality loss. The strongest free video editor for trim and beyond.
- Kdenlive (free, open-source) — non-destructive trim, runs on Windows / macOS / Linux.
- Shotcut (free, open-source) — non-destructive trim, lightweight.
- OpenShot (free, open-source) — non-destructive trim, simple UI.
- CapCut desktop (free) — non-destructive trim, popular for social media.
Built-in trim tools
- macOS QuickTime Player — Trim function in the Edit menu. Free, simple, non-destructive. The trimmed version can be saved as a new file.
- Windows Photos app — Trim function in the photo / video viewer. Free, non-destructive.
- iOS and iPadOS Photos app — Trim function. Free, non-destructive.
VLC vs FFmpeg vs dedicated editors
| Approach | Quality loss | Speed | Ease of use | Non-destructive |
|---|---|---|---|---|
| VLC Convert/Save | Small (re-encodes) | Slow on long videos | GUI, moderate | No (creates a new file) |
| FFmpeg stream copy | None | Very fast | Command-line only | No (creates a new file) |
| DaVinci Resolve / Kdenlive | None until export | Fast to set up | GUI, professional | Yes |
| macOS QuickTime / Windows Photos | Small on save | Fast | GUI, easiest | Yes (until you save) |
Common gotchas to avoid
- Assuming VLC's trim is lossless. It re-encodes the video, which means small quality loss and the operation takes time. Use FFmpeg
-c copyfor lossless. - Forgetting to set both start and end times. If you set only one, the result may not be what you expect. Always confirm both.
- Using the wrong time format. VLC expects HH:MM:SS or HH:MM:SS.mmm. Hours must be included even if zero (e.g.,
00:00:30, not00:30). - Choosing the wrong output profile. If your source is H.264 / AAC in MP4, choose the matching MP4 profile. Mismatched profiles produce output that may not play everywhere.
- Trimming at non-keyframe points. VLC re-encodes, so this is not a problem with VLC. With FFmpeg stream copy, trimming at non-keyframe points can produce a brief glitch at the start. If you need frame-accurate lossless cuts, re-encode that small region.
- Losing the original. VLC's trim creates a new file; the original is untouched. Confirm the original is preserved before deleting anything.
- Expecting VLC to edit more than start and end. VLC is a player with conversion features, not an editor. It cannot cut middle sections or splice clips. Use a dedicated editor for that.
- Forgetting audio sync. If the trimmed output has audio out of sync with video, the source had a pre-existing sync issue. VLC re-encoding may not fix it. Try FFmpeg instead.
When to use which
- I need a quick clip for social media and VLC is already open: Use VLC's Convert/Save.
- I need lossless output with no quality loss and I'm comfortable with the command line: Use FFmpeg with
-c copy. - I need to cut a middle section or splice clips: Use DaVinci Resolve, Kdenlive, or CapCut desktop.
- I just want to trim and the system has QuickTime (macOS) or Photos (Windows): Use the built-in trim tool. Easiest path.
- I am a power user editing complex projects: DaVinci Resolve.
Frequently asked questions
Does VLC trim without quality loss?
No. VLC re-encodes the video during the trim, which means small quality loss and the operation takes time. For lossless trim, use FFmpeg with the -c copy option.
Can I trim without re-encoding in VLC?
No. VLC's Convert/Save always re-encodes the selected segment. There is no "copy codec" option in the VLC GUI for this operation. Use FFmpeg for lossless trimming.
How long does VLC take to trim a video?
It depends on the video length, resolution, and your computer's speed. A 1-minute clip from a 5-minute 1080p video typically takes 30 seconds to a few minutes on a modern computer. A 4K video of an hour can take much longer.
Can I trim a video in VLC without saving a new file?
No. VLC's Convert/Save always creates a new file. The original is untouched, but the trimmed output is a separate file. If you want non-destructive trimming that lets you adjust later, use DaVinci Resolve, Kdenlive, or a similar editor.
Can VLC trim the middle out of a video?
No. VLC can only set start and end points. To cut a middle section, you need to do two trims and concatenate the result, or use a dedicated editor like DaVinci Resolve.
What formats can VLC trim?
VLC can trim most formats it can play: MP4, MOV, MKV, AVI, WebM, and many others. Output formats depend on the profile you choose. MP4 / H.264 + AAC is a safe default for output.
How do I trim on macOS without VLC?
Use QuickTime Player. Open the video, choose Edit > Trim, drag the yellow handles to set trim points, and save. Free, non-destructive until you save.
How do I trim on Windows without VLC?
Use the Photos app. Open the video, click the edit icon, drag the handles to set trim points, and save. Free, non-destructive until you save.
How do I trim on a phone?
On iPhone / iPad: Photos > Edit > drag the handles. On Android: Google Photos or the device's built-in editor. Both are free and non-destructive.
Can VLC cut multiple segments at once?
No. VLC can only cut at one start point and one end point per conversion. To combine multiple segments, use FFmpeg or a dedicated video editor.
Does VLC's trim change audio sync?
Generally no, but if the source has a pre-existing audio sync issue, VLC may not fix it. If you see sync drift after trimming, try FFmpeg instead.
What is the difference between VLC trim and VLC cut?
In VLC's interface, "trim" and "cut" are often used interchangeably to mean "convert a segment to a new file." VLC does not have separate trim / cut features. The operation is the same: Convert/Save with start and end times.
Key takeaways
- VLC's trim is a Convert/Save operation with start and end times. It re-encodes the video, so there is small quality loss and the operation takes time.
- For lossless trimming, use FFmpeg with
-c copy. It is faster, produces identical-quality output, and runs from the command line. - For non-destructive trimming with a GUI, use DaVinci Resolve, Kdenlive, CapCut, or the built-in trim tool in macOS QuickTime or Windows Photos.
- VLC can only set start and end points. Cutting middle sections or splicing clips requires a dedicated editor.
- For the simplest trim, the built-in trim tool on macOS or Windows is faster and easier than VLC.