]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/lrt.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
15 class LRTIE(InfoExtractor
):
17 _VALID_URL
= r
'https?://(?:www\.)?lrt\.lt/mediateka/irasas/(?P<id>[0-9]+)'
19 'url': 'http://www.lrt.lt/mediateka/irasas/54391/',
23 'title': 'Septynios Kauno dienos',
24 'description': 'md5:24d84534c7dc76581e59f5689462411a',
28 'skip_download': True, # HLS download
32 def _real_extract(self
, url
):
33 video_id
= self
._match
_id
(url
)
34 webpage
= self
._download
_webpage
(url
, video_id
)
36 title
= remove_end(self
._og
_search
_title
(webpage
), ' - LRT')
37 thumbnail
= self
._og
_search
_thumbnail
(webpage
)
38 description
= self
._og
_search
_description
(webpage
)
39 duration
= parse_duration(self
._search
_regex
(
40 r
"'duration':\s*'([^']+)',", webpage
,
41 'duration', fatal
=False, default
=None))
44 for js
in re
.findall(r
'(?s)config:\s*(\{.*?\})', webpage
):
45 data
= self
._parse
_json
(js
, video_id
, transform_source
=js_to_json
)
46 if 'provider' not in data
:
48 if data
['provider'] == 'rtmp':
51 'ext': determine_ext(data
['file']),
52 'url': data
['streamer'],
53 'play_path': 'mp4:%s' % data
['file'],
58 self
._extract
_m
3u8_formats
(data
['file'], video_id
, 'mp4'))
64 'thumbnail': thumbnail
,
65 'description': description
,