|
|
@ -12,7 +12,7 @@ from ..utils import ( |
|
|
|
|
|
|
|
class AolIE(InfoExtractor): |
|
|
|
IE_NAME = 'on.aol.com' |
|
|
|
_VALID_URL = r'(?:aol-video:|https?://on\.aol\.com/(?:[^/]+/)*(?:[^/?#&]+-)?)(?P<id>[^/?#&]+)' |
|
|
|
_VALID_URL = r'(?:aol-video:|https?://(?:(?:www|on)\.)?aol\.com/(?:[^/]+/)*(?:[^/?#&]+-)?)(?P<id>[^/?#&]+)' |
|
|
|
|
|
|
|
_TESTS = [{ |
|
|
|
# video with 5min ID |
|
|
@ -33,7 +33,7 @@ class AolIE(InfoExtractor): |
|
|
|
} |
|
|
|
}, { |
|
|
|
# video with vidible ID |
|
|
|
'url': 'http://on.aol.com/video/netflix-is-raising-rates-5707d6b8e4b090497b04f706?context=PC:homepage:PL1944:1460189336183', |
|
|
|
'url': 'http://www.aol.com/video/view/netflix-is-raising-rates/5707d6b8e4b090497b04f706/', |
|
|
|
'info_dict': { |
|
|
|
'id': '5707d6b8e4b090497b04f706', |
|
|
|
'ext': 'mp4', |
|
|
@ -108,30 +108,3 @@ class AolIE(InfoExtractor): |
|
|
|
'uploader': video_data.get('videoOwner'), |
|
|
|
'formats': formats, |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
class AolFeaturesIE(InfoExtractor): |
|
|
|
IE_NAME = 'features.aol.com' |
|
|
|
_VALID_URL = r'https?://features\.aol\.com/video/(?P<id>[^/?#]+)' |
|
|
|
|
|
|
|
_TESTS = [{ |
|
|
|
'url': 'http://features.aol.com/video/behind-secret-second-careers-late-night-talk-show-hosts', |
|
|
|
'md5': '7db483bb0c09c85e241f84a34238cc75', |
|
|
|
'info_dict': { |
|
|
|
'id': '519507715', |
|
|
|
'ext': 'mp4', |
|
|
|
'title': 'What To Watch - February 17, 2016', |
|
|
|
}, |
|
|
|
'add_ie': ['FiveMin'], |
|
|
|
'params': { |
|
|
|
# encrypted m3u8 download |
|
|
|
'skip_download': True, |
|
|
|
}, |
|
|
|
}] |
|
|
|
|
|
|
|
def _real_extract(self, url): |
|
|
|
display_id = self._match_id(url) |
|
|
|
webpage = self._download_webpage(url, display_id) |
|
|
|
return self.url_result(self._search_regex( |
|
|
|
r'<script type="text/javascript" src="(https?://[^/]*?5min\.com/Scripts/PlayerSeed\.js[^"]+)"', |
|
|
|
webpage, '5min embed url'), 'FiveMin') |