1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-11-14 13:35:15 +00:00

[ie/youtube] Add tv_downgraded client (#14887)

Authored by: seproDev
This commit is contained in:
sepro
2025-11-03 22:42:30 +01:00
committed by GitHub
parent e8a6b1ca92
commit 61cf34f544
3 changed files with 14 additions and 3 deletions

View File

@@ -147,9 +147,9 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
_SUBTITLE_FORMATS = ('json3', 'srv1', 'srv2', 'srv3', 'ttml', 'srt', 'vtt')
_DEFAULT_CLIENTS = ('tv', 'android_sdkless', 'web')
_DEFAULT_JSLESS_CLIENTS = ('android_sdkless', 'web_safari', 'web')
_DEFAULT_AUTHED_CLIENTS = ('tv', 'web_safari', 'web')
_DEFAULT_AUTHED_CLIENTS = ('tv_downgraded', 'web_safari', 'web')
# Premium does not require POT (except for subtitles)
_DEFAULT_PREMIUM_CLIENTS = ('tv', 'web_creator', 'web')
_DEFAULT_PREMIUM_CLIENTS = ('tv_downgraded', 'web_creator', 'web')
_GEO_BYPASS = False