2 from __future__ import unicode_literals
7 from .common import InfoExtractor
14 class IPrimaIE(InfoExtractor):
15 _VALID_URL = r'https?://(?:[^/]+)\.iprima\.cz/(?:[^/]+/)*(?P<id>[^/?#&]+)'
19 'url': 'https://prima.iprima.cz/particka/92-epizoda',
23 'title': 'Partička (92)',
24 'description': 'md5:859d53beae4609e6dd7796413f1b6cac',
27 'skip_download': True, # m3u8 download
30 'url': 'https://cnn.iprima.cz/videa/70-epizoda',
34 'title': 'HLAVNÍ ZPRÁVY 3.5.2020',
37 'skip_download': True, # m3u8 download
40 'url': 'http://play.iprima.cz/particka/particka-92',
41 'only_matching': True,
44 'url': 'http://play.iprima.cz/closer-nove-pripady/closer-nove-pripady-iv-1',
45 'only_matching': True,
47 # iframe api.play-backend.iprima.cz
48 'url': 'https://prima.iprima.cz/my-little-pony/mapa-znameni-2-2',
49 'only_matching': True,
51 # iframe prima.iprima.cz
52 'url': 'https://prima.iprima.cz/porady/jak-se-stavi-sen/rodina-rathousova-praha',
53 'only_matching': True,
55 'url': 'http://www.iprima.cz/filmy/desne-rande',
56 'only_matching': True,
58 'url': 'https://zoom.iprima.cz/10-nejvetsich-tajemstvi-zahad/posvatna-mista-a-stavby',
59 'only_matching': True,
61 'url': 'https://krimi.iprima.cz/mraz-0/sebevrazdy',
62 'only_matching': True,
64 'url': 'https://cool.iprima.cz/derava-silnice-nevadi',
65 'only_matching': True,
67 'url': 'https://love.iprima.cz/laska-az-za-hrob/slib-dany-bratrovi',
68 'only_matching': True,
70 'url': 'https://autosalon.iprima.cz/motorsport/7-epizoda-1',
71 'only_matching': True,
74 def _real_extract(self, url):
75 video_id = self._match_id(url)
77 self._set_cookie('play.iprima.cz', 'ott_adult_confirmed', '1')
79 webpage = self._download_webpage(url, video_id)
81 title = self._og_search_title(
82 webpage, default=None) or self._search_regex(
83 r'<h1>([^<]+)', webpage, 'title')
85 video_id = self._search_regex(
86 (r'<iframe[^>]+\bsrc=["\'](?:https?:)?//(?:api\.play-backend\.iprima\.cz/prehravac/embedded|prima\.iprima\.cz/[^/]+/[^/]+)\?.*?\bid=(p\d+)',
87 r'data-product="([^"]+)">',
88 r'id=["\']player-(p\d+)"',
89 r'playerId\s*:\s*["\']player-(p\d+)',
90 r'\bvideos\s*=\s*["\'](p\d+)'),
93 playerpage = self._download_webpage(
94 'http://play.iprima.cz/prehravac/init',
95 video_id, note='Downloading player', query={
97 '_ts': round(time.time()),
98 'productId': video_id,
99 }, headers={'Referer': url})
103 def extract_formats(format_url, format_key=None, lang=None):
104 ext = determine_ext(format_url)
106 if format_key == 'hls' or ext == 'm3u8':
107 new_formats = self._extract_m3u8_formats(
108 format_url, video_id, 'mp4', entry_protocol='m3u8_native',
109 m3u8_id='hls', fatal=False)
110 elif format_key == 'dash' or ext == 'mpd':
112 new_formats = self._extract_mpd_formats(
113 format_url, video_id, mpd_id='dash', fatal=False)
115 for f in new_formats:
116 if not f.get('language'):
118 formats.extend(new_formats)
120 options = self._parse_json(
122 r'(?s)(?:TDIPlayerOptions|playerOptions)\s*=\s*({.+?});\s*\]\]',
123 playerpage, 'player options', default='{}'),
124 video_id, transform_source=js_to_json, fatal=False)
126 for key, tracks in options.get('tracks', {}).items():
127 if not isinstance(tracks, list):
130 src = track.get('src')
132 extract_formats(src, key.lower(), track.get('lang'))
135 for _, src in re.findall(r'src["\']\s*:\s*(["\'])(.+?)\1', playerpage):
138 if not formats and '>GEO_IP_NOT_ALLOWED<' in playerpage:
139 self.raise_geo_restricted(countries=['CZ'])
141 self._sort_formats(formats)
146 'thumbnail': self._og_search_thumbnail(webpage, default=None),
148 'description': self._og_search_description(webpage, default=None),