X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fnowness.py;fp=youtube_dl%2Fextractor%2Fnowness.py;h=b1bcb7e54cf3f01989eb17c51160acce680eed2c;hb=066f6a06305c715c94054ea00734e9259d5a2257;hp=0000000000000000000000000000000000000000;hpb=12ed57418c9c46b483ccd326a13724d91c2b911d;p=youtube-dl diff --git a/youtube_dl/extractor/nowness.py b/youtube_dl/extractor/nowness.py new file mode 100644 index 000000000..b1bcb7e54 --- /dev/null +++ b/youtube_dl/extractor/nowness.py @@ -0,0 +1,49 @@ +from __future__ import unicode_literals + +import re + +from .brightcove import BrightcoveIE +from .common import InfoExtractor +from ..utils import ( + ExtractorError, +) + + +class NownessIE(InfoExtractor): + _VALID_URL = r'https?://(?:www\.)?nowness\.com/[^?#]*?/(?P[0-9]+)/(?P[^/]+?)(?:$|[?#])' + + _TEST = { + 'url': 'http://www.nowness.com/day/2013/6/27/3131/candor--the-art-of-gesticulation', + 'file': '2520295746001.mp4', + 'md5': '0ece2f70a7bd252c7b00f3070182d418', + 'info_dict': { + 'description': 'Candor: The Art of Gesticulation', + 'uploader': 'Nowness', + 'title': 'Candor: The Art of Gesticulation', + } + } + + def _real_extract(self, url): + mobj = re.match(self._VALID_URL, url) + video_id = mobj.group('slug') + + webpage = self._download_webpage(url, video_id) + player_url = self._search_regex( + r'"([^"]+/content/issue-[0-9.]+.js)"', webpage, 'player URL') + real_id = self._search_regex( + r'\sdata-videoId="([0-9]+)"', webpage, 'internal video ID') + + player_code = self._download_webpage( + player_url, video_id, + note='Downloading player JavaScript', + errnote='Player download failed') + player_code = player_code.replace("'+d+'", real_id) + + bc_url = BrightcoveIE._extract_brightcove_url(player_code) + if bc_url is None: + raise ExtractorError('Could not find player definition') + return { + '_type': 'url', + 'url': bc_url, + 'ie_key': 'Brightcove', + }