1
0
Fork 0

[ie/youtube] Change default player clients to ios,tv (#10457)

Closes #10046
Authored by: seproDev
This commit is contained in:
sepro 2024-08-01 16:03:03 +02:00 committed by GitHub
commit efb42763de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

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