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

OnlineFree.app Editorial Team Updated ✓ Fact-checked against the cited sources All guides →

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:

  1. 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.
  2. 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.
  3. 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

  1. Launch VLC.
  2. Drag and drop your video file into the VLC window, or use Media > Open File.

Step 2: Find your trim points

  1. Play the video and use the playback controls to find the start point of the segment you want to keep.
  2. 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.
  3. Note the timestamp (shown in the playback bar).
  4. 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

  1. Go to Media > Convert/Save (or Ctrl+R / Cmd+R).
  2. Click "Add" and select your video file.
  3. Click "Convert/Save" at the bottom.

Step 4: Set start and end times

  1. In the Convert dialog, find the "Profile" dropdown. Pick a profile that matches your output format (MP4 is a safe default).
  2. 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.
  3. Click "Start time" and enter the start point in HH:MM:SS format.
  4. Click "End time" and enter the end point in HH:MM:SS format.

Format examples:

Step 5: Choose the output file

  1. Click "Destination" and choose "File."
  2. Enter the path and filename for the trimmed video, including the file extension (.mp4 is a safe choice).

Step 6: Start the trim

  1. Click "Start." VLC will re-encode the selected portion of the video and save it as a new file.
  2. 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

  1. When VLC finishes, open the new file in VLC (or any other video player).
  2. 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:

FFmpeg disadvantages:

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

Built-in trim tools

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

When to use which

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

Sources and further reading

← More guides Browse free tools →

More free tools

Step-by-step guides in our blog & guides.

Online Shopping Sales Tax Calculator حاسبة القرض العقاري الانماء Recipe Calorie Calculator Image To Pdf Converter Reverse Gst Calculator Australia Percentage Calculator Générateur Aléatoire De Nombre Youtube Video Thumbnail Downloader Password Generator With Words محول صيغ الفيديو اون لاين