diff --git a/yt_dlp/extractor/generic.py b/yt_dlp/extractor/generic.py index bc0d3565f..c233af057 100644 --- a/yt_dlp/extractor/generic.py +++ b/yt_dlp/extractor/generic.py @@ -1604,18 +1604,6 @@ class GenericIE(InfoExtractor): 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama', }, 'skip': 'Invalid URL', - }, { - # ✅120 - # WimTVIE - 'url': 'http://www.renzoarborechannel.tv/50_sorrisi_da_napoli.htm', - 'info_dict': { - 'id': '50_sorrisi_da_napoli', - 'title': 'Renzo Arbore Channel . TV - 50 Sorrisi da Napoli', - 'age_limit': 0, - 'timestamp': 1612226372, - 'upload_date': '20210202', - }, - 'playlist_count': 40, }, { # ✅124 # YoutubeIE diff --git a/yt_dlp/extractor/wimtv.py b/yt_dlp/extractor/wimtv.py index 000d1437f..f922b5462 100644 --- a/yt_dlp/extractor/wimtv.py +++ b/yt_dlp/extractor/wimtv.py @@ -30,9 +30,7 @@ class WimTVIE(InfoExtractor): 'duration': 6481, 'thumbnail': r're:https?://.+?/thumbnail/.+?/720$', }, - 'params': { - 'skip_download': True, - }, + 'skip': 'Invalid URL', }, { # live stream 'url': 'https://platform.wim.tv/embed/?live=28e22c22-49db-40f3-8c37-8cbb0ff44556&autostart=true', @@ -42,9 +40,7 @@ class WimTVIE(InfoExtractor): 'title': 'Streaming MSmotorTV', 'is_live': True, }, - 'params': { - 'skip_download': True, - }, + 'skip': 'Invalid URL', }, { 'url': 'https://platform.wim.tv/#/webtv/automotornews/vod/422492b6-539e-474d-9c6b-68c9d5893365', 'only_matching': True, @@ -52,6 +48,17 @@ class WimTVIE(InfoExtractor): 'url': 'https://platform.wim.tv/#/webtv/renzoarborechannel/cast/f47e0d15-5b45-455e-bf0d-dba8ffa96365', 'only_matching': True, }] + _WEBPAGE_TESTS = [{ + 'url': 'http://www.renzoarborechannel.tv/50_sorrisi_da_napoli.htm', + 'info_dict': { + 'id': '50_sorrisi_da_napoli', + 'title': 'Renzo Arbore Channel . TV - 50 Sorrisi da Napoli', + 'age_limit': 0, + 'timestamp': 1612226372, + 'upload_date': '20210202', + }, + 'playlist_count': 40, + }] def _real_initialize(self): if not self._player: