diff options
author | sepro <4618135+seproDev@users.noreply.github.com> | 2024-07-14 21:10:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-14 21:10:29 +0200 |
commit | b85eef0a615a01304f88a3847309c667e09a20df (patch) | |
tree | 84c5fe898431090a57933fb3cbd70f3d4807ca5f | |
parent | 22870b81bad97dfa6307a7add44753b2dffc76a9 (diff) |
[ie/youtube] Reduce android client priority (#10467)
Authored by: seproDev
-rw-r--r-- | yt_dlp/extractor/youtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/youtube.py b/yt_dlp/extractor/youtube.py index 7c74ec905..53aca3816 100644 --- a/yt_dlp/extractor/youtube.py +++ b/yt_dlp/extractor/youtube.py @@ -270,7 +270,7 @@ def build_innertube_clients(): THIRD_PARTY = { 'embedUrl': 'https://www.youtube.com/', # Can be any valid URL } - BASE_CLIENTS = ('ios', 'android', 'web', 'tv', 'mweb') + BASE_CLIENTS = ('ios', 'web', 'tv', 'mweb', 'android') priority = qualities(BASE_CLIENTS[::-1]) for client, ytcfg in tuple(INNERTUBE_CLIENTS.items()): |