2 from __future__ import unicode_literals
6 from .common import InfoExtractor
21 class OnetBaseIE(InfoExtractor):
22 def _search_mvp_id(self, webpage):
23 return self._search_regex(
24 r'id=(["\'])mvp:(?P<id>.+?)\1', webpage, 'mvp id', group='id')
26 def _extract_from_id(self, video_id, webpage):
27 response = self._download_json(
28 'http://qi.ckm.onetapi.pl/', video_id,
31 'body[jsonrpc]': '2.0',
32 'body[method]': 'get_asset_detail',
33 'body[params][ID_Publikacji]': video_id,
34 'body[params][Service]': 'www.onet.pl',
35 'content-type': 'application/jsonp',
36 'x-onet-app': 'player.front.onetapi.pl',
39 error = response.get('error')
42 '%s said: %s' % (self.IE_NAME, error['message']), expected=True)
44 video = response['result'].get('0')
47 for _, formats_dict in video['formats'].items():
48 if not isinstance(formats_dict, dict):
50 for format_id, format_list in formats_dict.items():
51 if not isinstance(format_list, list):
54 video_url = f.get('url')
57 ext = determine_ext(video_url)
58 if format_id == 'ism':
59 # TODO: Support Microsoft Smooth Streaming
62 formats.extend(self._extract_mpd_formats(
63 video_url, video_id, mpd_id='dash', fatal=False))
67 'format_id': format_id,
68 'height': int_or_none(f.get('vertical_resolution')),
69 'width': int_or_none(f.get('horizontal_resolution')),
70 'abr': float_or_none(f.get('audio_bitrate')),
71 'vbr': float_or_none(f.get('video_bitrate')),
73 self._sort_formats(formats)
75 meta = video.get('meta', {})
77 title = self._og_search_title(webpage, default=None) or meta['title']
78 description = self._og_search_description(webpage, default=None) or meta.get('description')
79 duration = meta.get('length') or meta.get('lenght')
80 timestamp = parse_iso8601(meta.get('addDate'), ' ')
85 'description': description,
87 'timestamp': timestamp,
92 class OnetIE(OnetBaseIE):
93 _VALID_URL = r'https?://(?:www\.)?onet\.tv/[a-z]/[a-z]+/(?P<display_id>[0-9a-z-]+)/(?P<id>[0-9a-z]+)'
97 'url': 'http://onet.tv/k/openerfestival/open-er-festival-2016-najdziwniejsze-wymagania-gwiazd/qbpyqc',
98 'md5': 'e3ffbf47590032ac3f27249204173d50',
101 'display_id': 'open-er-festival-2016-najdziwniejsze-wymagania-gwiazd',
103 'title': 'Open\'er Festival 2016: najdziwniejsze wymagania gwiazd',
104 'description': 'Trzy samochody, których nigdy nie użyto, prywatne spa, hotel dekorowany czarnym suknem czy nielegalne używki. Organizatorzy koncertów i festiwali muszą stawać przed nie lada wyzwaniem zapraszając gwia...',
105 'upload_date': '20160705',
106 'timestamp': 1467721580,
110 def _real_extract(self, url):
111 mobj = re.match(self._VALID_URL, url)
112 display_id, video_id = mobj.group('display_id', 'id')
114 webpage = self._download_webpage(url, display_id)
116 mvp_id = self._search_mvp_id(webpage)
118 info_dict = self._extract_from_id(mvp_id, webpage)
121 'display_id': display_id,
127 class OnetChannelIE(OnetBaseIE):
128 _VALID_URL = r'https?://(?:www\.)?onet\.tv/[a-z]/(?P<id>[a-z]+)(?:[?#]|$)'
129 IE_NAME = 'onet.tv:channel'
132 'url': 'http://onet.tv/k/openerfestival',
134 'id': 'openerfestival',
135 'title': 'Open\'er Festival Live',
136 'description': 'Dziękujemy, że oglądaliście transmisje. Zobaczcie nasze relacje i wywiady z artystami.',
138 'playlist_mincount': 46,
141 def _real_extract(self, url):
142 channel_id = self._match_id(url)
144 webpage = self._download_webpage(url, channel_id)
146 current_clip_info = self._parse_json(self._search_regex(
147 r'var\s+currentClip\s*=\s*({[^}]+})', webpage, 'video info'), channel_id,
148 transform_source=lambda s: js_to_json(re.sub(r'\'\s*\+\s*\'', '', s)))
149 video_id = remove_start(current_clip_info['ckmId'], 'mvp:')
150 video_name = url_basename(current_clip_info['url'])
152 if self._downloader.params.get('noplaylist'):
154 'Downloading just video %s because of --no-playlist' % video_name)
155 return self._extract_from_id(video_id, webpage)
158 'Downloading channel %s - add --no-playlist to just download video %s' % (
159 channel_id, video_name))
160 matches = re.findall(
161 r'<a[^>]+href=[\'"](https?://(?:www\.)?onet\.tv/[a-z]/[a-z]+/[0-9a-z-]+/[0-9a-z]+)',
164 self.url_result(video_link, OnetIE.ie_key())
165 for video_link in matches]
167 channel_title = strip_or_none(get_element_by_class('o_channelName', webpage))
168 channel_description = strip_or_none(get_element_by_class('o_channelDesc', webpage))
169 return self.playlist_result(entries, channel_id, channel_title, channel_description)