]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/iprima.py
2 from __future__
import unicode_literals
7 from .common
import InfoExtractor
14 class IPrimaIE(InfoExtractor
):
15 _VALID_URL
= r
'https?://(?:play|prima)\.iprima\.cz/(?:.+/)?(?P<id>[^?#]+)'
19 'url': 'http://play.iprima.cz/gondici-s-r-o-33',
23 'title': 'Gondíci s. r. o. (34)',
24 'description': 'md5:16577c629d006aa91f59ca8d8e7f99bd',
27 'skip_download': True, # m3u8 download
30 'url': 'http://play.iprima.cz/particka/particka-92',
31 'only_matching': True,
34 'url': 'http://play.iprima.cz/closer-nove-pripady/closer-nove-pripady-iv-1',
35 'only_matching': True,
37 # iframe api.play-backend.iprima.cz
38 'url': 'https://prima.iprima.cz/my-little-pony/mapa-znameni-2-2',
39 'only_matching': True,
41 # iframe prima.iprima.cz
42 'url': 'https://prima.iprima.cz/porady/jak-se-stavi-sen/rodina-rathousova-praha',
43 'only_matching': True,
46 def _real_extract(self
, url
):
47 video_id
= self
._match
_id
(url
)
49 self
._set
_cookie
('play.iprima.cz', 'ott_adult_confirmed', '1')
51 webpage
= self
._download
_webpage
(url
, video_id
)
53 video_id
= self
._search
_regex
(
54 (r
'<iframe[^>]+\bsrc=["\'](?
:https?
:)?
//(?
:api\
.play
-backend\
.iprima\
.cz
/prehravac
/embedded|prima\
.iprima\
.cz
/[^
/]+/[^
/]+)\?.*?
\bid
=(p\d
+)',
55 r'data
-product
="([^"]+)">'),
58 playerpage = self._download_webpage(
59 'http://play.iprima.cz/prehravac/init',
60 video_id, note='Downloading player', query={
62 '_ts': round(time.time()),
63 'productId': video_id,
64 }, headers={'Referer': url})
68 def extract_formats(format_url, format_key=None, lang=None):
69 ext = determine_ext(format_url)
71 if format_key == 'hls' or ext == 'm3u8':
72 new_formats = self._extract_m3u8_formats(
73 format_url, video_id, 'mp4', entry_protocol='m3u8_native',
74 m3u8_id='hls', fatal=False)
75 elif format_key == 'dash' or ext == 'mpd':
77 new_formats = self._extract_mpd_formats(
78 format_url, video_id, mpd_id='dash', fatal=False)
81 if not f.get('language'):
83 formats.extend(new_formats)
85 options = self._parse_json(
87 r'(?s)(?:TDIPlayerOptions|playerOptions)\s*=\s*({.+?});\s*\]\]',
88 playerpage, 'player options', default='{}'),
89 video_id, transform_source=js_to_json, fatal=False)
91 for key, tracks in options.get('tracks', {}).items():
92 if not isinstance(tracks, list):
95 src = track.get('src')
97 extract_formats(src, key.lower(), track.get('lang'))
100 for _, src in re.findall(r'src["\']\s
*:\s
*(["\'])(.+?)\1', playerpage):
103 if not formats and '>GEO_IP_NOT_ALLOWED<' in playerpage:
104 self.raise_geo_restricted(countries=['CZ'])
106 self._sort_formats(formats)
110 'title': self._og_search_title(webpage),
111 'thumbnail': self._og_search_thumbnail(webpage),
113 'description': self._og_search_description(webpage),