Why a downloaded video plays silently, and how merging prevents it
A downloaded video that plays with no sound almost always means the audio was never in the file to begin with. Above 360p, YouTube stores video and audio as two separate streams, and a downloader that fetches only the video stream hands you a picture with nothing attached. The other real cause is a platform side mute after a copyright claim, in which case the silence was already there before you downloaded anything. Those two explanations cover nearly every case, and they are easy to tell apart once you know what to look for.
The separate stream problem, which is the usual answer
Above 360p, YouTube keeps video and audio in different files. The 1080p stream you asked for contains picture only, with no audio track inside it at all. The best pre-combined stream, the one that already carries both tracks, tops out at 360p.
So a tool that fetches a single stream at high resolution produces exactly what it fetched: a silent video. It is not corruption, it is not your player and it is not your speakers. The audio simply was never downloaded.
Seven of eight competing pages never mention this split, and the one that does puts the threshold at 1440p, which is wrong. The threshold is 360p and it has been for years. This is also the reason some tools quietly cap at 360p, since that is the highest resolution they can reach without ever doing a merge.
A silent 1080p file and a 360p file with sound are two symptoms of the same missing step.
Merging is what prevents it
The fix is to fetch both streams and join them, which is what happens here before the file reaches you. The server downloads the video stream and the audio stream, merges them with ffmpeg into one MP4, and hands you the finished file. The YouTube downloader does this on every resolution above 360p without you selecting anything.
The merge copies both tracks rather than re-encoding them, so it is quick and it costs no quality. That distinction between copying and re-encoding is the whole subject of the converter guide, and it is why a merge finishes in a fraction of the time a real conversion would take.
It also matters which audio stream gets merged in. A tool that pairs a 2160p video with the lowest bitrate audio available produces a sharp file that sounds thin, which is a subtler version of the same failure. The quality guide covers the streams involved and what a proper pairing looks like.
When the platform muted it before you got there
A copyright claim can mute a video on the platform's own side, and then it arrives silent no matter how it is downloaded. This is a real and reasonably common cause, and there is nothing on the download side that can restore audio the platform has removed.
The way to tell is to check the source. Play the original video in your browser with the volume up. If it is silent there too, the mute happened upstream and the download is faithfully reproducing it. If it has sound in the browser and not in your file, the audio stream was never fetched.
That check takes ten seconds and it separates the two causes completely, which is more useful than any amount of troubleshooting on the file itself.
- Open the original video on the platform and play it with the volume up.
- Silent there as well? The platform muted it, and no download can bring the audio back.
- Sound there but not in your file? The audio stream was missing from the download.
- Download it again through a tool that merges the streams, and check the file plays with sound before you do anything else with it.
Other cases worth ruling out
A few situations look like a broken download and are not. Working through them in order costs less time than assuming the worst.
Note that a file with no audio track at all is a different thing from a file whose audio track is silent. If your player shows no audio stream for the file, that is the separate stream problem. If it shows an audio track that plays nothing, the source was probably muted.
- The post itself has no sound. Some uploads genuinely carry a silent track.
- A photo mode TikTok has no video file to hold an audio track, which the sound extraction guide explains.
- The player is muted, or the file opened in something that cannot decode the audio codec inside it.
- A 403 response earlier in the process, which means the request was not recognised as coming from a browser. That usually clears once the extractor catches up, and it is worth retrying later.
Getting a file that has sound the first time
Use a route that merges, and check the result before you build anything on it. A quick play through the first few seconds tells you what an hour of editing later would tell you painfully.
If sound is the only thing you actually want, skip the video entirely. The audio route never requests the video stream, so it is roughly 10 to 20 times fewer bytes for a 1080p source, and the audio guide covers what quality to expect from it.
On a phone, none of this changes, but where the file ends up does. Android puts it in /storage/emulated/0/Download and shows it in the gallery, while an iPhone puts it in the Files app and needs one extra tap through Share and Save Video to reach Photos. Both paths are in the mobile guide.
Frequently asked questions
Why does my downloaded video have no sound?
Most often because only the video stream was fetched. Above 360p, YouTube stores video and audio separately, so a high resolution stream on its own has no audio track in it.
At what resolution do video and audio split?
Above 360p. The best pre-combined stream, which already contains both tracks, tops out at 360p, and everything higher is video only.
How do I stop it happening?
Use a downloader that fetches both streams and merges them. Here the server joins them with ffmpeg before the file is sent, at every resolution above 360p.
Does merging reduce quality?
No. The merge copies both tracks rather than re-encoding them, so the picture and the audio are exactly what the platform served.
The original video is silent too. What now?
Then the audio was muted on the platform side, usually by a copyright claim. Nothing on the download side can restore audio that was removed upstream.
Why does my high resolution file sound thin rather than silent?
Because it was paired with a low bitrate audio stream instead of the best one available. That is the same missing step in a milder form.