1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-31 14:45:14 +00:00

[ie/youtube] Change default player clients to ios,web_creator (#10674)

Closes #10660
Authored by: bashonly
This commit is contained in:
bashonly
2024-08-05 18:26:50 -05:00
committed by GitHub
parent c86891eb94
commit 406f4c2e47
2 changed files with 2 additions and 2 deletions

View File

@@ -3744,7 +3744,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _get_requested_clients(self, url, smuggled_data):
requested_clients = []
broken_clients = []
default = ['ios', 'tv']
default = ['ios', 'web_creator']
allowed_clients = sorted(
(client for client in INNERTUBE_CLIENTS if client[:1] != '_'),
key=lambda client: INNERTUBE_CLIENTS[client]['priority'], reverse=True)