]> jfr.im git - yt-dlp.git/blame - youtube_dlc/extractor/iprima.py
[skip travis] renaming
[yt-dlp.git] / youtube_dlc / extractor / iprima.py
CommitLineData
369e7e3f 1# coding: utf-8
7881a644 2from __future__ import unicode_literals
3
4import re
f406c787 5import time
7881a644 6
7from .common import InfoExtractor
1cc79574 8from ..utils import (
369e7e3f
S
9 determine_ext,
10 js_to_json,
82642235 11)
7881a644 12
13
14class IPrimaIE(InfoExtractor):
90046d77 15 _VALID_URL = r'https?://(?:[^/]+)\.iprima\.cz/(?:[^/]+/)*(?P<id>[^/?#&]+)'
da42ff06 16 _GEO_BYPASS = False
7881a644 17
18 _TESTS = [{
30fa5c60 19 'url': 'https://prima.iprima.cz/particka/92-epizoda',
7881a644 20 'info_dict': {
30fa5c60 21 'id': 'p51388',
f406c787 22 'ext': 'mp4',
30fa5c60
S
23 'title': 'Partička (92)',
24 'description': 'md5:859d53beae4609e6dd7796413f1b6cac',
25 },
26 'params': {
27 'skip_download': True, # m3u8 download
28 },
29 }, {
30 'url': 'https://cnn.iprima.cz/videa/70-epizoda',
31 'info_dict': {
32 'id': 'p681554',
33 'ext': 'mp4',
34 'title': 'HLAVNÍ ZPRÁVY 3.5.2020',
7881a644 35 },
36 'params': {
f406c787 37 'skip_download': True, # m3u8 download
7881a644 38 },
973f2532 39 }, {
f406c787 40 'url': 'http://play.iprima.cz/particka/particka-92',
bc03e585 41 'only_matching': True,
da42ff06
S
42 }, {
43 # geo restricted
44 'url': 'http://play.iprima.cz/closer-nove-pripady/closer-nove-pripady-iv-1',
45 'only_matching': True,
a2637a2d
S
46 }, {
47 # iframe api.play-backend.iprima.cz
48 'url': 'https://prima.iprima.cz/my-little-pony/mapa-znameni-2-2',
49 'only_matching': True,
50 }, {
51 # iframe prima.iprima.cz
52 'url': 'https://prima.iprima.cz/porady/jak-se-stavi-sen/rodina-rathousova-praha',
53 'only_matching': True,
9235b509
S
54 }, {
55 'url': 'http://www.iprima.cz/filmy/desne-rande',
56 'only_matching': True,
90046d77 57 }, {
58 'url': 'https://zoom.iprima.cz/10-nejvetsich-tajemstvi-zahad/posvatna-mista-a-stavby',
59 'only_matching': True,
60 }, {
61 'url': 'https://krimi.iprima.cz/mraz-0/sebevrazdy',
62 'only_matching': True,
63 }, {
64 'url': 'https://cool.iprima.cz/derava-silnice-nevadi',
65 'only_matching': True,
66 }, {
67 'url': 'https://love.iprima.cz/laska-az-za-hrob/slib-dany-bratrovi',
68 'only_matching': True,
69 }, {
70 'url': 'https://autosalon.iprima.cz/motorsport/7-epizoda-1',
71 'only_matching': True,
973f2532 72 }]
7881a644 73
74 def _real_extract(self, url):
369e7e3f 75 video_id = self._match_id(url)
7881a644 76
09322ccc
S
77 self._set_cookie('play.iprima.cz', 'ott_adult_confirmed', '1')
78
7881a644 79 webpage = self._download_webpage(url, video_id)
80
30fa5c60
S
81 title = self._og_search_title(
82 webpage, default=None) or self._search_regex(
83 r'<h1>([^<]+)', webpage, 'title')
84
a2637a2d
S
85 video_id = self._search_regex(
86 (r'<iframe[^>]+\bsrc=["\'](?:https?:)?//(?:api\.play-backend\.iprima\.cz/prehravac/embedded|prima\.iprima\.cz/[^/]+/[^/]+)\?.*?\bid=(p\d+)',
30fa5c60
S
87 r'data-product="([^"]+)">',
88 r'id=["\']player-(p\d+)"',
89 r'playerId\s*:\s*["\']player-(p\d+)'),
a2637a2d 90 webpage, 'real id')
82642235 91
82f66218
S
92 playerpage = self._download_webpage(
93 'http://play.iprima.cz/prehravac/init',
94 video_id, note='Downloading player', query={
95 '_infuse': 1,
96 '_ts': round(time.time()),
97 'productId': video_id,
98 }, headers={'Referer': url})
7881a644 99
369e7e3f 100 formats = []
7881a644 101
369e7e3f
S
102 def extract_formats(format_url, format_key=None, lang=None):
103 ext = determine_ext(format_url)
104 new_formats = []
105 if format_key == 'hls' or ext == 'm3u8':
106 new_formats = self._extract_m3u8_formats(
107 format_url, video_id, 'mp4', entry_protocol='m3u8_native',
108 m3u8_id='hls', fatal=False)
109 elif format_key == 'dash' or ext == 'mpd':
110 return
111 new_formats = self._extract_mpd_formats(
112 format_url, video_id, mpd_id='dash', fatal=False)
113 if lang:
114 for f in new_formats:
115 if not f.get('language'):
116 f['language'] = lang
117 formats.extend(new_formats)
118
119 options = self._parse_json(
120 self._search_regex(
0bbcc8a1 121 r'(?s)(?:TDIPlayerOptions|playerOptions)\s*=\s*({.+?});\s*\]\]',
369e7e3f
S
122 playerpage, 'player options', default='{}'),
123 video_id, transform_source=js_to_json, fatal=False)
124 if options:
125 for key, tracks in options.get('tracks', {}).items():
126 if not isinstance(tracks, list):
127 continue
128 for track in tracks:
129 src = track.get('src')
130 if src:
131 extract_formats(src, key.lower(), track.get('lang'))
132
133 if not formats:
134 for _, src in re.findall(r'src["\']\s*:\s*(["\'])(.+?)\1', playerpage):
135 extract_formats(src)
91264ce5 136
3c6b3bf2 137 if not formats and '>GEO_IP_NOT_ALLOWED<' in playerpage:
da42ff06 138 self.raise_geo_restricted(countries=['CZ'])
3c6b3bf2 139
91264ce5 140 self._sort_formats(formats)
7881a644 141
142 return {
f406c787 143 'id': video_id,
30fa5c60
S
144 'title': title,
145 'thumbnail': self._og_search_thumbnail(webpage, default=None),
7881a644 146 'formats': formats,
30fa5c60 147 'description': self._og_search_description(webpage, default=None),
91264ce5 148 }