mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
parent
d92125aeba
commit
762e509d91
1 changed files with 14 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
|
|
||||||
class MediaiteIE(InfoExtractor):
|
class MediaiteIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?mediaite.com/(?:tv|sports|politics|podcasts|opinion)/[\w-]+/'
|
_VALID_URL = r'https?://(?:www\.)?mediaite.com(?!/category)(?:/[\w-]+){2}'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://www.mediaite.com/sports/bill-burr-roasts-nfl-for-promoting-black-lives-matter-while-scheduling-more-games-after-all-the-sht-they-know-about-cte/',
|
'url': 'https://www.mediaite.com/sports/bill-burr-roasts-nfl-for-promoting-black-lives-matter-while-scheduling-more-games-after-all-the-sht-they-know-about-cte/',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
@ -71,6 +71,19 @@ class MediaiteIE(InfoExtractor):
|
||||||
'upload_date': '20210913',
|
'upload_date': '20210913',
|
||||||
},
|
},
|
||||||
'params': {'skip_download': True}
|
'params': {'skip_download': True}
|
||||||
|
}, {
|
||||||
|
'url': 'https://www.mediaite.com/news/watch-cnbcs-jim-cramer-says-nobody-wants-to-die-getting-infected-by-unvaccinated-coworker-even-for-22-an-hour/',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'nwpt1elX',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': "CNBC's Jim Cramer Says Nobody Wants to Die Getting Infected by Unvaccinated Coworker 'Even for $22 an Hour'.mp4",
|
||||||
|
'description': 'md5:d41d8cd98f00b204e9800998ecf8427e',
|
||||||
|
'thumbnail': 'https://cdn.jwplayer.com/v2/media/nwpt1elX/poster.jpg?width=720',
|
||||||
|
'duration': 60,
|
||||||
|
'timestamp': 1633014214,
|
||||||
|
'upload_date': '20210930',
|
||||||
|
},
|
||||||
|
'params': {'skip_download': True}
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
|
Loading…
Reference in a new issue