mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 17:23:48 +01:00
[nytimes] Improve _VALID_URL (Fixes #5238)
This commit is contained in:
parent
eecc0685c9
commit
ccf3960eec
@ -9,9 +9,9 @@
|
|||||||
|
|
||||||
|
|
||||||
class NYTimesIE(InfoExtractor):
|
class NYTimesIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:(?:www\.)?nytimes\.com/video/(?:[^/]+/)+|graphics8\.nytimes\.com/bcvideo/\d+(?:\.\d+)?/iframe/embed\.html\?videoId=)(?P<id>\d+)'
|
_VALID_URL = r'https?://(?:(?:www\.)?nytimes\.com/video/(?:[^/]+/)+?|graphics8\.nytimes\.com/bcvideo/\d+(?:\.\d+)?/iframe/embed\.html\?videoId=)(?P<id>\d+)'
|
||||||
|
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'http://www.nytimes.com/video/opinion/100000002847155/verbatim-what-is-a-photocopier.html?playlistId=100000001150263',
|
'url': 'http://www.nytimes.com/video/opinion/100000002847155/verbatim-what-is-a-photocopier.html?playlistId=100000001150263',
|
||||||
'md5': '18a525a510f942ada2720db5f31644c0',
|
'md5': '18a525a510f942ada2720db5f31644c0',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -24,7 +24,10 @@ class NYTimesIE(InfoExtractor):
|
|||||||
'uploader': 'Brett Weiner',
|
'uploader': 'Brett Weiner',
|
||||||
'duration': 419,
|
'duration': 419,
|
||||||
}
|
}
|
||||||
}
|
}, {
|
||||||
|
'url': 'http://www.nytimes.com/video/travel/100000003550828/36-hours-in-dubai.html',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
Loading…
Reference in New Issue
Block a user