Skip to content
Allin

Removing the Sound From a Video Without Touching the Picture

Published 8/11/2026 · 11 min read · File tools

Daniel Okonkwo

Daniel OkonkwoFront-end developer and tech writer at Allin

Web performance · File formats

Checked against 3 sources

View profile
In short

The command is -i <file> -c copy -an <output>. There is no filter and no encoder in it. -c copy tells ffmpeg to move every stream it keeps across without decoding anything, and -an excludes audio from that selection, so the sound is not silenced — it is simply not carried over. This is verifiable rather than a promise: demuxing the raw H.264 stream out of a test clip and out of its muted copy gave 391,608 bytes both times, with the same checksum, so the picture in the output is the picture from the input with nothing changed at all. That makes this the fastest tool of the family. Nothing is re-compressed, so a long clip takes about as long as copying the file, and the result is not a second lossy generation. Two things follow that surprise people. The saving is small: audio is a minority of a video file, usually between one and six percent of anything shot at a decent bitrate, so removing it from a 340-megabyte 4K clip takes off about two megabytes. And what leaves is only the audio. -c copy carries the container's global metadata across untouched — titles, creation dates, device tags, anything naming a recording — and it keeps a subtitle track too, because subtitles are not audio. If you want the sound preserved as a separate file rather than discarded, extract it before muting; once the command has run there is nothing left to extract from.

One ffmpeg command, no encoder, and a result whose video stream is byte-for-byte the one you started with — verified by checksum. Plus why the file barely shrinks, and the difference between a silent track and no track at all.

The one command in this family that decodes nothing

Most video tools have to open the picture to do their job: rotating it, resizing it and compressing it all require decoding every frame, doing something to it, and encoding it again. Removing a sound track requires none of that. The container holds separate streams, and taking one out is a question of rewriting the index and copying the rest across. That is exactly what -c copy -an does: copy every stream that survives selection, and exclude audio from the survivors.

That the picture really is untouched is the sort of claim worth testing rather than believing. Take a test clip, pull the raw H.264 stream out of it, then run the tool's command, pull the raw stream out of the result, and compare. Both came to 391,608 bytes with the identical checksum. Not similar, not visually indistinguishable — the same bytes. Whatever the encoder decided about your footage the day it was made is still exactly what the file says, and nothing this tool did could have changed it.

Muting and removing are not the same thing

There are three states a video can be in, and people use one word for all of them. Muted in a player: the file is unchanged, only your speakers are off. Silenced in the file: the audio track is still there, still occupying its share of the bitrate, but every sample is zero. Removed: there is no audio track, the container lists one fewer stream, and no player can find anything to play. This tool does the third.

The distinction matters in places you would not guess. Publishing platforms that scan uploads for copyrighted music examine the audio stream; a file with no audio stream has nothing to scan, while a file with a silent one is still a file with an audio stream and may still be processed as such. Editing software behaves differently too: a timeline import of a clip with no audio gives you a video-only item, while a silent track gives you a track that has to be dealt with. And a silent track still costs bits, sometimes a surprising number of them, because encoders do not always compress silence to nothing.

The saving is smaller than almost everyone expects

Sound feels like half of a video, so it feels as though removing it ought to halve the file. It does not, because the two are not remotely the same size. A stereo track at 128 kbps carries 16 kilobytes a second. A modest 1080p picture at 2 megabits per second carries 250. The audio is six percent of that file, and on a clip from a modern phone shooting 4K at 45 megabits per second it is well under one percent. The table gives four common cases with the arithmetic done.

The pattern runs the other way from intuition: the better the picture, the less the sound is worth removing. If your reason for muting is to get under an upload limit, this is the wrong tool — you will free up one or two percent and still be over. Compress or trim the video instead, and mute only for the reason muting is actually good for, which is that you do not want the sound in the file.

What survives the copy, and one thing that quietly does not

Because -c copy moves streams rather than recreating them, the output keeps a great deal you might have assumed would go. The container's global metadata comes across: the creation date, the device that recorded it, any title or comment, the encoder string. If any of those name the audio — a title that is a song title, a comment mentioning a recording — they are still in the file after the sound has gone. Removing an audio stream is not the same as removing every trace of it, and if the point of muting was privacy, check the metadata separately.

Subtitles survive too, which is usually what you want. A subtitle track is not audio, so -an does not touch it and -c copy carries it across intact. There is one catch worth knowing about, and it comes from ffmpeg's default behaviour rather than from this tool: with no explicit stream map, ffmpeg selects the best single stream of each type. A file carrying three subtitle tracks or two camera angles therefore comes out with one of each. If your source has multiple tracks of anything, check the result before you throw the original away.

If the button is greyed out and it says there is no sound

Before loading a large encoder just to answer a small question, the tool asks the browser whether the file has a sound track at all. It does that by creating a hidden video element, starting it muted, and reading three properties that different browser engines expose under different names. If all three come back empty it concludes there is no audio, prints a line saying so, and disables the button on the grounds that there is nothing to do.

