-
Notifications
You must be signed in to change notification settings - Fork 10.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
download biggest file size #26450
Comments
By default, youtube-dl sorts the format by The problem is that YouTube often reports the wrong tbr (total bit rate) for videos, breaking the best/worst filters. Even if the sort order was to be changed to As a temporary fix until a better sorting method can be created, I had proposed a pull request #25959 to allow the user to specify how to sort the formats. If you are willing to use that branch, Documentation for #25959 :
|
thanks @pukkandan! it works like a charm! |
just use --format-sort vbr,abr (video+audio bitrate) |
Checklist
Question
How can I make youtube-dl automatically pick the file with the biggest size regardless of extension? best/bestvideo seems to just pick the highest quality mp4 unless there's a webm with a higher resolution. For example, if the 1080p webm is 150MiB and the 1080p mp4 is 145MiB, youtube-dl picks the mp4 unless there's a 1440p webm available and no 1440p mp4.
I'm using the latest version.
edit:
I've read on reddit that the sole deciding factor for "best" is bitrate. Shouldn't higher bitrate mean bigger file size though? So what's happening here?
The text was updated successfully, but these errors were encountered: