Menu

How to Cut and Edit Audio Online (Without Installing Anything)

8 min readPublished Updated

Most audio editing isn't music production. It's trimming dead air off the front of a podcast, cutting an 'um' out of a voice memo, chopping a 20-second clip for a ringtone, or stitching two recordings together. You don't need a studio for any of that — you need to understand a handful of verbs and a couple of small technical details that separate a clean edit from an audible click.

This guide explains how audio editors think about your recording, the core operations and when each one is right, why cuts sometimes pop and how good tools prevent it, and how to choose an export format. Then it walks through doing all of it in a browser, with your files staying on your machine.

Your edits are instructions, not scissors

The single most important idea in modern audio editing is that it's non-destructive. When you 'cut' a section, you aren't deleting sound from the original recording — you're adding an instruction to a list: 'skip from 0:12 to 0:15.' The source audio sits untouched the whole time. The editor plays back and, only when you export, renders a new file that follows all your instructions.

This is why you can undo freely, reorder clips, and change your mind about a trim ten minutes later. Some editors call this instruction list an EDL (edit decision list). The practical payoff: nothing you do while editing can corrupt or shorten your original file, so you can experiment without fear. The file only 'really' changes at export.

Keep your original either way

Non-destructive editing protects the file inside the editor, but export writes a brand-new file. Keep the untouched original recording somewhere separate until you're happy with the export — it's your only path back if you want to re-edit from scratch.

The core verbs: trim, cut, split, splice, lift

Audio tools reuse a few words loosely, which causes a lot of confusion. Here's what each one actually does, because picking the wrong one is the most common way edits go wrong:

  • Trim — shorten a clip from its edge. Dragging the start inward to remove three seconds of silence at the top is a trim. Nothing after it moves relative to itself; you're just changing where the clip begins or ends.
  • Cut — remove a section from the middle. The gap closes: everything after the removed part slides earlier to meet everything before it. Total length gets shorter. This is what you want for deleting a flubbed sentence.
  • Split — slice one clip into two at a point, without removing anything. Length is unchanged. You split so you can then move, delete, or apply a change to just one of the two halves.
  • Splice — join two clips end to end. Every place two pieces of audio meet is a splice point (also called an edit point), and it's exactly where clicks come from.
  • Lift-to-silence — remove the sound but keep the time. The audio goes quiet but the gap stays open, so nothing after it moves.

Why 'lift' matters more than it sounds

Cut closes the gap; lift leaves it. That distinction is critical whenever audio has to stay in sync with something else — a video track, a second microphone, a music bed. Cut a cough out of a lapel mic and everything downstream shifts earlier, drifting out of sync with the camera. Lift the cough to silence and every later word stays at exactly its original timestamp.

Why clean cuts need micro-fades

Sound is a waveform — a line wiggling above and below a center (zero) line. When you cut or splice, you join two points on that wiggling line. If those two points sit at different heights, the joined waveform jumps instantly from one level to another. Your speakers reproduce that instantaneous jump as a sharp click or pop. It has nothing to do with the content; it's the discontinuity itself.

There are two standard fixes, and good editors apply them automatically:

  • Micro-fades (crossfades): a tiny fade — roughly 6 milliseconds, far too short to hear as a fade — is applied right at the splice point. Instead of jumping, the level ramps across the join, smoothing away the discontinuity. This is the workhorse fix for click-free cuts.
  • Zero-crossing snapping: the editor nudges your cut point to the nearest place where the waveform crosses the center line (level zero). If both sides of a join are at zero, there's no jump to begin with, so no click.

You mostly don't need to think about either one — but it explains why a naive 'delete and glue' in a bare-bones tool clicks, while a proper editor's cut is silent. If you ever hear a click at an edit, a stray missing micro-fade is almost always the reason.

Choosing an export format

After editing, you render out a file. The format decides file size, quality, and where it'll play. The core split is lossy (small, discards inaudible detail permanently) versus lossless (larger, bit-perfect).

Common audio export formats compared
FormatTypeBest forTrade-off
MP3LossyPodcasts, sharing, ringtones — plays literally everywhereSome quality discarded; re-encoding repeatedly degrades it
WAVLossless (uncompressed)Masters, further editing, sending to another editorLarge — roughly 10 MB per minute of stereo audio
FLACLossless (compressed)Archiving at full quality with ~40-50% smaller files than WAVNot accepted everywhere; some older players won't open it
M4A (AAC)LossyApple ecosystem, video soundtracks — better quality than MP3 at the same sizeSlightly less universal than MP3 on very old devices
OGG (Vorbis/Opus)LossyWeb, games, open-source projects; Opus is excellent for voicePoor support in some consumer and Apple software

