NEW · FFmpeg.wasm · 100% Browser-Based

Audio Trimmer

Trim audio frame-accurately with a visual waveform — set in/out points, scrub, listen, export. FFmpeg.wasm runs locally. No upload, no signup, no watermark.

🎵
Drop an audio file
MP3 · WAV · AAC · OGG · FLAC · M4A
Files stay on your device · Never uploaded

Related Tools on UDT

Audio Merger →
Concatenate audio files with optional crossfade.
Audio Converter →
Convert audio between MP3, WAV, AAC, OGG, FLAC, M4A.
Audio Fade →
Add fade-in / fade-out with curve shape control.
All Audio Tools →
Browse the full Audio Suite — 7+ tools, all in-browser.

Why Do This in Your Browser?

Audio trimming is the most common audio task and the one cloud sites monetize most aggressively. The mp3 cutter category alone has dozens of sites with the same UI: upload, set in/out, download. Every single one runs the trim server-side and bills the bandwidth back to you in ads or upgrade nags.

FFmpeg.wasm trims with the `-ss` and `-to` flags, just like desktop FFmpeg. When the cut points land near keyframes, the trim is a stream-copy (instant, bit-exact). When precision matters more than speed, the tool transcodes the cut frame-accurately. Either way, the source never leaves your device.

How It Works

Drop an audio file. The tool decodes the waveform via Web Audio API and renders an interactive waveform display. Drag the start and end handles; click on the waveform to scrub; press space to play/pause from the current cursor position. Keyboard shortcuts: I for in-point, O for out-point, space for play/pause, arrow keys for frame-step.

Export modes: 'Fast trim (stream-copy)' uses FFmpeg's `-c copy` for instant bit-exact cuts, with cut points snapping to the nearest keyframe — typically within ±100ms of the chosen point. 'Precise trim' transcodes to give you exact cuts at the millisecond level, slower but frame-accurate. Default is precise.

Tip: For format conversion alongside trimming, the Audio Converter tool handles container/codec changes. To compress the trimmed output, the Audio Compressor tool exposes bitrate controls. For auto-detecting silence rather than manually setting in/out points, the Audio Silence Remover trims leading/trailing dead air and can compress mid-clip gaps. To slow a long interview for transcription before trimming, the Audio Tempo Changer drops speed without affecting pitch.

Common Use Cases

Custom Ringtones
Trim a 30-second segment of a song for a phone ringtone — the most-searched 'audio trimmer' use case on the web.
Podcast Episode Cleanup
Trim dead air at the start/end before publishing; pre-edit cuts before bringing into a full editor.
Voice Memo Highlights
Extract a specific quote or moment from a long voice recording.
Audiobook Chapter Splits
Cut a multi-chapter audiobook file into per-chapter files.
Sample Prep for Music Production
Pull a single phrase or beat from a longer source as a sample.
Quotation Clips
Cut a quotable moment from a podcast or interview for social sharing.

How We Compare

Honest read on free, paid, and self-hosted options for this kind of job:

UDT Audio Trimmer (this tool): Free, browser-based, waveform-driven UI. FFmpeg.wasm stream-copy for fast cuts or transcode for precise cuts. No upload, no watermark, no signup.
mp3cut.net / online-audio-cutter.com: Cloud-based; uploads required; free tier with ads and limits; paid plans $5–$15/mo.
Audacity (desktop): Free, open-source. Full audio editor; trim is one of many features. This browser tool is the focused alternative.
GarageBand (Mac): Free on macOS; full music creation suite. Overkill for a quick trim.
iPhone Voice Memos (built-in trim): Free, on-device trim is fine for native voice memo files only — no support for arbitrary MP3/WAV files.
CapCut / InShot: Free mobile editors; trim is fine; limited to mobile.

See also: The Audio Waveform Generator renders a static SVG/PNG waveform image from any audio file — useful as a podcast cover or thumbnail.

Frequently Asked Questions

Is this audio trimmer really free?+
Yes — completely free, no watermark, no time limits, no signup. The site is supported by ads elsewhere; the tool is unrestricted.
Are my audio files uploaded anywhere?+
No. The waveform is decoded by the Web Audio API in your browser; the trim runs through FFmpeg.wasm locally. Nothing uploads.
What's the difference between fast and precise trim?+
Fast trim copies the audio bitstream directly (`-c copy`) — instant, bit-exact, but cut points snap to the nearest keyframe (typically within ±100ms). Precise trim transcodes the audio so cuts land at the exact millisecond — slower but frame-accurate. Default is precise; fast is useful for very long files or when ±100ms precision is acceptable.
Will quality be lost on the trim?+
Fast trim is bit-exact (no quality loss whatsoever). Precise trim re-encodes once, so there's a small generational loss — equivalent to opening and saving a JPEG once. At 192kbps+ MP3 or any FLAC/WAV, the loss is inaudible.
What's the maximum file size?+
Limited by browser memory. Most laptops handle 1–2GB audio files comfortably; phones cap around 500MB.
Can I cut multiple sections from a single file?+
Not in the current version — the tool exports one trimmed segment per pass. For multi-segment edits, trim each segment separately and then concatenate with the Audio Merger tool.
Do keyboard shortcuts work on mobile?+
On mobile, use the drag handles instead. Keyboard shortcuts are for desktop browsers.
What's the underlying engine and license?+
FFmpeg.wasm v0.12.x with @ffmpeg/core v0.12.6. Waveform rendering uses the Web Audio API (built into browsers, no library). FFmpeg itself is LGPL-licensed; the wasm wrapper is MIT.