]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/bilibili.py
2 from __future__
import unicode_literals
7 from .common
import InfoExtractor
15 class BiliBiliIE(InfoExtractor
):
16 _VALID_URL
= r
'http://www\.bilibili\.(?:tv|com)/video/av(?P<id>[0-9]+)/'
19 'url': 'http://www.bilibili.tv/video/av1074402/',
20 'md5': '2c301e4dab317596e837c3e7633e7d86',
22 'id': '1074402_part1',
26 'upload_date': '20140420',
27 'thumbnail': 're:^https?://.+\.jpg',
30 'url': 'http://www.bilibili.com/video/av1041170/',
33 'title': '【BD1080P】刀语【诸神&异域】',
38 def _real_extract(self
, url
):
39 video_id
= self
._match
_id
(url
)
40 webpage
= self
._download
_webpage
(url
, video_id
)
42 if self
._search
_regex
(r
'(此视频不存在或被删除)', webpage
, 'error message', default
=None):
43 raise ExtractorError('The video does not exist or was deleted', expected
=True)
44 video_code
= self
._search
_regex
(
45 r
'(?s)<div itemprop="video".*?>(.*?)</div>', webpage
, 'video code')
47 title
= self
._html
_search
_meta
(
48 'media:title', video_code
, 'title', fatal
=True)
49 duration_str
= self
._html
_search
_meta
(
50 'duration', video_code
, 'duration')
51 if duration_str
is None:
54 duration_mobj
= re
.match(
55 r
'^T(?:(?P<hours>[0-9]+)H)?(?P<minutes>[0-9]+)M(?P<seconds>[0-9]+)S$',
58 int_or_none(duration_mobj
.group('hours'), default
=0) * 3600 +
59 int(duration_mobj
.group('minutes')) * 60 +
60 int(duration_mobj
.group('seconds')))
61 upload_date
= unified_strdate(self
._html
_search
_meta
(
62 'uploadDate', video_code
, fatal
=False))
63 thumbnail
= self
._html
_search
_meta
(
64 'thumbnailUrl', video_code
, 'thumbnail', fatal
=False)
66 cid
= self
._search
_regex
(r
'cid=(\d+)', webpage
, 'cid')
70 lq_doc
= self
._download
_xml
(
71 'http://interface.bilibili.com/v_cdn_play?appkey=1&cid=%s' % cid
,
73 note
='Downloading LQ video info'
75 lq_durls
= lq_doc
.findall('./durl')
77 hq_doc
= self
._download
_xml
(
78 'http://interface.bilibili.com/playurl?appkey=1&cid=%s' % cid
,
80 note
='Downloading HQ video info',
83 hq_durls
= hq_doc
.findall('./durl') if hq_doc
is not False else itertools
.repeat(None)
85 assert len(lq_durls
) == len(hq_durls
)
88 for lq_durl
, hq_durl
in zip(lq_durls
, hq_durls
):
92 'url': lq_durl
.find('./url').text
,
93 'filesize': int_or_none(
94 lq_durl
.find('./size'), get_attr
='text'),
101 'url': hq_durl
.find('./url').text
,
102 'filesize': int_or_none(
103 hq_durl
.find('./size'), get_attr
='text'),
105 self
._sort
_formats
(formats
)
108 'id': '%s_part%d' % (video_id
, i
),
111 'duration': duration
,
112 'upload_date': upload_date
,
113 'thumbnail': thumbnail
,
119 '_type': 'multi_video',