How to Remove Audio from a Video Without Re-encoding
You need a silent version of a video — but every tool you've tried either takes forever or returns a file that looks slightly worse than the original. The frustrating part is that removing audio should be one of the simplest operations you can do to a video file. With the right approach, it is.
All processing happens locally in your browser. Your video files never leave your device.
When Do You Need to Remove Audio?
Muting a video is more common than it sounds. Here are the situations that come up most often:
Privacy and security. Screen recordings, tutorial videos, and product demos often capture ambient sound — background conversations, notification chimes, or keyboard audio that you'd rather not share. Stripping the audio before distributing removes that risk entirely.
Copyright compliance. Background music playing during a recording can trigger copyright claims on YouTube, Instagram, and other platforms. Removing the audio track lets you replace it with licensed music or submit a silent video that passes automated content scanning.
Voiceover and re-dubbing workflows. Many editors prefer to work with a silent video track as a base, adding narration or music in a separate pass. Stripping the original audio keeps the timeline clean.
File size reduction. Audio streams add to file size, especially for long recordings at high bitrates. If the audio isn't needed, removing it reduces the file with no effect on the video.
Stream Copy vs Re-encoding
When you remove the audio from a video, there are two ways to do it — and only one of them makes sense for this task.
Re-encoding decodes the video frames and compresses them again from scratch to produce the output. This is how most video editing operations work. It is flexible, but it takes time and introduces a small amount of compression loss with each pass.
Stream copy (-c:v copy -an) simply copies the compressed video data from the source file to the output without decoding it. The pixel data is never touched. The audio stream is dropped, and the video stream is written directly to the new file.
Stream copy is the right tool for removing audio. Processing time is measured in milliseconds regardless of video length, and the output video is bit-for-bit identical to the original — no generation loss.
The speed difference is dramatic. Re-encoding a 10-minute 1080p video might take several minutes on consumer hardware. The same operation with stream copy takes under a second because no decompression or compression is happening.
The only case where stream copy cannot be used is if you also need to change the codec or container format. For the specific task of removing audio while keeping the video untouched, stream copy is always the correct choice.
How to Remove Audio in Your Browser
- 1Open the Remove Audio Tool
Go to the Remove Audio tool from the homepage or the tools menu. No account, installation, or sign-up required.
- 2Upload Your Video
Drag and drop your video file into the upload area, or click to browse. MP4, MOV, MKV, WebM, AVI, and most common formats are supported. The file stays on your device — it is never sent to a server.
- 3Start Processing
Click Remove Audio. FFmpeg.wasm runs the stream copy operation entirely inside your browser. For most files, the process completes in under a second.
- 4Download the Silent Video
When processing is complete, download your muted video. The output file is the same format as the input, with the audio track removed. Video quality is identical to the original.
Preserving Video Quality (Lossless Operation)
Conventional wisdom about video quality applies to re-encoding: every time you compress a video, you lose a little information. That's true — but stream copy sidesteps that entirely.
When audio is removed via stream copy, the video bitstream is carried over unchanged. There is no decode step, no pixel analysis, no re-compression decision. What was in the source file is what ends up in the output file, minus the audio.
This also means the output file is nearly the same size as the input minus the audio track's contribution. There is no overhead from a fresh compression pass, no quality degradation, and no change to the video's bitrate or resolution.
The output file from a stream copy operation is functionally identical to the original video. Codec, resolution, frame rate, color profile, and bitrate are all preserved exactly.
Batch Remove Audio? (Currently Single File)
The current tool processes one file at a time. If you need to mute a large number of videos, the single-file workflow requires running each file separately. Batch processing — drop multiple files, receive multiple outputs — is on the roadmap for a future update but is not available yet.
For single files, the workflow is fast enough that processing ten files manually takes only a couple of minutes. For large-scale batch operations today, a local FFmpeg installation with a shell loop is the practical alternative.
FAQ
Does removing audio reduce video quality?
No. The tool uses stream copy, which passes the video data through without decoding or re-compressing. The video quality, bitrate, resolution, and codec are all identical to the source.
What video formats are supported?
MP4, MOV, MKV, WebM, AVI, and most common container formats. The output format matches the input.
Can I remove audio from a video that has multiple audio tracks?
Yes. The -an flag in FFmpeg removes all audio streams from the container. If the file has multiple audio tracks (e.g., a director's commentary alongside the main audio), all of them are dropped.
How long does processing take?
Stream copy is nearly instant — typically under a second for files of any length, since no decoding or re-encoding occurs.
Is there a file size limit?
There is no server-side limit because nothing is uploaded. The practical limit is your browser's available RAM. Most modern devices handle files up to several gigabytes without issues.
Can I add new audio after removing the original?
The tool removes audio only — it does not add or mix audio tracks. To add a new audio track after muting, use a video editor or a dedicated muxing tool.



