X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fengadget.py;h=e5e57d48518d3dd3999dad650d0c32406079ce33;hb=9558dcec9c7806c811f4fe8e7758977eaa01a702;hp=92ada81d24b4b542d93222d4d9ba5be877005629;hpb=933a5b379231414555560fb7ffe7a015eba66b9f;p=youtube-dl diff --git a/youtube_dl/extractor/engadget.py b/youtube_dl/extractor/engadget.py index 92ada81d2..e5e57d485 100644 --- a/youtube_dl/extractor/engadget.py +++ b/youtube_dl/extractor/engadget.py @@ -1,22 +1,13 @@ from __future__ import unicode_literals -import re - from .common import InfoExtractor -from .fivemin import FiveMinIE -from ..utils import ( - url_basename, -) class EngadgetIE(InfoExtractor): - _VALID_URL = r'''(?x)https?://www.engadget.com/ - (?:video/5min/(?P\d+)| - [\d/]+/.*?) - ''' + _VALID_URL = r'https?://www.engadget.com/video/(?P\d+)' _TEST = { - 'url': 'http://www.engadget.com/video/5min/518153925/', + 'url': 'http://www.engadget.com/video/518153925/', 'md5': 'c6820d4828a5064447a4d9fc73f312c9', 'info_dict': { 'id': '518153925', @@ -27,17 +18,5 @@ class EngadgetIE(InfoExtractor): } def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') - - if video_id is not None: - return FiveMinIE._build_result(video_id) - else: - title = url_basename(url) - webpage = self._download_webpage(url, title) - ids = re.findall(r']+?playList=(\d+)', webpage) - return { - '_type': 'playlist', - 'title': title, - 'entries': [FiveMinIE._build_result(id) for id in ids] - } + video_id = self._match_id(url) + return self.url_result('5min:%s' % video_id)