X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fcanvas.py;h=ef0691dcd8aee5dc7ffce16791b2db1fb61adb9a;hb=1e19ff2984f4887bbe79d9306841c3e2a96b2f37;hp=a37720e9853875b50ca0d4aaddfcc6c0ff88026f;hpb=be2d40a58a4f89682859bb23789b75330ee756a6;p=youtube-dl diff --git a/youtube_dl/extractor/canvas.py b/youtube_dl/extractor/canvas.py index a37720e98..ef0691dcd 100644 --- a/youtube_dl/extractor/canvas.py +++ b/youtube_dl/extractor/canvas.py @@ -1,80 +1,116 @@ -# coding: utf-8 from __future__ import unicode_literals -import os -import urlparse +import re -from youtube_dl import utils from .common import InfoExtractor +from ..utils import float_or_none class CanvasIE(InfoExtractor): - _VALID_URL = r'(?:https?://)?(?:www\.)?canvas\.be/video/(?P.+)' - _TEST = { + _VALID_URL = r'https?://(?:www\.)?(?Pcanvas|een)\.be/(?:[^/]+/)*(?P[^/?#&]+)' + _TESTS = [{ 'url': 'http://www.canvas.be/video/de-afspraak/najaar-2015/de-afspraak-veilt-voor-de-warmste-week', 'md5': 'ea838375a547ac787d4064d8c7860a6c', 'info_dict': { - 'id': 'de-afspraak/najaar-2015/de-afspraak-veilt-voor-de-warmste-week', + 'id': 'mz-ast-5e5f90b6-2d72-4c40-82c2-e134f884e93e', + 'display_id': 'de-afspraak-veilt-voor-de-warmste-week', + 'ext': 'mp4', 'title': 'De afspraak veilt voor de Warmste Week', + 'description': 'md5:24cb860c320dc2be7358e0e5aa317ba6', + 'thumbnail': 're:^https?://.*\.jpg$', + 'duration': 49.02, + } + }, { + # with subtitles + 'url': 'http://www.canvas.be/video/panorama/2016/pieter-0167', + 'info_dict': { + 'id': 'mz-ast-5240ff21-2d30-4101-bba6-92b5ec67c625', + 'display_id': 'pieter-0167', + 'ext': 'mp4', + 'title': 'Pieter 0167', + 'description': 'md5:943cd30f48a5d29ba02c3a104dc4ec4e', + 'thumbnail': 're:^https?://.*\.jpg$', + 'duration': 2553.08, + 'subtitles': { + 'nl': [{ + 'ext': 'vtt', + }], + }, + }, + 'params': { + 'skip_download': True, + } + }, { + 'url': 'https://www.een.be/sorry-voor-alles/herbekijk-sorry-voor-alles', + 'info_dict': { + 'id': 'mz-ast-11a587f8-b921-4266-82e2-0bce3e80d07f', + 'display_id': 'herbekijk-sorry-voor-alles', 'ext': 'mp4', - 'duration': 49, + 'title': 'Herbekijk Sorry voor alles', + 'description': 'md5:8bb2805df8164e5eb95d6a7a29dc0dd3', + 'thumbnail': 're:^https?://.*\.jpg$', + 'duration': 3788.06, + }, + 'params': { + 'skip_download': True, } - } + }, { + 'url': 'https://www.canvas.be/check-point/najaar-2016/de-politie-uw-vriend', + 'only_matching': True, + }] def _real_extract(self, url): - video_id = self._match_id(url) + mobj = re.match(self._VALID_URL, url) + site_id, display_id = mobj.group('site_id'), mobj.group('id') - webpage = self._download_webpage(url, video_id) + webpage = self._download_webpage(url, display_id) - title = self._search_regex( - r'

(.+?)

', webpage, - 'title') - data_video = self._html_search_regex( - r'data-video=(["\'])(?P.+?)\1', webpage, 'data-video', group='id') - json_url = 'https://mediazone.vrt.be/api/v1/canvas/assets/' + data_video - data = self._download_json(json_url, video_id) + title = (self._search_regex( + r']+class="video__body__header__title"[^>]*>(.+?)', + webpage, 'title', default=None) or self._og_search_title( + webpage)).strip() + + video_id = self._html_search_regex( + r'data-video=(["\'])(?P.+?)\1', webpage, 'video id', group='id') + + data = self._download_json( + 'https://mediazone.vrt.be/api/v1/%s/assets/%s' + % (site_id, video_id), display_id) formats = [] for target in data['targetUrls']: - if 'type' and 'url' in target: - extension = utils.determine_ext(target['url']) - if target['type'] == 'PROGRESSIVE_DOWNLOAD': - formats.append({ - 'format_id': extension, - 'url': target['url'], - 'protocol': 'http', - }) - elif target['type'] == 'HLS': - formats.extend(self._extract_m3u8_formats( - target['url'], video_id, entry_protocol='m3u8_native', - ext='mp4', - preference=0, - fatal=False, - m3u8_id='hls')) - elif target['type'] == 'HDS': - formats.append({ - 'format_id': extension, - 'url': target['url'], - 'protocol': 'HDS', - }) - elif target['type'] == 'RTMP': - formats.append({ - 'format_id': extension, - 'url': target['url'], - 'protocol': 'rtmp', - }) - elif target['type'] == 'RTSP': - formats.append({ - 'format_id': extension, - 'url': target['url'], - 'protocol': 'rtsp', - }) - + format_url, format_type = target.get('url'), target.get('type') + if not format_url or not format_type: + continue + if format_type == 'HLS': + formats.extend(self._extract_m3u8_formats( + format_url, display_id, entry_protocol='m3u8_native', + ext='mp4', preference=0, fatal=False, m3u8_id=format_type)) + elif format_type == 'HDS': + formats.extend(self._extract_f4m_formats( + format_url, display_id, f4m_id=format_type, fatal=False)) + else: + formats.append({ + 'format_id': format_type, + 'url': format_url, + }) self._sort_formats(formats) - duration = utils.int_or_none(data.get('duration')) / 1000 + + subtitles = {} + subtitle_urls = data.get('subtitleUrls') + if isinstance(subtitle_urls, list): + for subtitle in subtitle_urls: + subtitle_url = subtitle.get('url') + if subtitle_url and subtitle.get('type') == 'CLOSED': + subtitles.setdefault('nl', []).append({'url': subtitle_url}) + return { 'id': video_id, + 'display_id': display_id, 'title': title, + 'description': self._og_search_description(webpage), 'formats': formats, - 'duration': duration, + 'duration': float_or_none(data.get('duration'), 1000), + 'thumbnail': data.get('posterImageUrl'), + 'subtitles': subtitles, }