Trim Audio
Processed locally in your browser — nothing is uploaded.
Quick answer
To trim audio, drag the start and end handles across the waveform to select the part you want to keep, then export — everything before the start and after the end is discarded. This tool does it entirely in your browser with ffmpeg.wasm, so no file is uploaded. The first time you use it there is a one-time ~32 MB engine download; after that it stays cached and ready.
How to trim audio
Load your audio
Drop an MP3, WAV, M4A, FLAC or OGG file onto the page. The waveform is drawn so you can see where the sound is.
Drag to select the keeper
Move the start and end handles to bracket the section you want to keep. Scrub or play to check the in and out points precisely.
Export the trimmed file
Click export and download the result. The source format is kept, so an MP3 in stays an MP3 out.
What does trimming actually keep?
Trimming is a keep operation: you define one region and everything outside it is thrown away. That is the opposite mental model from cutting a piece out of the middle. If you want to keep the middle and drop the ends — the usual case for topping and tailing a recording — trimming is exactly right. If instead you want to remove a chunk from the middle and rejoin the two sides, that is a different job handled by the audio cutter.
Because the trim is a straight copy of the selected range, it is fast and, on formats that support it, lossless: the audio inside your selection is not re-encoded, it is passed through untouched. You lose nothing in quality — you only lose the parts you chose to drop.
Which files can you trim, and does the format change?
The tool reads the common audio formats and always writes back in the same one, so you never have to think about a conversion side-effect.
| Input | Output | Re-encoded? |
|---|---|---|
| MP3 | MP3 | No — stream copy |
| WAV | WAV | No — sample copy |
| M4A / AAC | M4A / AAC | No — stream copy |
| FLAC | FLAC | No — lossless |
| OGG | OGG | No — stream copy |
When do you reach for a trimmer?
- Cutting dead air and the "is it recording?" chatter off the front of an interview.
- Grabbing a single verse or chorus out of a song.
- Topping and tailing a voice-over before it goes into a video edit.
- Keeping just the answer from a long voice memo.
A trimmer is also the quickest way to make a file smaller without touching its quality: duration is one of the two things that decide file size, so lopping a minute of silence off the front of a recording removes that minute’s worth of bytes exactly. If your goal is a smaller file rather than a shorter one, pair a trim with a bitrate reduction on the compress audio page — but trimming first is free and lossless, so it is always the right opening move.
Is my audio uploaded to trim it?
No. The waveform is drawn and the trim is performed by ffmpeg compiled to WebAssembly, running inside your tab. Your file is read into memory, sliced and handed back as a download — it never touches a server. You can prove it: open your browser DevTools, switch to the Network tab, and trim a file. No upload request appears. You can even disconnect from the internet after the page has loaded and the trimmer keeps working. That matters for unreleased music, confidential recordings and client work.
Related audio and video tools
Need two pieces instead of one? Split the audio at a timecode. Building a ringtone? The ringtone maker trims and shapes a phone-length clip. Joining several trimmed pieces? Use merge audio. And if your audio is currently locked inside a movie file, extract the audio from a video first, then trim the result here.
Your files never leave your device
Processed locally in your browser — nothing is uploaded. You can verify it yourself: open your browser’s developer tools, watch the Network tab, and use the tool — no upload request is ever made.
Frequently asked questions
Does trimming reduce the audio quality?
No. The selected region is copied through without re-encoding on MP3, M4A and OGG, and sample-for-sample on WAV and FLAC. What you keep sounds identical to the source.
Can I trim the middle out instead of the ends?
Trimming keeps one continuous region and drops the ends. To remove a section from the middle and rejoin the sides, use the audio cutter instead.
Will my MP3 come out as a WAV?
No. The output format always matches the input, so an MP3 stays an MP3 and a WAV stays a WAV.
How precise is the cut?
Sample-accurate on WAV and FLAC. On MP3 the cut snaps to the nearest frame boundary (about 26 ms), which is inaudible for speech and music.
Is there a length or file-size limit?
The practical limit is your device’s memory, since the file is processed locally. Full-length albums and hour-long recordings trim fine on a typical laptop.
Do I need to install anything?
No. It runs in the browser. The only download is the one-time ~32 MB engine, which is cached so subsequent trims start instantly.
Can I trim several files?
Yes. Trim one, export it, then load the next. Because everything is local there is no queue and no server quota.