Silence Cutter is a free, in-browser audio tool. Detect and remove silent regions from any audio recording with the Silero Voice Activity Detector. Long pauses get trimmed automatically; the kept regions glue together with optional crossfades. The page exposes a small surface — input, controls, output — so a first-time visitor can complete the job without reading documentation.
The right moment to reach for Silence Cutter is when you have a focused audio editing and conversion job that fits inside a browser tab. Open the page, drop in the file or paste your input, choose the options that matter, and the tool returns the result.
Silence Cutter is a static page plus a client-side engine. The browser does the work; there is no separate backend in the loop for the actual processing. That architecture is why the tool starts immediately, why it does not depend on the load on a remote service, and why running multiple jobs in a row does not slow it down.
Architecturally, Silence Cutter is a single-page client. The processing layer is the Silero Voice Activity Detector model running on ONNX Runtime Web (WebAssembly); the UI is a thin React shell on top. MP3, WAV, OGG, FLAC, M4A, and AAC inputs flow through the engine and the output is returned to the browser as a Blob you can save or copy. The 200 MB cap is the only hard limit and it exists to keep memory usage stable on every device.
The only practical limit is the 200 MB per-file ceiling, which keeps the tool responsive across a wide range of devices. Run the tool ten times in a row, run it ten thousand times — it behaves the same way and produces the same quality of result.
The heaviest users of Silence Cutter tend to be students preparing oral submissions, musicians sharing demos and voice-over artists exporting takes. Each group brings slightly different expectations to the tool, but the same single-page architecture serves every one of them with the same response time.
The download is delivered as `{name}-cut.wav` the moment processing completes — no email link, no "your result will be ready in 5 minutes" queue, no expiry timer. The file is generated in your browser and saved by your browser's normal download flow.
As a workflow component, Silence Cutter is the part you reach for when a single, well-defined audio editing and conversion step needs to happen. It performs that step and returns a standard file you can carry into the next part of your pipeline.
Silence Cutter is built around steady iteration on a small set of options rather than feature creep. Every additional setting attracts a slightly different audience, but a long settings panel makes the common case slower for everyone. The current controls reflect what users of the tool actually use.
Some context on why Silence Cutter exists in this form: modern File APIs, high-performance JavaScript engines, and well-maintained open-source libraries now make it possible to perform audio editing and conversion work entirely in the browser. Silence Cutter is built on top of that capability, which is why a single page can host the full pipeline.
Silence Cutter produces deterministic output: the same input plus the same options always produces the same result. That predictability matters when the result has to match an upstream specification or be reproducible later.
If you want to get the most out of Silence Cutter, three small habits help. Drag-and-drop is faster than the file picker once you get used to it. The keyboard shortcut for downloading the result is whatever your browser uses for "save link as," because the result is a normal download. And if you are working on a sensitive file, processing in an Incognito or Private window is a good extra layer — it leaves no trace in browser history when the tab closes.
When something goes wrong, the cause is usually one of three things: a malformed input, a browser that is out of memory, or a corporate proxy that is interfering with the page's static assets. The first two are easy to diagnose; the third typically requires asking your IT team to allow the Silero Voice Activity Detector model running on ONNX Runtime Web (WebAssembly) to load.
Open the workspace above to start using Silence Cutter. The engine loads on the first interaction so the page itself stays light, and once the tool is warm it processes subsequent jobs quickly. The moment the page is interactive, the tool is ready to do real work on your file.