That check is the tool's weakest link, because those three properties are not equally trustworthy. One is specific to a single engine. Another has to be enabled before it reports anything in the most widely used browser. The third only becomes non-zero once some audio has actually been decoded, which may not have happened by the time the check runs. If the tool tells you a clip has no sound and your ears say otherwise, do not conclude the file is odd: try the same clip in a different browser, where a different one of the three properties is the one that answers. The command itself is not affected — it is the gate in front of it that guessed wrong.

Audio bitrate
What one minute of video weighs with and without its sound, at four common bitrates
Video bitrateAudio bitrateOne minute, with soundOne minute, silentSaving
500 kbit/s — heavily compressed, small screen128 kbit/s4.71 MB3.75 MB20 %
2,000 kbit/s — 1080p for social media128 kbit/s15.96 MB15.00 MB6 %
8,000 kbit/s — high-quality 1080p192 kbit/s61.44 MB60.00 MB2.3 %
45,000 kbit/s — 4K straight off a phone256 kbit/s339.42 MB337.50 MB0.6 %
Mute a videoDrop the sound track from a video without touching the picture.Try the tool

Frequently asked questions

Will the picture change at all?
No, and this is one of the rare cases where that can be stated as a fact rather than an intention. The command contains no filter and no video encoder — -c copy moves the compressed video stream across without decoding it. Pulling the raw stream out of a test clip and out of its muted copy gave the same byte count and the same checksum. Resolution, frame rate, bitrate, colour, keyframe positions: all identical, because none of them was ever looked at.
Why did my file barely get smaller?
Because the sound was never the heavy part. A stereo track at 128 kbit/s uses about a sixteenth of what a modest 1080p picture uses, and about a three-hundredth of what a phone's 4K mode uses. The result line under the download tells you the exact number of bytes that left in your particular case. If the number disappoints you, the tool did nothing wrong — it removed all the audio there was, and the audio was small. To make a video appreciably smaller you have to work on the picture, which means compressing or resizing it, both of which cost quality.
Can I get the sound back afterwards?
Not from the muted file — there is nothing in it to recover, because the track was excluded rather than blanked. You can of course keep your original, and that is the safe habit. If you know in advance that you want the sound as a separate file, run the clip through the audio extractor before muting: that gives you a standalone track alongside the silent video, and you can put the two back together later in any editor. The tool says as much in a line above its button, and it is worth reading before you press it.
How is this different from just turning the volume down before I share it?
Turning the volume down changes nothing in the file: whoever receives it still has the full sound track and can play it. Encoding a track of silence changes the file but leaves an audio stream in it, still occupying bitrate, still visible to anything that inspects the file. Removing the stream changes what the file is: it no longer declares audio at all. Choose the third when the sound must not travel with the video — a recording with a conversation in the background, footage with music you have no licence for, anything you would rather not hand to a stranger.
Does removing the sound also remove everything that mentions it?
No. The audio stream goes, and its own stream-level tags go with it, but the container's global metadata is copied across untouched — creation date, device, title, comment, encoder string. If any of those describe the recording or name a piece of music, they are still there. A subtitle track survives too, since subtitles are not audio. If you are muting for privacy rather than for convenience, treat the metadata as a separate job and inspect the output before sending it anywhere.

Articles you may find interesting

All guides
ExplainerMOV to MP4: Why the iPhone Video Will Not Open on WindowsThe extension is almost never the real problem. A .mov and a .mp4 are cousins from the same family of file formats, and what actually stops the video is the codec sealed inside it — usually HEVC. Here is how to tell the two failures apart, and when changing the box is enough.ExplainerWhy Your Video Cut Lands Two Seconds EarlyYou asked for 1:23 and got 1:21. Nothing is broken: a cut that does not re-encode can only land on a keyframe, and how far away the nearest one is depends entirely on what recorded the video. Here is how to know which you have and when to accept the drift.ExplainerPeak Normalisation Versus Loudness Normalisation, and the Target That Cannot Be ReachedScaling until the loudest sample hits a ceiling barely changes how loud something sounds. Measuring in LUFS does. This tool measures — in two passes, correctly — and then prints a result it never verified, which on ordinary material can be well over a decibel adrift.How-toGetting the Audio Out of a Video Without a Second Generation of LossThe soundtrack inside your video has already been through a lossy encoder once. Whether extracting it costs you a second pass depends entirely on which of the three buttons you press — and "extract to MP3", the one everybody reaches for, is the one that costs.How-toGetting a Video Under an Upload Limit Without GuessingThe quality slider cannot aim at a file size — that is not what it is for. But the limit and the length of your clip already fix the bitrate you are allowed to spend, and one division tells you whether the resolution you are using can possibly fit.ExplainerRotating a Video 90° or 180°: the Flag or the PixelsThere are two completely different ways to turn a video, and only one of them touches the picture. This tool takes the slow, lossy, universal road — and there is a good chance your sideways phone clip does not need it at all.

Related tools

These four tools run ffmpeg in your browser: nothing is uploaded, and nothing here depends on a server staying up. The behaviour described was read out of each component's source and then confirmed by executing the same argument arrays against the very ffmpeg build the site ships, so it is true of the version live today and not of ffmpeg in general. Sizes and loudness figures came from short synthetic test files; your own footage will give different numbers on the same commands. Where a tool's on-screen wording and its code disagree, this article follows the code.

Sources

Spotted a mistake in this article?