diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-05-10 00:26:42 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-05-10 00:26:42 +0600 |
commit | 480065172d4c97f00973b3f0bf24cd1b8e567627 (patch) | |
tree | a3bd495a4ff0579637ccde2b0ee65dc1ebaa2d98 /youtube_dl | |
parent | f2e0056579ac507b776ce2c86b5281fc28bbc275 (diff) |
[lifenews] Add support for video URLs (Closes #5660)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/lifenews.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/lifenews.py b/youtube_dl/extractor/lifenews.py index 081016b80..92031e843 100644 --- a/youtube_dl/extractor/lifenews.py +++ b/youtube_dl/extractor/lifenews.py @@ -14,7 +14,7 @@ from ..utils import ( class LifeNewsIE(InfoExtractor): IE_NAME = 'lifenews' IE_DESC = 'LIFE | NEWS' - _VALID_URL = r'http://lifenews\.ru/(?:mobile/)?news/(?P<id>\d+)' + _VALID_URL = r'http://lifenews\.ru/(?:mobile/)?(?P<section>news|video)/(?P<id>\d+)' _TESTS = [{ 'url': 'http://lifenews.ru/news/126342', @@ -55,12 +55,15 @@ class LifeNewsIE(InfoExtractor): def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') + section = mobj.group('section') - webpage = self._download_webpage('http://lifenews.ru/news/%s' % video_id, video_id, 'Downloading page') + webpage = self._download_webpage( + 'http://lifenews.ru/%s/%s' % (section, video_id), + video_id, 'Downloading page') videos = re.findall(r'<video.*?poster="(?P<poster>[^"]+)".*?src="(?P<video>[^"]+)".*?></video>', webpage) iframe_link = self._html_search_regex( - '<iframe[^>]+src="([^"]+)', webpage, 'iframe link', default=None) + '<iframe[^>]+src=["\']([^"\']+)["\']', webpage, 'iframe link', default=None) if not videos and not iframe_link: raise ExtractorError('No media links available for %s' % video_id) |