A remove audio from video tool strips the sound track off a video file so you end up with a silent version of the same video. The tool above accepts MP4, MOV, AVI, MKV, WebM, M4V, FLV, WMV, and 3GP files and produces a silent video of the same format, in seconds, without ever uploading your file. The key thing most online competitors get wrong: they silently re-encode the video, which loses quality. This tool uses stream-copy mode — the video pixels are bit-identical to your input.
How to remove audio from a video in 2 steps
- Drop your video file into the upload zone above, or click to browse.
- Click Remove Audio. Download the silent video when it finishes. That is the entire flow — no format dropdowns, no quality settings, no time-range pickers.
Why lossless matters when you remove audio
Most online tools that promise to remove audio from a video actually re-encode the video. That is, they decode every frame, drop the audio, and re-compress the video from scratch. The result looks fine at a glance, but it is meaningfully worse than the input: compression artifacts get stacked, fine detail in dark areas softens, gradients band, and the file size changes in ways you didn’t ask for.
This tool does something different. FFmpeg has a mode called “stream copy” (the flags are -c copy -an) that rewrites the container with the audio track omitted but never touches the video frames themselves. The video stream in the output is bit-identical to the video stream in the input. The file is also processed much faster because there is no decoding/re-encoding step. Five-minute videos finish in a couple of seconds, two-hour videos in well under a minute.
The trade-off: stream copy only works if your input container can hold the video codec without modification. That is almost always true for normal videos — anything you recorded with a phone, screen recorder, dashcam, GoPro, drone, or video editor will work. Stream copy can fail on unusual codec combinations (some old WMV variants, exotic ProRes flavors). When that happens this remove audio from video tool shows a clear error and points you toward converting your input to MP4 first.
One nice side effect of lossless removal: your output file is genuinely smaller than your input, by exactly the size of the audio track. A 200 MB MP4 with a typical AAC audio track will come out around 180–185 MB. For long-form video this can mean dropping 50 MB or more off the file size with no quality loss anywhere. Re-encoding tools don’t give you that — they re-process every video frame, so the output size is unpredictable and can even grow if the new encoder settings are less aggressive than the original.
When you would want to remove audio from a video
Uploading to a platform that scans for copyrighted audio. YouTube Content ID, TikTok’s audio matcher, Instagram Reels, Twitch clips — incidental music in the background of your recording can trigger a strike, a global mute, or even a takedown. Removing the audio entirely before upload sidesteps the whole detection pipeline, since there is nothing for the system to match against.
Replacing the original audio with a voiceover or soundtrack. Most video editors let you add audio tracks but layering over existing audio is rarely what you want — you end up with two voices talking at once. Removing the audio first gives you a clean blank canvas to mix on top of.
Silencing a screen recording. Screen recorders often capture system audio along with the picture — notification dings, music from another tab, the microphone. If you only wanted the visual, the audio is just noise you have to clean up before sharing the clip.
Cleaning up a phone video. Sometimes the audio caught something embarrassing, private, or just unflattering — a side conversation, the camera person breathing, ambient background junk. Removing the audio lets you share the visual moment without the rest.
Archival of visual content. Surveillance footage, time-lapse recordings, documentary B-roll, family clips meant as visual records — audio is usually irrelevant and removing it cuts file size while sidestepping any privacy concerns about the captured sound.
Preparing assets for a slide deck or training material. Embedded videos in presentations are usually meant to be watched silently while someone narrates over them. Removing the audio prevents accidental playback noise and keeps the focus on the presenter.
Worked example — muting a screen recording before adding voiceover
Say you screen-recorded a software demo with system audio captured (UI clicks, notification sounds, background music from a Spotify tab). You want to publish the demo with a clean narrated voiceover instead. The flow: drop the screen recording into this remove audio from video tool, click Remove Audio, and download the silent MP4. Open that silent video in your editor of choice, drop a fresh audio track on top, and export. The video pixels are identical to your original recording — no re-encoding artifacts to fight, no quality lost on the round trip.
Notice what this avoids: a typical re-encoding workflow would have you import the screen recording into an editor, mute the audio track, and export. But export means re-encoding, which adds compression artifacts on top of whatever your screen recorder already encoded — text and UI elements get a touch softer, fast cursor movements develop ghosting, narrow color gradients band slightly. None of that happens with stream copy. You get the same video file your screen recorder produced, just with the audio track stripped out.
Worked example — removing copyrighted background music from a phone video
You captured a great moment on your phone, but a copyrighted song was playing in the background. Uploading to Instagram or TikTok will get the audio muted by their automated system at best, or the video pulled at worst. The fix: drop the MP4 into this tool, click Remove Audio, and you get back a silent MP4 you can safely upload. Add captions or a royalty-free track over the top in any editor, and you are good to go.
This is the path platforms actually want you to take. Their copyright-detection systems can’t flag what isn’t in the file — uploading a silent video sidesteps the entire matching pipeline. Adding a track you have the rights to (royalty-free libraries, Creative Commons audio, your own music) keeps the upload clean.
Remove audio vs mute — what is the difference?
Player-side mute (clicking the speaker icon in YouTube, dragging the volume slider down in a media player) just hides the audio from one listener at one moment. The audio is still in the file. Anyone who watches the video later, on a different player, with the volume up, will hear it. Sharing the file gives them the original audio along with the video.
This tool, by contrast, deletes the audio track from the file itself. The video genuinely has no audio anymore. This is what you want when uploading to platforms that scan for copyrighted audio (the file shows up as having no audio track, period), when sharing a video with someone you don’t want to hear the original audio, or when you are using the silent video as source material for further editing.
Tips for the result
- File over 600 MB? Cut it down first with our free Video Trimmer — lossless, browser-only, no upload. Then come back here to strip the audio.
- Want the audio file too, not just removed? The opposite operation is our Video to Audio Converter — extracts MP3, WAV, AAC, FLAC, or OGG from the same source video.
- Need a still frame from the silent video? Our video thumbnail generator pulls any frame as PNG or JPG.
- Working with a YouTube source? Grab the channel’s thumbnail too with our YouTube Thumbnail Downloader.
- Sharing the silent file via a printed link? Generate a scannable code that opens the file with our QR code generator.
Privacy and how this tool works
Every step runs inside your browser. Your video file never leaves your device. There is no upload, no proxy, no server-side processing, no analytics that records what you converted. Closing the tab erases everything. This matters when removing audio from confidential recordings — internal meetings, NDA-protected content, family videos, anything you would rather not entrust to a third-party processing pipeline.
The mechanism is FFmpeg compiled to WebAssembly. The first time you click Remove Audio, your browser downloads the ~30 MB WebAssembly engine. After that, it is cached — every subsequent visit and every subsequent run starts instantly. The tool also works offline once the page is loaded; you can pull your network plug and processing still completes.
FFmpeg internally uses a virtual file system to read your video. We mount your File object directly via a browser API called WORKERFS, which lets FFmpeg read bytes from your file on demand — never loading the entire video into RAM at once. That means even multi-gigabyte recordings work, and your computer’s memory usage stays low and predictable throughout. This is the same architecture used by professional in-browser video tools, just packaged into a one-click experience.
Ready to remove the audio?
Scroll up, drop your video, and you are 2 seconds from a silent copy. Bookmark this page — the next time you need to strip audio from a recording before uploading, you are one drag-and-drop away. No quality lost, no upload, no signup. The tool stays open across multiple files: you can drop one video, get a silent copy, click “Remove audio from another video,” and process the next one without reloading the page or re-downloading the engine.