HomeToolsVideo Tools › Video Mute / Remove Audio

Video Mute / Remove Audio

Live

Strip the audio track from a video without re-encoding the picture — lossless and instant.

About Video Mute / Remove Audio

Removing audio from a video has a longer list of uses than it first appears: a website hero section needs a silent autoplay loop, a screen recording captured a private conversation in the background, a clip contains a copyrighted song that must come out before the video can be published, a tutorial needs silence so the presenter can add a fresh voiceover in post-production. In every case, the operation is the same — strip the audio track and leave the video stream untouched.

AT USE Video Mute / Remove Audio does exactly that. Drop a video into the tool, click Mute, and download a silent video in seconds. The video stream is never re-encoded. When FFmpeg removes the audio track from a supported container (MP4, MOV, MKV, WEBM), it performs a stream copy operation: the compressed video data is read from the file and written into a new container with no audio track. No frames are decoded, no frames are re-encoded, and no quality change occurs. Processing is near-instant regardless of the video's length or resolution — a 90-minute 1080p recording processes as fast as a 2-minute clip because the work is moving bytes, not decoding pixels.

Stream copy vs. re-encode

The stream copy path is the default and applies to the vast majority of input files. In stream copy mode, FFmpeg reads the compressed video data and writes it directly to the output container, bypassing the decode-encode cycle entirely. Output quality is bit-identical to the input.

In a small number of cases — when the input container format has structural constraints that prevent a direct stream copy — FFmpeg switches to a fast re-encode path. In this path, the video is decoded and re-encoded at CRF 23 for H.264 output, which is a visually lossless quality level for most content. Processing takes longer (seconds to minutes depending on file length and browser hardware), and a very small amount of quality change may occur at the encode step.

Running entirely in your browser

The tool uses ffmpeg.wasm — FFmpeg compiled to WebAssembly — which runs as a worker thread in your browser tab. No file leaves your device. The video is read from local disk into browser memory, processed by the FFmpeg worker, and the muted output is downloaded directly from memory. No upload, no server round-trip, no data transmitted externally.

Output format matches the input container. MP4 in produces MP4 out. MOV in produces MOV out. This keeps the file compatible with whatever platform or editor the video is going to next without an additional conversion step.

Common use cases

  • Silent autoplay for a website hero section: A marketing team has a polished product video they want playing silently in the background of a landing page. The video contains a music track that browsers require explicit user interaction to play. Removing the audio track produces a clean silent loop that all major browsers autoplay without a user gesture — no JavaScript workaround needed.
  • Screen recording with private audio in the background: A developer records a 40-minute debugging session to use as internal documentation. A colleague was on a phone call in the background throughout the recording. The video is useful for the team; the audio is not appropriate to share. Muting removes the audio without touching a single frame of the screen capture.
  • Copyright-flagged background music: A content creator made a product tutorial with background music from a playlist. After uploading to YouTube, the video is flagged for the music track. Downloading the original file, removing the audio with this tool, and re-uploading the silent version removes the copyright flag without re-recording the tutorial or rebuilding the edit.
  • Preparing a clip for voiceover replacement: A video editor is replacing a placeholder voiceover in an exported video with a final recorded narration. They need a clean silent version of the video to bring into their editor and lay the final audio track over. The stream-copy mute delivers that without re-encoding the video quality.
  • Removing audio before sharing a sensitive recording: A legal or compliance team has recorded interviews, depositions, or confidential meetings as video files. The video content is shareable but the audio is not. Stripping the audio track produces a version that can be distributed without concern for what was said.

How to use it

  1. Drop your video file.
  2. Confirm the audio track will be removed.
  3. Click "Mute".
  4. Download the silent video — same quality, just no audio.

Frequently asked questions

Does removing audio change the video quality?

No, for stream copy operations — which apply to most input files. The video data is copied byte-for-byte without decoding or re-encoding. When a re-encode is required (for certain container formats), quality loss is minimized at CRF 23 and is not visible at normal playback.

Does my video upload to any server?

No. FFmpeg runs inside your browser using WebAssembly. Your video is read from local disk and processed in memory — nothing is transmitted to any server at any point.

What video formats are supported?

MP4, MOV, MKV, and WEBM for input. Output format matches the input container. Most video files from phones, screen recorders, and cameras are covered by one of these four formats.

Is the output file smaller after removing audio?

Yes, slightly. Audio tracks in MP4 typically add 0.5–2 MB per minute at standard bitrates (AAC at 128–192 kbps). Removing the track reduces file size by that amount. The reduction is modest compared to the total video size — a 500 MB video with stereo AAC audio might reduce to 490 MB.

How long does processing take?

For stream copy (the common case), processing is near-instant regardless of video length — typically 2–6 seconds for any file size. For re-encode operations, processing time scales with video duration and resolution: a 10-minute 1080p clip takes approximately 30–90 seconds on a modern desktop browser.

Is this tool free?

Yes. No account required, no watermark added to the output, no usage cap. The operation runs in your browser — no server processing cost is incurred.

Keep going

More video tools

Other tools in the Video category on AT USE.

Live Video Tools

YouTube Thumbnail Downloader

Grab any public YouTube video thumbnail in all official sizes — instantly, no login.

Open tool
Live Video Tools

YouTube Embed Code Generator

Build privacy-friendly, responsive YouTube embed code with start/end times and player options.

Open tool
Live Video Tools

Video Aspect Ratio & Resolution Calculator

Solve width, height, or aspect ratio for any video — with presets for 16:9, 9:16 Shorts, square, and ultrawide.

Open tool
Live Video Tools

YouTube Timestamp Link Generator

Build deep links to specific moments in a YouTube video. Bulk convert chapter lists in one paste.

Open tool
Live Video Tools

YouTube Chapter Marker Generator

Format your timestamp list into a YouTube-compliant chapter description block.

Open tool
Live Video Tools

Vimeo Embed Code Generator

Generate Vimeo embed code with DNT mode, custom color, autoplay, loop, and a responsive wrapper.

Open tool