Browse Source

[ie/youtube] Reduce android client priority (#10467)

Authored by: seproDev
sepro 8 months ago
parent
commit
b85eef0a61
1 changed files with 1 additions and 1 deletions
  1. 1 1
      yt_dlp/extractor/youtube.py

+ 1 - 1
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()):