From e123a48f1155703d8709a4221a42bd45c0a2b3ce Mon Sep 17 00:00:00 2001 From: bashonly <88596187+bashonly@users.noreply.github.com> Date: Tue, 16 Sep 2025 23:58:42 -0500 Subject: [PATCH] [ie/telecinco] Support browser impersonation (#14351) Closes #14349 Authored by: bashonly --- yt_dlp/extractor/telecinco.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yt_dlp/extractor/telecinco.py b/yt_dlp/extractor/telecinco.py index a34f2afd4a..bdcae3b774 100644 --- a/yt_dlp/extractor/telecinco.py +++ b/yt_dlp/extractor/telecinco.py @@ -46,7 +46,7 @@ class TelecincoBaseIE(InfoExtractor): error_code = traverse_obj( self._webpage_read_content(error.cause.response, caronte['cerbero'], video_id, fatal=False), ({json.loads}, 'code', {int})) - if error_code in (4038, 40313): + if error_code in (4036, 4038, 40313): self.raise_geo_restricted(countries=['ES']) raise @@ -140,7 +140,7 @@ class TelecincoIE(TelecincoBaseIE): def _real_extract(self, url): display_id = self._match_id(url) - webpage = self._download_webpage(url, display_id) + webpage = self._download_webpage(url, display_id, impersonate=True) article = self._search_json( r'window\.\$REACTBASE_STATE\.article(?:_multisite)?\s*=', webpage, 'article', display_id)['article']