]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/streamcz.py
1 # -*- coding: utf-8 -*-
2 from __future__
import unicode_literals
7 from .common
import InfoExtractor
8 from ..utils
import int_or_none
11 class StreamCZIE(InfoExtractor
):
12 _VALID_URL
= r
'https?://(?:www\.)?stream\.cz/.+/(?P<videoid>.+)'
15 'url': 'http://www.stream.cz/peklonataliri/765767-ecka-pro-deti',
16 'md5': '6d3ca61a8d0633c9c542b92fcb936b0c',
20 'title': 'Peklo na talíři: Éčka pro děti',
21 'description': 'md5:49ace0df986e95e331d0fe239d421519',
22 'thumbnail': 'http://im.stream.cz/episode/52961d7e19d423f8f06f0100',
27 def _real_extract(self
, url
):
28 mobj
= re
.match(self
._VALID
_URL
, url
)
29 video_id
= mobj
.group('videoid')
31 webpage
= self
._download
_webpage
(url
, video_id
)
33 data
= self
._html
_search
_regex
(r
'Stream\.Data\.Episode\((.+?)\);', webpage
, 'stream data')
35 jsonData
= json
.loads(data
)
38 for video
in jsonData
['instances']:
39 for video_format
in video
['instances']:
40 format_id
= video_format
['quality']
42 if format_id
== '240p':
44 elif format_id
== '360p':
46 elif format_id
== '480p':
48 elif format_id
== '720p':
52 'format_id': '%s-%s' % (video_format
['type'].split('/')[1], format_id
),
53 'url': video_format
['source'],
57 self
._sort
_formats
(formats
)
60 'id': str(jsonData
['id']),
61 'title': self
._og
_search
_title
(webpage
),
62 'thumbnail': jsonData
['episode_image_original_url'].replace('//', 'http://'),
64 'description': self
._og
_search
_description
(webpage
),
65 'duration': int_or_none(jsonData
['duration']),
66 'view_count': int_or_none(jsonData
['stats_total']),