Mute video

Mute a Video Online — Free, In Your Browser

Drop a video, get the same video back with the audio track stripped out. We do not re-encode the picture — the video stream is copied bit-for-bit, so there is zero quality loss and the whole thing finishes in seconds.

  • No upload
  • No signup
  • No watermark
  • Stream-copy — no quality loss
  • Up to 500 MB

Files never leave your browser. The conversion runs locally on your device.

When you actually need to mute a video

More often than you would think. Maybe a colleague's background conversation got picked up during a screen recording. Maybe a notification chime fired while you were demoing something. Maybe you are repurposing a video for an Instagram reel that is going to play with its own soundtrack on top, or for a Twitter embed that needs to autoplay muted anyway. In all of those cases you do not want to fade the audio or re-encode — you want it gone, the picture untouched, and the file ready to upload again.

What this tool does, exactly

We pass two flags to FFmpeg: -c:v copy tells it to stream-copy the video — same bytes in, same bytes out, no re-encoding — and -an drops the audio track entirely. The output is wrapped in MP4 because that is the most universally playable container, regardless of whether your input was MOV, WebM, or already MP4. Total time: usually a few seconds, even for long recordings, because we are just rewriting the container, not transcoding pixels.

No re-encode means no quality loss

This is the whole point. Most "mute a video" tools online quietly re-encode the video stream while they are at it, which means a generation of quality is lost every time. We do not. The picture in your output file is byte-identical to the picture in your input, just without the audio track riding alongside it. You can mute, edit, mute again, and never see the kind of compression artifacts that pile up when each step re-encodes.

Adjacent tools you might want next

If what you actually need is the audio extracted as a separate file (rather than dropped on the floor), use MP4 to MP3. If the file came out of a browser recording and is in WebM, run it through WebM to MP4 first. And if you are recording fresh, Clipy lets you record without the mic in the first place — which is the cleanest way to avoid this whole step.

Common questions

Will the video quality change after muting?

No. We stream-copy the video track, meaning the bytes are not re-encoded — the output is bit-for-bit identical to the input on the picture side. Only the audio track is removed.

Why is this so much faster than other muting tools?

Because most online tools re-encode the entire video while they are stripping the audio, which is unnecessary and slow. We only rewrite the container, which is an order of magnitude faster — usually seconds for any reasonable file.

Can I mute just part of the video?

Not with this tool — it removes the entire audio track. For partial muting (silencing a section while keeping the rest) you need a real video editor. The Clipy desktop app handles that case, or use a tool like Descript or Final Cut.

What input formats are supported?

MP4, MOV, and WebM cover ~99% of cases. The output is always an MP4 because it is the most universally playable container. The audio strip is a stream-copy, so it works regardless of the original codec.

Is the file uploaded anywhere?

No. Everything runs in your browser via FFmpeg compiled to WebAssembly. The file never reaches our servers — you can verify this in your browser's network tab.

More free tools