diff --git a/yt_dlp/extractor/generic.py b/yt_dlp/extractor/generic.py index d77148a70..360c07b2e 100644 --- a/yt_dlp/extractor/generic.py +++ b/yt_dlp/extractor/generic.py @@ -959,16 +959,6 @@ class GenericIE(InfoExtractor): 'upload_date': '20250705', }, 'params': {'extractor_args': {'generic': {'impersonate': ['chrome']}}}, - }, { - # 🔧83 - # MegaTVComEmbedIE - 'url': 'https://www.in.gr/2021/12/18/greece/apokalypsi-mega-poios-parelave-tin-ereyna-tsiodra-ek-merous-tis-kyvernisis-o-prothypourgos-telika-gnorize/', - 'info_dict': { - 'id': 'apokalypsi-mega-poios-parelave-tin-ereyna-tsiodra-ek-merous-tis-kyvernisis-o-prothypourgos-telika-gnorize', - 'title': 'md5:5e569cf996ec111057c2764ec272848f', - }, - 'playlist_count': 2, - 'skip': 'IE fix required; embed detection', }, { # ✅124 # YoutubeIE diff --git a/yt_dlp/extractor/megatvcom.py b/yt_dlp/extractor/megatvcom.py index 93c7e7dc0..a86dfe94f 100644 --- a/yt_dlp/extractor/megatvcom.py +++ b/yt_dlp/extractor/megatvcom.py @@ -31,10 +31,8 @@ class MegaTVComIE(MegaTVComBaseIE): IE_NAME = 'megatvcom' IE_DESC = 'megatv.com videos' _VALID_URL = r'https?://(?:www\.)?megatv\.com/(?:\d{4}/\d{2}/\d{2}|[^/]+/(?P\d+))/(?P[^/]+)' - _TESTS = [{ 'url': 'https://www.megatv.com/2021/10/23/egkainia-gia-ti-nea-skini-omega-tou-dimotikou-theatrou-peiraia/', - 'md5': '6546a1a37fff0dd51c9dce5f490b7d7d', 'info_dict': { 'id': '520979', 'ext': 'mp4', @@ -43,20 +41,20 @@ class MegaTVComIE(MegaTVComBaseIE): 'timestamp': 1634975747, 'upload_date': '20211023', 'display_id': 'egkainia-gia-ti-nea-skini-omega-tou-dimotikou-theatrou-peiraia', - 'thumbnail': 'https://www.megatv.com/wp-content/uploads/2021/10/ΠΕΙΡΑΙΑΣ-1024x450.jpg', + 'thumbnail': r're:https?://www\.megatv\.com/wp-content/uploads/.+\.jpg', }, + 'skip': 'Site changed', }, { 'url': 'https://www.megatv.com/tvshows/527800/epeisodio-65-12/', - 'md5': 'cba2085d45c1abeb8e7e9b7e1d6c0072', 'info_dict': { 'id': '527800', 'ext': 'mp4', - 'title': 'md5:fc322cb51f682eecfe2f54cd5ab3a157', + 'title': 'Η Γη της Ελιάς: Επεισόδιο 65 - A\' ΚΥΚΛΟΣ ', 'description': 'md5:b2b7ed3690a78f2a0156eb790fdc00df', 'timestamp': 1636048859, 'upload_date': '20211104', 'display_id': 'epeisodio-65-12', - 'thumbnail': 'https://www.megatv.com/wp-content/uploads/2021/11/16-1-1.jpg', + 'thumbnail': r're:https?://www\.megatv\.com/wp-content/uploads/.+\.jpg', }, }] @@ -104,7 +102,6 @@ class MegaTVComEmbedIE(MegaTVComBaseIE): IE_DESC = 'megatv.com embedded videos' _VALID_URL = r'(?:https?:)?//(?:www\.)?megatv\.com/embed/?\?p=(?P\d+)' _EMBED_REGEX = [rf''']+?src=(?P<_q1>["'])(?P{_VALID_URL})(?P=_q1)'''] - _TESTS = [{ 'url': 'https://www.megatv.com/embed/?p=2020520979', 'md5': '6546a1a37fff0dd51c9dce5f490b7d7d', @@ -118,6 +115,7 @@ class MegaTVComEmbedIE(MegaTVComBaseIE): 'display_id': 'egkainia-gia-ti-nea-skini-omega-tou-dimotikou-theatrou-peiraia', 'thumbnail': 'https://www.megatv.com/wp-content/uploads/2021/10/ΠΕΙΡΑΙΑΣ-1024x450.jpg', }, + 'skip': 'Site changed', }, { 'url': 'https://www.megatv.com/embed/?p=2020534081', 'md5': '6ac8b3ce4dc6120c802f780a1e6b3812', @@ -131,6 +129,16 @@ class MegaTVComEmbedIE(MegaTVComBaseIE): 'display_id': 'neo-rekor-stin-timi-tou-ilektrikou-reymatos-pano-apo-ta-200e-i-xondriki-timi-tou-ilektrikou', 'thumbnail': 'https://www.megatv.com/wp-content/uploads/2021/11/Capture-266.jpg', }, + 'skip': 'Site changed', + }] + _WEBPAGE_TESTS = [{ + 'url': 'https://www.in.gr/2021/12/18/greece/apokalypsi-mega-poios-parelave-tin-ereyna-tsiodra-ek-merous-tis-kyvernisis-o-prothypourgos-telika-gnorize/', + 'info_dict': { + 'id': 'apokalypsi-mega-poios-parelave-tin-ereyna-tsiodra-ek-merous-tis-kyvernisis-o-prothypourgos-telika-gnorize', + 'title': 'md5:5e569cf996ec111057c2764ec272848f', + }, + 'playlist_count': 2, + 'skip': 'IE fix required; embed detection', }] def _match_canonical_url(self, webpage):