Trim audio

Cut an audio file down to the part you need and download it. Accepts MP3, WAV, OGG, M4A, FLAC and WEBM, and your file never leaves your browser.

Drop an audio file here

Supported formats: MP3 · WAV · OGG · M4A · FLAC · WEBM

Your file is never uploaded anywhere

What it does

You have a 1:24 recording and you need only the first 30 seconds. This tool does exactly that: mark where the section starts and ends, and download that piece.

No account, no watermark, no daily limit.

What makes it different from other cutters

Almost every audio trimmer that shows up in search works the same way: you hand over the file, it is uploaded to their server, processed there, and handed back as a download link. A copy of your audio now sits on a machine you do not control, under someone else’s retention policy.

That does not happen here. The browser decodes the audio with the Web Audio API, slices the samples, and builds the finished file on your own machine. No network request ever contains your audio.

The check is easy: load the page, go offline, and cut a file. It still works.

Setting the section

The time fields accept several notations, because nobody writes them the same way:

You type It reads as
0:30 30 seconds
30 30 seconds
1:24 84 seconds
0:05.5 5.5 seconds
1:02:03 1 h 2 m 3 s

You can also click straight on the waveform — whichever edge is nearer jumps to where you clicked. That is the fast way to find the silence between two sentences.

About the output format

Output is WAV, uncompressed. That is a deliberate choice.

An MP3 does not store sound; it stores a compressed approximation of it. Cutting one means decompressing it first, and saving it back as MP3 would mean compressing again — adding a second generation of loss on top of the one it already carried, and requiring an extra ~150 KB encoder to be downloaded.

WAV avoids both. The clip sounds identical to the source and there is nothing extra to fetch. The cost is size: roughly 5 MB per 30 seconds in stereo.

You can choose 16-bit or 24-bit. 16-bit is right nearly always — it is CD depth and what every player expects. 24-bit only matters if you are taking the clip into another editor afterwards.

Limits worth knowing

  • 50 MB per file. Because the work happens in your browser, anything larger risks exhausting the tab’s memory.
  • Your browser decides the formats. Which containers open is up to the browser, not this page. FLAC and M4A work in most current browsers, but not all of them.
  • One cut per file. You can keep a single continuous section, not stitch several pieces together.

FAQ

Is my file uploaded to a server?

No. The audio is read, cut and encoded inside your browser using the Web Audio API. You can verify it — load the page, disconnect from the internet, and the tool still works.

Why is the downloaded file bigger than the original?

Because the output is WAV, which is uncompressed. An MP3 stores a lossy, compressed approximation; cutting it means decompressing it first, and re-compressing would need an extra MP3 encoder. WAV keeps the exact quality at the cost of size.

How long a file can I cut?

The limit is 50 MB. Since everything happens on your device, a larger file would exhaust the tab's memory. For a clip of a few minutes you have plenty of room.

Which formats can I upload?

MP3, WAV, OGG, M4A, FLAC and WEBM. The exact list depends partly on your browser — if one fails to open, the tool tells you rather than failing silently.

Does cutting lose quality?

No. The cut happens on already-decoded samples and is saved without compression, so the clip sounds exactly as it did in the original.