Why Your Downloaded Video Has No Sound (And How to Fix It)
You save a video, open it, and there is nothing. No audio at all. The instinct is that the download failed, and occasionally it did, but far more often the file is exactly what the platform stored and the silence has a specific, boring explanation.
There are four causes. Work through them in order and you will identify yours in about a minute.
Cause 1: You picked a video-only stream
This is the big one, and it is almost always YouTube. Above 1080p, YouTube does not store video and audio together. It keeps them as separate streams and the player combines them on the fly while you watch.
Download a 1440p or 2160p option without any muxing step and you get the video stream on its own, which is silent by definition. The audio exists, it is simply a different file. Nothing is broken and nothing was lost.
The fix
- Take the 1080p option instead. It is usually stored as one combined file with audio included.
- Or use a download that says it combines the streams server side, which does the muxing for you.
- Or merge them yourself: ffmpeg -i video.webm -i audio.m4a -c copy output.mkv takes a couple of seconds.
Our YouTube page lists which entries carry audio and which do not, precisely because this catches so many people out.
Cause 2: The post never had audio
On X, anything that looks like a GIF is stored as a short, silent, looping MP4. There is no audio stream in the file and there never was. The same is true of the GIF-style posts on several other platforms.
The test is immediate: open the original post and turn your volume up. If it is silent there too, the file is faithful and no tool can add audio that was never recorded. Our Twitter GIF page goes into why the format works this way.
Cause 3: The uploader muted it
Creators mute videos more often than you would think. Sometimes deliberately, to avoid a copyright claim on background music. Sometimes accidentally, by exporting from an editor with the audio track disabled.
Platforms also mute retroactively. If a rights holder claims the music in a video, Facebook, Instagram and YouTube will all strip the audio rather than remove the post. A video that had sound last year can be silent today, and the stored file is the silent one.
Cause 4: Your player cannot decode the audio codec
Less common, but real. If you downloaded a WebM file, the audio inside is probably Opus. Most modern players handle it, but older software, some smart TVs and a few editing applications do not, and they will play the picture while silently ignoring a track they cannot read.
How to tell this apart from a genuinely silent file
Open the file in VLC, which handles essentially every codec in existence. If VLC plays sound and your usual player does not, it is a codec support problem rather than a missing track. Re-download the MP4 version, which uses AAC audio and plays everywhere, and the problem disappears.
A quick diagnostic order
- Play the original post with the volume up. Silent there means silent in the file, and you are done.
- Check which option you downloaded. Anything labelled video only or above 1080p on YouTube is the likely culprit.
- Open the file in VLC. Sound there means your first player lacked the codec.
- Look at the container. WebM means Opus audio, MP4 means AAC, and AAC is the safer choice for compatibility.
Avoiding it next time
Prefer MP4 over WebM unless you have a reason not to. Prefer the highest option that explicitly includes audio over the highest option overall. On YouTube specifically, treat 1080p as the sensible default and go higher only when you genuinely need the resolution and are prepared to merge streams.
Our formats guide explains the container and codec side properly if you want to understand why these splits exist, and the how it works page covers choosing a quality at download time.
