2 from __future__ import unicode_literals
4 from .common import InfoExtractor
17 class PlaytvakIE(InfoExtractor):
18 IE_DESC = 'Playtvak.cz, iDNES.cz and Lidovky.cz'
19 _VALID_URL = r'https?://(?:.+?\.)?(?:playtvak|idnes|lidovky|metro)\.cz/.*\?(?:c|idvideo)=(?P<id>[^&]+)'
21 'url': 'http://www.playtvak.cz/vyzente-vosy-a-srsne-ze-zahrady-dn5-/hodinovy-manzel.aspx?c=A150730_150323_hodinovy-manzel_kuko',
22 'md5': '4525ae312c324b4be2f4603cc78ceb4a',
24 'id': 'A150730_150323_hodinovy-manzel_kuko',
26 'title': 'Vyžeňte vosy a sršně ze zahrady',
27 'description': 'md5:f93d398691044d303bc4a3de62f3e976',
28 'thumbnail': 're:(?i)^https?://.*\.(?:jpg|png)$',
30 'timestamp': 1438732860,
31 'upload_date': '20150805',
34 }, { # live video test
35 'url': 'http://slowtv.playtvak.cz/planespotting-0pr-/planespotting.aspx?c=A150624_164934_planespotting_cat',
37 'id': 'A150624_164934_planespotting_cat',
39 'title': 're:^Přímý přenos iDNES.cz [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
40 'description': 'Sledujte provoz na ranveji Letiště Václava Havla v Praze',
41 'thumbnail': 're:(?i)^https?://.*\.(?:jpg|png)$',
45 'skip_download': True, # requires rtmpdump
48 'url': 'http://zpravy.idnes.cz/pes-zavreny-v-aute-rozbijeni-okynek-v-aute-fj5-/domaci.aspx?c=A150809_104116_domaci_pku',
49 'md5': '819832ba33cd7016e58a6658577fe289',
51 'id': 'A150809_104116_domaci_pku',
53 'title': 'Zavřeli jsme mraženou pizzu do auta. Upekla se',
54 'description': 'md5:01e73f02329e2e5760bd5eed4d42e3c2',
55 'thumbnail': 're:(?i)^https?://.*\.(?:jpg|png)$',
57 'timestamp': 1438969140,
58 'upload_date': '20150807',
62 'url': 'http://www.lidovky.cz/dalsi-demonstrace-v-praze-o-migraci-duq-/video.aspx?c=A150808_214044_ln-video_ELE',
63 'md5': 'c7209ac4ba9d234d4ad5bab7485bcee8',
65 'id': 'A150808_214044_ln-video_ELE',
67 'title': 'Táhni! Demonstrace proti imigrantům budila emoce',
68 'description': 'md5:97c81d589a9491fbfa323c9fa3cca72c',
69 'thumbnail': 're:(?i)^https?://.*\.(?:jpg|png)$',
70 'timestamp': 1439052180,
71 'upload_date': '20150808',
75 'url': 'http://www.metro.cz/video-pod-billboardem-se-na-vltavske-roztocil-kolotoc-deti-vozil-jen-par-hodin-1hx-/metro-extra.aspx?c=A141111_173251_metro-extra_row',
76 'md5': '84fc1deedcac37b7d4a6ccae7c716668',
78 'id': 'A141111_173251_metro-extra_row',
80 'title': 'Recesisté udělali z billboardu kolotoč',
81 'description': 'md5:7369926049588c3989a66c9c1a043c4c',
82 'thumbnail': 're:(?i)^https?://.*\.(?:jpg|png)$',
83 'timestamp': 1415725500,
84 'upload_date': '20141111',
88 'url': 'http://www.playtvak.cz/embed.aspx?idvideo=V150729_141549_play-porad_kuko',
89 'only_matching': True,
92 def _real_extract(self, url):
93 video_id = self._match_id(url)
95 webpage = self._download_webpage(url, video_id)
97 info_url = self._html_search_regex(
98 r'Misc\.videoFLV\(\s*{\s*data\s*:\s*"([^"]+)"', webpage, 'info url')
100 parsed_url = compat_urlparse.urlparse(info_url)
102 qs = compat_urlparse.parse_qs(parsed_url.query)
108 info_url = compat_urlparse.urlunparse(
109 parsed_url._replace(query=compat_urllib_parse.urlencode(qs, True)))
111 json_info = self._download_json(
113 transform_source=lambda s: s[s.index('{'):s.rindex('}') + 1])
116 for i in json_info['items']:
117 if i.get('type') == 'video' or i.get('type') == 'stream':
121 raise ExtractorError('No suitable stream found')
123 quality = qualities(('low', 'middle', 'high'))
126 for fmt in item['video']:
127 video_url = fmt.get('file')
131 format_ = fmt['format']
132 format_id = '%s_%s' % (format_, fmt['quality'])
135 if format_ in ('mp4', 'webm'):
137 elif format_ == 'rtmp':
139 elif format_ == 'apple':
141 # Some streams have mp3 audio which does not play
142 # well with ffmpeg filter aac_adtstoasc
144 elif format_ == 'adobe': # f4m manifest fails with 404 in 80% of requests
146 else: # Other formats not supported yet
152 'format_id': format_id,
153 'quality': quality(fmt.get('quality')),
154 'preference': preference,
156 self._sort_formats(formats)
158 title = item['title']
159 is_live = item['type'] == 'stream'
161 title = self._live_title(title)
162 description = self._og_search_description(webpage, default=None) or self._html_search_meta(
163 'description', webpage, 'description')
167 duration = int_or_none(item.get('length'))
168 timestamp = item.get('published')
170 timestamp = parse_iso8601(timestamp[:-5])
175 'description': description,
176 'thumbnail': item.get('image'),
177 'duration': duration,
178 'timestamp': timestamp,