1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
5 from random import random
8 from .common import InfoExtractor
9 from ..utils import compat_urllib_request
12 class IPrimaIE(InfoExtractor):
13 _VALID_URL = r'https?://play\.iprima\.cz/[^?#]+/(?P<id>[^?#]+)'
16 'url': 'http://play.iprima.cz/particka/particka-92',
20 'title': 'Partička (92)',
21 'description': 'md5:3740fda51464da35a2d4d0670b8e4fd6',
22 'thumbnail': 'http://play.iprima.cz/sites/default/files/image_crops/image_620x349/3/491483_particka-92_image_620x349.jpg',
25 'skip_download': True, # requires rtmpdump
28 'url': 'http://play.iprima.cz/particka/tchibo-particka-jarni-moda',
32 'title': 'Tchibo Partička - Jarní móda',
33 'description': 'md5:589f8f59f414220621ff8882eb3ce7be',
34 'thumbnail': 're:^http:.*\.jpg$',
37 'skip_download': True, # requires rtmpdump
41 def _real_extract(self, url):
42 mobj = re.match(self._VALID_URL, url)
43 video_id = mobj.group('id')
45 webpage = self._download_webpage(url, video_id)
48 'http://embed.livebox.cz/iprimaplay/player-embed-v2.js?__tok%s__=%s' %
49 (floor(random()*1073741824), floor(random()*1073741824))
52 req = compat_urllib_request.Request(player_url)
53 req.add_header('Referer', url)
54 playerpage = self._download_webpage(req, video_id)
56 base_url = ''.join(re.findall(r"embed\['stream'\] = '(.+?)'.+'(\?auth=)'.+'(.+?)';", playerpage)[1])
58 zoneGEO = self._html_search_regex(r'"zoneGEO":(.+?),', webpage, 'zoneGEO')
60 base_url = base_url.replace('token', 'token_' + zoneGEO)
63 for format_id in ['lq', 'hq', 'hd']:
64 filename = self._html_search_regex(
65 r'"%s_id":(.+?),' % format_id, webpage, 'filename')
67 if filename == 'null':
70 real_id = self._search_regex(
71 r'Prima-(?:[0-9]{10}|WEB)-([0-9]+)[-_]',
72 filename, 'real video id')
76 elif format_id == 'hq':
78 elif format_id == 'hd':
80 filename = 'hq/' + filename
83 'format_id': format_id,
86 'play_path': 'mp4:' + filename.replace('"', '')[:-4],
91 self._sort_formats(formats)
95 'title': self._og_search_title(webpage),
96 'thumbnail': self._og_search_thumbnail(webpage),
98 'description': self._og_search_description(webpage),