1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-07-26 23:28:29 +00:00

VoxMediaIE

This commit is contained in:
doe1080 2025-07-16 15:53:01 +09:00
parent 70c6fae9a7
commit f464621e8d
2 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -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)