YouTube Shorts Video Quality Explained: Why Downloads Look Bad
Why most Shorts downloads come out at 360p or with no sound, how YouTube splits video and audio above 360p, and what 1080p actually means for a vertical clip.
Download the same Short from three different sites and you can easily get three different results: a crisp 1080p file, a soft 360p one, and a silent 1080p one. None of the sites is lying to you — they are just making different trade-offs against how YouTube actually stores video. Here is what is going on underneath.
YouTube does not store one file per video
When a Short is uploaded, YouTube transcodes it into a set of renditions. Two categories matter here.
Progressive streams contain video and audio together in a single file. YouTube provides these only at low resolutions — in practice 360p, sometimes 144p. They are a legacy of older players and remain because they are simple: one URL, one file, ready to play.
Adaptive streams contain video or audio, never both. A 1080p adaptive video stream has no audio track in it whatsoever. A separate audio stream carries the sound. The player downloads both simultaneously and synchronises them, which is what lets YouTube switch resolution mid-playback without interrupting the sound.
For a typical Short you will find adaptive video at 1080p, 720p, 480p and 360p, one or two audio streams, and a single 360p progressive stream.
This is where downloaders diverge
Given those options, a browser-based downloader has three choices:
- Take the progressive stream. One request, plays immediately, has sound. But it is 360p — on a phone screen it looks noticeably soft, and on a desktop monitor it looks bad.
- Take the best adaptive video stream. You get a genuine 1080p file. It is completely silent.
- Take both and join them. You get 1080p with sound, but you have to combine two files.
Most free sites pick option 1 or option 2, because option 3 requires actual media processing. Option 1 is why "the download looks worse than the video did"; option 2 is why "the download has no sound".
ShortsDL takes option 3. It fetches the highest-quality H.264 video stream up to 1080p and the best audio stream, then joins them inside your browser using a WebAssembly build of ffmpeg.
Joining is not re-encoding
This distinction matters for quality. The merge is done with a stream copy: the compressed video data and the compressed audio data are lifted out of their source files and written into a new MP4 container without being decoded or re-compressed. Every byte of picture information that YouTube served is in the file you receive.
Re-encoding — which is what a server-side converter usually does — would decode both streams, then compress them again, losing detail at every step and taking far longer. A stream copy of a 30-second Short finishes in about a second even on a phone.
The command is, more or less, the one any video engineer would reach for:
ffmpeg -i video.mp4 -i audio.m4a -c copy -movflags +faststart out.mp4
-c copy is the stream copy. +faststart moves the file's index to the front so the result starts playing before it has fully loaded.
What 1080p means for a vertical video
Shorts are vertical, usually 9:16. A "1080p" Short is therefore 1080 pixels wide and 1920 tall — the label refers to the short edge, matching how YouTube names its renditions. That is the same pixel count as a landscape 1080p video, rotated.
Not every Short has a 1080p rendition. YouTube generates renditions from the source, so a Short recorded at 720p never gets a 1080p version. The badge on the ShortsDL result card shows what is actually available for that specific video, so you always know before you download.
Why bitrate matters as much as resolution
Two 1080p files can look very different. Resolution is the pixel grid; bitrate is how much data is spent describing it. YouTube assigns bitrate based on how demanding the content is — fast motion, confetti, grass, water all need more.
When several 1080p streams exist for the same Short, ShortsDL picks the one with the highest bitrate. You do not need to think about it, but it is why the file size varies so much between Shorts of similar length.
Codecs: why H.264 specifically
YouTube also serves VP9 and AV1 versions of many streams. They compress better — a smaller file at the same visual quality — which sounds strictly better.
The catch is compatibility. An MP4 containing H.264 video and AAC audio plays on essentially everything ever made: every phone, every editor, every TV, every messaging app. VP9 in an MP4 container is far pickier, and dropping a VP9 file into some video editors or sending it through some chat apps simply does not work.
Since a Short is a few megabytes either way, the size saving is not worth the compatibility risk. ShortsDL takes H.264 for that reason.
Full-length videos are a different story
For regular YouTube videos, the adaptive streams are gated behind an additional token that a browser-based tool cannot produce. Only the 360p progressive stream remains reachable. That is why ShortsDL offers 360p only for anything longer than a Short, and says so on the card rather than quietly handing you a worse file.
In short
- Below 360p, video and audio come together. Above it, they are separate.
- A silent download means the tool grabbed video-only and stopped.
- A soft download means it grabbed the 360p combined file.
- Joining the two properly gives 1080p with sound, and costs nothing in quality.
The download walkthrough shows what that looks like in practice.
Ready to save a Short? Paste the link on ShortsDL.
Open ShortsDL