diff options
| author | Naglis Jonaitis <njonaitis@gmail.com> | 2015-03-19 20:55:05 +0200 | 
|---|---|---|
| committer | Naglis Jonaitis <njonaitis@gmail.com> | 2015-03-19 20:55:05 +0200 | 
| commit | ccf3960eeca3ca8b75da709c8c3019531101f1e7 (patch) | |
| tree | da303dd9feb5d6e23a18ea8d7415843f64651a60 | |
| parent | eecc0685c976abc8fdcebe24e5c3a76d89268c54 (diff) | |
[nytimes] Improve _VALID_URL (Fixes #5238)
| -rw-r--r-- | youtube_dl/extractor/nytimes.py | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/youtube_dl/extractor/nytimes.py b/youtube_dl/extractor/nytimes.py index d1cf8f4f3..03f0a4de6 100644 --- a/youtube_dl/extractor/nytimes.py +++ b/youtube_dl/extractor/nytimes.py @@ -9,9 +9,9 @@ from ..utils import (  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',          'md5': '18a525a510f942ada2720db5f31644c0',          'info_dict': { @@ -24,7 +24,10 @@ class NYTimesIE(InfoExtractor):              'uploader': 'Brett Weiner',              'duration': 419,          } -    } +    }, { +        'url': 'http://www.nytimes.com/video/travel/100000003550828/36-hours-in-dubai.html', +        'only_matching': True, +    }]      def _real_extract(self, url):          video_id = self._match_id(url) | 
