]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/sina.py
5 from .common
import InfoExtractor
12 class SinaIE(InfoExtractor
):
13 _VALID_URL
= r
'''https?://(.*?\.)?video\.sina\.com\.cn/
15 (.+?/(((?P<pseudo_id>\d+).html)|(.*?(\#|(vid=))(?P<id>\d+?)($|&))))
17 # This is used by external sites like Weibo
18 (api/sinawebApi/outplay.php/(?P<token>.+?)\.swf)
23 u
'url': u
'http://video.sina.com.cn/news/vlist/zt/chczlj2013/?opsubject_id=top12#110028898',
24 u
'file': u
'110028898.flv',
25 u
'md5': u
'd65dd22ddcf44e38ce2bf58a10c3e71f',
27 u
'title': u
'《中国新闻》 朝鲜要求巴拿马立即释放被扣船员',
32 def suitable(cls
, url
):
33 return re
.match(cls
._VALID
_URL
, url
, flags
=re
.VERBOSE
) is not None
35 def _extract_video(self
, video_id
):
36 data
= compat_urllib_parse
.urlencode({'vid': video_id
})
37 url_doc
= self
._download
_xml
('http://v.iask.com/v_play.php?%s' % data
,
38 video_id
, u
'Downloading video url')
39 image_page
= self
._download
_webpage
(
40 'http://interface.video.sina.com.cn/interface/common/getVideoImage.php?%s' % data
,
41 video_id
, u
'Downloading thumbnail info')
43 return {'id': video_id
,
44 'url': url_doc
.find('./durl/url').text
,
46 'title': url_doc
.find('./vname').text
,
47 'thumbnail': image_page
.split('=')[1],
50 def _real_extract(self
, url
):
51 mobj
= re
.match(self
._VALID
_URL
, url
, flags
=re
.VERBOSE
)
52 video_id
= mobj
.group('id')
53 if mobj
.group('token') is not None:
54 # The video id is in the redirected url
55 self
.to_screen(u
'Getting video id')
56 request
= compat_urllib_request
.Request(url
)
57 request
.get_method
= lambda: 'HEAD'
58 (_
, urlh
) = self
._download
_webpage
_handle
(request
, 'NA', False)
59 return self
._real
_extract
(urlh
.geturl())
60 elif video_id
is None:
61 pseudo_id
= mobj
.group('pseudo_id')
62 webpage
= self
._download
_webpage
(url
, pseudo_id
)
63 video_id
= self
._search
_regex
(r
'vid:\'(\d
+?
)\'', webpage, u'video
id')
65 return self._extract_video(video_id)