2 from __future__ import unicode_literals
6 from .common import InfoExtractor
15 class NetzkinoIE(InfoExtractor):
16 _VALID_URL = r'https?://(?:www\.)?netzkino\.de/\#!/(?P<category>[^/]+)/(?P<id>[^/]+)'
19 'url': 'http://www.netzkino.de/#!/scifikino/rakete-zum-mond',
20 'md5': '92a3f8b76f8d7220acce5377ea5d4873',
22 'id': 'rakete-zum-mond',
24 'title': 'Rakete zum Mond (Endstation Mond, Destination Moon)',
25 'comments': 'mincount:3',
26 'description': 'md5:1eddeacc7e62d5a25a2d1a7290c64a28',
27 'upload_date': '20120813',
28 'thumbnail': 're:https?://.*\.jpg$',
29 'timestamp': 1344858571,
33 'skip_download': 'Download only works from Germany',
37 def _real_extract(self, url):
38 mobj = re.match(self._VALID_URL, url)
39 category_id = mobj.group('category')
40 video_id = mobj.group('id')
42 api_url = 'http://api.netzkino.de.simplecache.net/capi-2.0a/categories/%s.json?d=www' % category_id
43 api_info = self._download_json(api_url, video_id)
45 p for p in api_info['posts'] if p['slug'] == video_id)
46 custom_fields = info['custom_fields']
48 production_js = self._download_webpage(
49 'http://www.netzkino.de/beta/dist/production.min.js', video_id,
50 note='Downloading player code')
51 avo_js = self._search_regex(
52 r'window\.avoCore\s*=.*?urlTemplate:\s*(\{.*?"\})',
53 production_js, 'URL templates')
54 templates = self._parse_json(
55 avo_js, video_id, transform_source=js_to_json)
58 'hds': '.mp4/manifest.f4m',
59 'hls': '.mp4/master.m3u8',
62 film_fn = custom_fields['Streaming'][0]
66 'url': tpl.replace('{}', film_fn) + suffix[key],
67 } for key, tpl in templates.items()]
68 self._sort_formats(formats)
71 'timestamp': parse_iso8601(c.get('date'), delimiter=' '),
75 'parent': 'root' if c.get('parent', 0) == 0 else c['parent'],
76 } for c in info.get('comments', [])]
82 'title': info['title'],
83 'age_limit': int_or_none(custom_fields.get('FSK')[0]),
84 'timestamp': parse_iso8601(info.get('date'), delimiter=' '),
85 'description': clean_html(info.get('content')),
86 'thumbnail': info.get('thumbnail'),
87 'playlist_title': api_info.get('title'),
88 'playlist_id': category_id,