Rule of thumb: exporting a finished thing for people to listen to, use MP3 (or M4A for Apple targets). Handing the audio to another editing step or archiving it, use WAV or FLAC so you don't stack lossy compression. Editing voice for the web, Opus in an OGG container is hard to beat on size-for-quality.

The desktop alternative: Audacity

Before reaching for anything online, it's worth knowing the free desktop standard. Audacity is open-source, runs on Windows, macOS, and Linux, and has been the go-to free audio editor for two decades. It's genuinely powerful — multitrack editing, a deep effects catalog, spectral editing, plugin support — and it's fully offline, so nothing ever leaves your computer.

The trade-offs are real, though. Audacity has a steep learning curve and a dated interface; simple tasks like 'trim the ends and export an MP3' involve more clicks and menu-hunting than you'd expect, and MP3 export historically required a separate encoder step. If you edit audio regularly, learning it pays off. For an occasional trim, installing and climbing that curve is often more friction than the job is worth — which is where a browser tool fits.

Editing audio in your browser with FileMorf

FileMorf's Audio Studio runs the whole editor inside your browser using WebAssembly — the same compiled-code technology that makes in-browser tools fast. Because the processing is local, your files never upload for editing; audio up to 512 MB stays on your machine, and export happens on your device too.

  1. 1

    Open the Audio Studio and add your file

    Drag in a recording (or record straight from your mic). It loads onto a timeline you can zoom and scrub. Nothing is uploaded — the file is read locally into the browser.

  2. 2

    Cut, split, and move on the timeline

    Select a region to cut, split a clip in two, or drag a clip to move it — when you move a clip, silence fills the gap it leaves behind, so downstream timing stays put. Drop markers to label spots you want to find again.

  3. 3

    Adjust levels and fix silence

    Set per-clip gain to balance a quiet section against a loud one, run silence removal to strip dead air automatically, and apply effects presets. Every action is non-destructive and sits in an undo history you can step back through.

  4. 4

    Export to the format you need

    Render the finished edit to MP3, WAV, FLAC, M4A, or OGG. Export uses ffmpeg compiled to WebAssembly and runs on your device, so the audio still never leaves your browser.

When you might want more

In-browser editing is ideal for cuts, trims, splices, level fixes, and format changes. For heavy multitrack music production or niche restoration work, a full desktop DAW or Audacity still goes deeper. FileMorf also offers AI voice isolation, stem separation, and transcript-based editing as Pro tiers when you need those specifically.

Free Tool

Open the Audio Studio

Cut, splice, and export audio entirely in your browser via WebAssembly. Files up to 512 MB never upload; export to MP3, WAV, FLAC, M4A, or OGG.

Frequently asked questions

Will editing audio online reduce its quality?

The editing itself doesn't — cuts, moves, and gain changes are non-destructive. Quality loss only comes from the export format you choose. Export to WAV or FLAC and it's bit-for-bit lossless; export to MP3 and you accept a small, usually inaudible loss. Re-editing an MP3 and re-exporting to MP3 repeatedly is what actually stacks up damage, so keep a lossless copy if you'll edit again.

Do my files get uploaded to a server?

For core editing in FileMorf's Audio Studio, no. Loading, editing, and exporting all run in your browser via WebAssembly, so files up to 512 MB stay on your machine. Only the optional AI features (voice isolation, stem separation, transcription) send audio to a server, and those are clearly separate Pro tiers.

What's the difference between cutting and lifting a section?

Cutting removes the section and closes the gap, so everything after it moves earlier and total length shrinks. Lifting removes the sound but keeps the gap open as silence, so nothing after it moves. Lift when the audio must stay in sync with a video or another track; cut when you just want the recording shorter.

Why does my cut make a clicking sound?

A click at an edit point comes from the waveform jumping instantly between two different levels where two pieces join. Proper editors prevent it with a roughly 6-millisecond micro-fade at the splice and by snapping cuts to zero-crossings. If you hear clicks, you're likely using a tool that glues clips together without applying either.

What format should I export a ringtone or podcast in?

For a podcast or anything people will just listen to, MP3 is the safe universal choice. For a ringtone, MP3 works broadly, and M4A is the native fit for iPhone. Only reach for WAV or FLAC when you're archiving at full quality or handing the file to another editing step.

Keep Reading