diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-08-05 18:26:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-05 23:26:50 +0000 |
commit | 406f4c2e47502fffc1b0c210b4ee6487c89a44cb (patch) | |
tree | 38adc96785dbb43cb5851e02a09f5c1f527c171f /yt_dlp/extractor/youtube.py | |
parent | c86891eb9434b4d7eec426d38c0c625b5e13cb2f (diff) |
[ie/youtube] Change default player clients to `ios,web_creator` (#10674)
Closes #10660
Authored by: bashonly
Diffstat (limited to 'yt_dlp/extractor/youtube.py')
-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 46822cfde..224c9b988 100644 --- a/yt_dlp/extractor/youtube.py +++ b/yt_dlp/extractor/youtube.py @@ -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) |