ZeroUtil

Mute Video

Remove the audio track from MP4, WebM, MOV and MKV. Stream-copy keeps the video quality intact. Files auto-deleted after 15 minutes.

Maintained by

How to Mute a Video Online

  1. Drop your video file onto the upload area. MP4, WebM, MOV and MKV up to 500 MB are accepted.
  2. Press Remove audio. The audio track is stripped and the video stream is copied as-is.
  3. Download the silent video. Both the original and the muted result are auto-deleted from our servers within 15 minutes.

Why mute, not just lower the volume?

Lowering the volume in a player is a viewer-side tweak: the audio still plays for everyone else. Muting removes the audio track from the file itself, so anyone who downloads or shares the result hears silence. That matters when you want to upload a clip publicly without leaking ambient conversation, music with copyright issues, or a colleague's voice in the background.

How muting works under the hood

FFmpeg runs ffmpeg -i input -an -c:v copy output. The -an flag tells the encoder to ignore the audio stream; -c:v copy copies the video stream byte-for-byte without re-encoding. The result is a near-instant operation regardless of video length, and the video quality is identical to the source - no second-generation compression artifacts.

Common use cases

  • Uploading a screen recording where you forgot to mute notifications, system sounds or a Zoom call in the background.
  • Stripping copyrighted background music before posting a clip to YouTube, TikTok or Instagram (you can add royalty-free audio later).
  • Cleaning up a phone video that captured an argument, child crying, or other audio you do not want shared.
  • Preparing a video for a slideshow or presentation where you will narrate live.

Frequently Asked Questions

Does muting reduce video quality?

No. The video stream is stream-copied with no re-encoding, which means the output is identical to the input frame-for-frame. Only the audio track is removed. The file size will be slightly smaller (no audio data) but the visual quality is preserved exactly.

How fast is the operation?

Near-instant. Because we are not re-encoding video, the only work is rewriting the container without the audio stream. A 1 GB video file is processed in seconds. Upload time dominates the total wait.

Can I lower the volume instead of removing audio entirely?

Not in this tool. To lower volume you would need to re-encode the audio at a different gain, which is a re-encode rather than a strip. If you need that workflow use a video editor like CapCut, iMovie or DaVinci Resolve, or open a feature request and we will consider adding a volume slider.

Why does the output use the same container as the input?

Because the video stream is copied byte-for-byte, the container has to match what the codec expects. An H.264 stream from an MP4 stays in MP4; a VP9 stream from a WebM stays in WebM. Changing container would require re-encoding, which defeats the speed-and-quality advantage.

Will the muted video still play on social platforms?

Yes - it is exactly the same video file format, just with no audio track. YouTube, TikTok, Instagram and X all accept silent video uploads; some platforms display a small "no audio" indicator but otherwise treat them normally.

Are my files private?

Files travel over HTTPS to api.zeroutil.com (EU server). FFmpeg processes them locally on the server, returns a signed download URL, and both the input video and the muted result are auto-deleted after 15 minutes. We do not log content or retain anything beyond the deletion window.

More Video & Audio