From f464621e8dc84d3dd2d23de24403c2b802c8bdf4 Mon Sep 17 00:00:00 2001 From: doe1080 <98906116+doe1080@users.noreply.github.com> Date: Wed, 16 Jul 2025 15:53:01 +0900 Subject: [PATCH] VoxMediaIE --- yt_dlp/extractor/generic.py | 10 ---------- yt_dlp/extractor/voxmedia.py | 10 ++++++++++ 2 files changed, 10 insertions(+), 10 deletions(-) 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)