How to Remove Audio from Video (Keep Just the Visual)
Need a silent video? Here's why you'd want to strip audio and the easiest ways to do it without complicated software.

You've got a video. You need it silent. Not muted — actually silent, with no audio track at all.
Maybe it's a screen recording with embarrassing background noise. Maybe you're posting a video loop to Instagram and don't want the audio to compete with people's music. Maybe you recorded a demo video at a coffee shop and there's a blender going off in the background. Whatever the reason, removing audio from video is a surprisingly common task.
And here's the thing: it should be dead simple, but most video editors make it way more complicated than it needs to be.
Why You'd Want a Silent Video
Before we get into how, let's talk about when this actually makes sense (because sometimes it doesn't).
Social media loops. Short visual loops work better without audio competing for attention. Think product demos, cinemagraphs, or those satisfying craft videos. Audio can be distracting when people are scrolling.
Screen recordings with bad audio. You recorded a tutorial but your mic picked up the neighbor's lawnmower, your mechanical keyboard, or your dog barking. Sometimes the visual is salvageable even when the audio isn't.
Background videos for websites. Autoplay videos on websites can't have audio anyway (browsers block it), so keeping the audio track is pointless bloat.
Privacy reasons. You filmed something in public or at home and there's identifiable audio you want gone — voices, location clues, music that would flag copyright systems.
Re-purposing footage. You've got B-roll or stock footage that has mediocre audio. You're planning to add music or voiceover later, so the original audio is just dead weight.
But look, if you just want to mute something temporarily, your video player has a mute button. This guide is for when you need the audio gone from the file itself.
The Easiest Method: Browser-Based Tools
In 2026, you genuinely don't need to install software for this. Browser-based tools handle it fine, and they're faster for one-off tasks.
Tools like KokoConvert let you upload a video, strip the audio in seconds, and download the result. No account, no watermarks, no installing ffmpeg and Googling command-line flags.
The process is stupidly simple:
- Upload your video file (most tools support MP4, MOV, AVI, WebM, MKV)
- The tool processes it and removes the audio stream
- Download the silent video
Done in under a minute for most videos. The output is typically an MP4 file with just the video stream — no audio track at all.
This works great for files under a few hundred megabytes. If you've got a 4K hour-long video, you might want a local solution instead (we'll get to that).
The Command-Line Way (For Nerds)
If you're comfortable with the terminal, ffmpeg is the gold standard. It's fast, free, and gives you total control.
Here's the magic command:
ffmpeg -i input.mp4 -c:v copy -an output.mp4
That's it. Let me break it down:
- -i input.mp4 — your source video
- -c:v copy — copy the video stream without re-encoding (keeps quality perfect)
- -an — "audio: none" (strips all audio tracks)
- output.mp4 — where to save the result
This is blazing fast because it's not re-encoding the video — just copying the video stream and ignoring the audio. A 10-minute 1080p video processes in under 10 seconds on a decent laptop.
The downside? You need ffmpeg installed, and if you're not a terminal person, the learning curve can feel steep. But if you're doing this regularly, it's worth the setup.
Video Editors Can Do It (But They're Overkill)
Got Premiere Pro, Final Cut, DaVinci Resolve, or even iMovie? Sure, they can all remove audio. But they're massive programs designed for full editing workflows, not one-button audio removal.
The typical process:
- Import video into a new project
- Drag it to the timeline
- Unlink or delete the audio track
- Export with video-only settings
This works, but it's slow. Export times can be several minutes even for short clips because most editors re-encode by default. And if you mess up the export settings, you might accidentally reduce video quality.
If you're already in an editing workflow, fine. But if you just need audio gone? This is like renting a bulldozer to move a potted plant.
Mobile Options
On your phone, things get trickier. Neither iOS nor Android have built-in audio removal in their default video tools.
iPhone users: iMovie (free from Apple) can do it. Import the video, tap the clip, tap the volume icon, and drag volume to zero. Then export. But that's muting, not removal — the silent audio track stays in the file. For true removal, use a browser tool in Safari.
Android users: Similar story. Most built-in editors can mute but not remove. Apps like VidTrim or Video Transcoder can strip audio, but you're installing an app for a simple task. Browser tools work fine on mobile browsers too.
Honestly, unless you're doing this constantly on mobile, just use a browser-based tool. It's faster than finding, installing, and learning a mobile app.
Does Removing Audio Reduce File Size?
Yes, but don't expect miracles. Audio tracks usually take up 5-15% of a video file's size, depending on bitrate.
A 100MB video might drop to 85-95MB after removing audio. Not nothing, but not a game-changer either. If you need serious file size reduction, focus on video compression instead — resolution, bitrate, and codec choice matter way more than audio.
There's one exception: if your video has multiple audio tracks (like multi-language files), removing all of them can save a decent chunk.
What About Replacing Audio?
Removing audio is often step one. Step two is adding different audio — music, voiceover, sound effects, whatever.
If that's your goal, you'll probably want a video editor at some point. But here's a workflow that works well:
- Strip the original audio with a simple tool (browser-based or ffmpeg)
- Import the silent video into your editor
- Add new audio and sync it
- Export the final version
This keeps things clean. You're not wrestling with two competing audio tracks or accidentally exporting the wrong one.
When NOT to Remove Audio
Sometimes removing audio is a bad idea. If you might want it later, keep the original file. Audio is easy to remove but impossible to recover once it's gone.
And if you're just trying to fix bad audio quality (not remove it entirely), look into audio repair tools instead. Noise reduction, EQ, and compression can save a lot of otherwise-unusable audio.
But if the audio is truly irredeemable or unwanted? Strip it. Don't let bad audio drag down good video.
The Bottom Line
Removing audio from video should be simple, and in 2026, it mostly is. For occasional use, browser tools are fastest. For batch processing or local workflows, ffmpeg is unbeatable. Video editors work but they're overkill unless you're already editing.
Choose your tool based on how often you need this. One video? Browser tool. Weekly task? Learn ffmpeg. Full editing workflow? Use what you already have.
Either way, don't let unwanted audio ruin a perfectly good video. Strip it and move on.