2 from __future__ import unicode_literals
4 from .common import InfoExtractor
11 class TelegraafIE(InfoExtractor):
12 _VALID_URL = r'https?://(?:www\.)?telegraaf\.nl/tv/(?:[^/]+/)+(?P<id>\d+)/[^/]+\.html'
14 'url': 'http://www.telegraaf.nl/tv/nieuws/binnenland/24353229/__Tikibad_ontruimd_wegens_brand__.html',
18 'title': 'Tikibad ontruimd wegens brand',
19 'description': 'md5:05ca046ff47b931f9b04855015e163a4',
20 'thumbnail': r're:^https?://.*\.jpg$',
25 'skip_download': True,
29 def _real_extract(self, url):
30 video_id = self._match_id(url)
32 webpage = self._download_webpage(url, video_id)
34 player_url = self._html_search_regex(
35 r'<iframe[^>]+src="([^"]+")', webpage, 'player URL')
36 player_page = self._download_webpage(
37 player_url, video_id, note='Download player webpage')
38 playlist_url = self._search_regex(
39 r'playlist\s*:\s*"([^"]+)"', player_page, 'playlist URL')
40 playlist_data = self._download_json(playlist_url, video_id)
42 item = playlist_data['items'][0]
44 locations = item['locations']
45 for location in locations.get('adaptive', []):
46 manifest_url = location['src']
47 ext = determine_ext(manifest_url)
49 formats.extend(self._extract_m3u8_formats(
50 manifest_url, video_id, ext='mp4', m3u8_id='hls', fatal=False))
52 formats.extend(self._extract_mpd_formats(
53 manifest_url, video_id, mpd_id='dash', fatal=False))
55 self.report_warning('Unknown adaptive format %s' % ext)
56 for location in locations.get('progressive', []):
58 'url': location['sources'][0]['src'],
59 'width': location.get('width'),
60 'height': location.get('height'),
61 'format_id': 'http-%s' % location['label'],
64 self._sort_formats(formats)
66 title = remove_end(self._og_search_title(webpage), ' - VIDEO')
67 description = self._og_search_description(webpage)
68 duration = item.get('duration')
69 thumbnail = item.get('poster')
74 'description': description,
77 'thumbnail': thumbnail,