Skip to content
nah

Trim Audio

Cut an audio file to exactly the clip you need — set start and end points with a live preview.

100% in your browser — files never leave your device

Lossless audio trimming — no quality loss, no server

Trimming audio is a common task: cutting a clip from a long recording, removing silence at the start or end of a track, or isolating a section of a podcast. Most online tools send your file to a server to do this work. That means a potentially large upload, waiting for processing, and trusting a third party with your audio content.

This trimmer uses FFmpeg.wasm in stream-copy mode. Stream copy skips the decode-encode cycle entirely — it reads the encoded audio data and cuts it at the requested time boundaries without touching the underlying codec. The output is the same format as your input, at the same quality, and the operation completes in a fraction of the time a full re-encode would take.

Load your file, listen in the browser player to find your cut points, set the range with the trim controls, and download the clip. Works with MP3, M4A, OGG, WAV, FLAC, and most other common audio formats.

Frequently asked questions

Does trimming re-encode the audio?

No. The trimmer uses FFmpeg's stream-copy mode (-c copy), which cuts the file at the requested timestamps without decoding or re-encoding the audio data. This preserves the original quality and runs very quickly. Cut points snap to the nearest audio keyframe, so the actual boundaries may be off by a few milliseconds.

What audio formats can I trim?

FFmpeg.wasm supports the most common audio containers: MP3, M4A, OGG, WAV, FLAC, AAC, and WebM audio. The output keeps the same format as your input — trimming an MP3 gives you an MP3, trimming a WAV gives you a WAV.

Is my audio file uploaded anywhere?

No. Everything runs in your browser using FFmpeg.wasm — a WebAssembly build of FFmpeg. The binary (about 25 MB) loads from a CDN on first use and is then cached by your browser. Your audio never leaves your device.

How accurate are the trim points?

Stream-copy trimming snaps to keyframe boundaries in the encoded stream, so the actual cut may be within a fraction of a second of your requested time. For most audio formats (MP3, AAC, OGG) the difference is imperceptible. WAV and FLAC are sample-accurate since they are uncompressed.

Can I use this to extract a clip from a long podcast or recording?

Yes. Load the audio file, use the built-in player to locate the section you want, then set the start and end times with the trim controls. The tool will extract just that segment and download it with "_trimmed" appended to the filename.

Related tools