]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/streamcz.py
1 # -*- coding: utf-8 -*-
2 from __future__
import unicode_literals
4 from .common
import InfoExtractor
10 class StreamCZIE(InfoExtractor
):
11 _VALID_URL
= r
'https?://(?:www\.)?stream\.cz/.+/(?P<id>[0-9]+)'
14 'url': 'http://www.stream.cz/peklonataliri/765767-ecka-pro-deti',
15 'md5': '6d3ca61a8d0633c9c542b92fcb936b0c',
19 'title': 'Peklo na talíři: Éčka pro děti',
20 'description': 'Taška s grónskou pomazánkou a další pekelnosti ZDE',
21 'thumbnail': 're:^http://im.stream.cz/episode/52961d7e19d423f8f06f0100',
25 'url': 'http://www.stream.cz/blanik/10002447-tri-roky-pro-mazanka',
26 'md5': 'e54a254fb8b871968fd8403255f28589',
30 'title': 'Kancelář Blaník: Tři roky pro Mazánka',
31 'description': 'md5:3862a00ba7bf0b3e44806b544032c859',
32 'thumbnail': 're:^http://im.stream.cz/episode/537f838c50c11f8d21320000',
37 def _real_extract(self
, url
):
38 video_id
= self
._match
_id
(url
)
39 data
= self
._download
_json
(
40 'http://www.stream.cz/API/episode/%s' % video_id
, video_id
)
43 for quality
, video
in enumerate(data
['video_qualities']):
44 for f
in video
['formats']:
45 typ
= f
['type'].partition('/')[2]
46 qlabel
= video
.get('quality_label')
48 'format_note': '%s-%s' % (qlabel
, typ
) if qlabel
else typ
,
49 'format_id': '%s-%s' % (typ
, f
['quality']),
51 'height': int_or_none(f
['quality'].rstrip('p')),
54 self
._sort
_formats
(formats
)
56 image
= data
.get('image')
58 thumbnail
= self
._proto
_relative
_url
(
59 image
.replace('{width}', '1240').replace('{height}', '697'),
65 stream
= data
.get('_embedded', {}).get('stream:show', {}).get('name')
67 title
= '%s: %s' % (stream
, data
['name'])
74 'thumbnail': thumbnail
,
76 'description': data
.get('web_site_text'),
77 'duration': int_or_none(data
.get('duration')),
78 'view_count': int_or_none(data
.get('views')),