]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/xminus.py
2 from __future__
import unicode_literals
7 from .common
import InfoExtractor
17 class XMinusIE(InfoExtractor
):
18 _VALID_URL
= r
'https?://(?:www\.)?x-minus\.org/track/(?P<id>[0-9]+)'
20 'url': 'http://x-minus.org/track/4542/%D0%BF%D0%B5%D1%81%D0%B5%D0%BD%D0%BA%D0%B0-%D1%88%D0%BE%D1%84%D0%B5%D1%80%D0%B0.html',
21 'md5': '401a15f2d2dcf6d592cb95528d72a2a8',
25 'title': 'Леонид Агутин-Песенка шофёра',
28 'filesize_approx': 5900000,
30 'description': 'md5:03238c5b663810bc79cf42ef3c03e371',
34 def _real_extract(self
, url
):
35 video_id
= self
._match
_id
(url
)
36 webpage
= self
._download
_webpage
(url
, video_id
)
38 artist
= self
._html
_search
_regex
(
39 r
'<a[^>]+href="/artist/\d+">([^<]+)</a>', webpage
, 'artist')
40 title
= artist
+ '-' + self
._html
_search
_regex
(
41 r
'<span[^>]+class="minustrack-full-title(?:\s+[^"]+)?"[^>]*>([^<]+)', webpage
, 'title')
42 duration
= parse_duration(self
._html
_search
_regex
(
43 r
'<span[^>]+class="player-duration(?:\s+[^"]+)?"[^>]*>([^<]+)',
44 webpage
, 'duration', fatal
=False))
46 r
'<div[^>]+class="dw-info(?:\s+[^"]+)?"[^>]*>(?P<tbr>\d+)\s*кбит/c\s+(?P<filesize>[0-9.]+)\s*мб</div>',
48 tbr
= filesize_approx
= None
50 filesize_approx
= float(mobj
.group('filesize')) * 1000000
51 tbr
= float(mobj
.group('tbr'))
52 view_count
= int_or_none(self
._html
_search
_regex
(
53 r
'<span><[^>]+class="icon-chart-bar".*?>(\d+)</span>',
54 webpage
, 'view count', fatal
=False))
55 description
= self
._html
_search
_regex
(
56 r
'(?s)<pre[^>]+id="lyrics-original"[^>]*>(.*?)</pre>',
57 webpage
, 'song lyrics', fatal
=False)
59 description
= re
.sub(' *\r *', '\n', description
)
61 k
= self
._search
_regex
(
62 r
'<div[^>]+id="player-bottom"[^>]+data-k="([^"]+)">', webpage
,
64 h
= time
.time() / 3600
65 a
= sum(map(int, [compat_ord(c
) for c
in k
])) + int(video_id
) + h
66 video_url
= 'http://x-minus.me/dl/minus?id=%s&tkn2=%df%d' % (video_id
, a
, h
)
72 # The extension is unknown until actual downloading
75 'filesize_approx': filesize_approx
,
77 'view_count': view_count
,
78 'description': description
,