Copying, not converting
Almost every other tool on this site decodes something and encodes it again. This one does not, and the difference is worth understanding because it is why the result is trustworthy.
A video file is a container holding separate streams. To remove audio from video, you only have to write a new container with the video packets copied in and the audio packets left out. No frame is ever decoded, no encoder makes a single decision, and the picture that comes out is bit-identical to the one that went in. This is called remuxing, and it takes seconds even on a large file.
Any tool that re-encodes to do this is doing avoidable damage. You will wait minutes, and you will get a slightly softer picture with new compression artifacts, in exchange for nothing.
Why people need it
The reasons cluster into a few shapes. Music playing in the background of a clip triggers a copyright claim on upload, and the video itself is fine. On-camera audio came out unusable and a proper voiceover is going over the top. The clip is b-roll that will sit under someone else's narration. A screen recording captured system sound nobody wants. Or the clip is destined for a social feed that autoplays muted anyway, and shipping a silent file removes any doubt about what viewers hear.
In all of those, the video is the asset and the audio is the problem. Keeping the picture untouched is the entire requirement, whether you would describe the job as wanting to mute a video or to remove sound from video you are about to re-score.
What comes out
The same container, with the same video stream, minus the audio. Subtitle and data tracks are dropped too, because they can prevent a clean remux and neither is what someone asking to mute a video came for. MP4-family files also get their index moved to the front, so the result starts playing without downloading the whole file first.
The filename gains a -muted suffix, so nothing overwrites your original. Files up
to 500 MB are accepted, and everything runs in your browser using ffmpeg compiled to
WebAssembly.