diff --git a/yt_dlp/extractor/generic.py b/yt_dlp/extractor/generic.py index c233af057..05afb15b7 100644 --- a/yt_dlp/extractor/generic.py +++ b/yt_dlp/extractor/generic.py @@ -1594,16 +1594,6 @@ class GenericIE(InfoExtractor): 'upload_date': '20250702', }, 'playlist_count': 3, - }, { - # 🔍119 - # VoxMediaIE - 'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns', - 'info_dict': { - 'id': '18e820ec3f', - 'ext': 'mp4', - 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama', - }, - 'skip': 'Invalid URL', }, { # ✅124 # YoutubeIE diff --git a/yt_dlp/extractor/voxmedia.py b/yt_dlp/extractor/voxmedia.py index 995ef2185..64ac44303 100644 --- a/yt_dlp/extractor/voxmedia.py +++ b/yt_dlp/extractor/voxmedia.py @@ -84,6 +84,7 @@ class VoxMediaIE(InfoExtractor): 'uploader': 'The Verge', }, 'add_ie': ['Youtube'], + 'skip': 'Site changed', }, { # Volume embed, Youtube 'url': 'http://www.theverge.com/2014/10/21/7025853/google-nexus-6-hands-on-photos-video-android-phablet', @@ -156,6 +157,15 @@ class VoxMediaIE(InfoExtractor): }], 'skip': 'Page no longer contain videos', }] + _WEBPAGE_TESTS = [{ + 'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns', + 'info_dict': { + 'id': '18e820ec3f', + 'ext': 'mp4', + 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama', + }, + 'skip': 'Invalid URL', + }] def _real_extract(self, url): display_id = self._match_id(url)