1 from .common
import InfoExtractor
10 class NetzkinoIE(InfoExtractor
):
12 _VALID_URL
= r
'https?://(?:www\.)?netzkino\.de/\#!/[^/]+/(?P<id>[^/]+)'
15 'url': 'https://www.netzkino.de/#!/scifikino/rakete-zum-mond',
16 'md5': '92a3f8b76f8d7220acce5377ea5d4873',
18 'id': 'rakete-zum-mond',
20 'title': 'Rakete zum Mond \u2013 Jules Verne',
21 'description': 'md5:f0a8024479618ddbfa450ff48ffa6c60',
22 'upload_date': '20120813',
23 'thumbnail': r
're:https?://.*\.jpg$',
24 'timestamp': 1344858571,
28 'skip_download': 'Download only works from Germany',
31 'url': 'https://www.netzkino.de/#!/filme/dr-jekyll-mrs-hyde-2',
32 'md5': 'c7728b2dadd04ff6727814847a51ef03',
34 'id': 'dr-jekyll-mrs-hyde-2',
36 'title': 'Dr. Jekyll & Mrs. Hyde 2',
37 'description': 'md5:c2e9626ebd02de0a794b95407045d186',
38 'upload_date': '20190130',
39 'thumbnail': r
're:https?://.*\.jpg$',
40 'timestamp': 1548849437,
44 'skip_download': 'Download only works from Germany',
48 def _real_extract(self
, url
):
49 mobj
= self
._match
_valid
_url
(url
)
50 video_id
= mobj
.group('id')
52 api_url
= f
'https://api.netzkino.de.simplecache.net/capi-2.0a/movies/{video_id}.json?d=www'
53 info
= self
._download
_json
(api_url
, video_id
)
54 custom_fields
= info
['custom_fields']
56 production_js
= self
._download
_webpage
(
57 'http://www.netzkino.de/beta/dist/production.min.js', video_id
,
58 note
='Downloading player code')
59 avo_js
= self
._search
_regex
(
60 r
'var urlTemplate=(\{.*?"\})',
61 production_js
, 'URL templates')
62 templates
= self
._parse
_json
(
63 avo_js
, video_id
, transform_source
=js_to_json
)
66 'hds': '.mp4/manifest.f4m',
67 'hls': '.mp4/master.m3u8',
70 film_fn
= custom_fields
['Streaming'][0]
74 'url': tpl
.replace('{}', film_fn
) + suffix
[key
],
75 } for key
, tpl
in templates
.items()]
80 'title': info
['title'],
81 'age_limit': int_or_none(custom_fields
.get('FSK')[0]),
82 'timestamp': parse_iso8601(info
.get('date'), delimiter
=' '),
83 'description': clean_html(info
.get('content')),
84 'thumbnail': info
.get('thumbnail'),