]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/sina.py
[vimeo] Fix password protected videos again (#5082)
[yt-dlp.git] / youtube_dl / extractor / sina.py
CommitLineData
0932300e 1# coding: utf-8
76f270a4 2from __future__ import unicode_literals
0932300e
JMF
3
4import re
0932300e
JMF
5
6from .common import InfoExtractor
1cc79574 7from ..compat import (
0932300e
JMF
8 compat_urllib_request,
9 compat_urllib_parse,
10)
11
12
13class SinaIE(InfoExtractor):
437cac8c 14 _VALID_URL = r'''(?x)https?://(.*?\.)?video\.sina\.com\.cn/
0932300e 15 (
8b769664 16 (.+?/(((?P<pseudo_id>\d+).html)|(.*?(\#|(vid=)|b/)(?P<id>\d+?)($|&|\-))))
0932300e
JMF
17 |
18 # This is used by external sites like Weibo
19 (api/sinawebApi/outplay.php/(?P<token>.+?)\.swf)
20 )
21 '''
22
8b769664
JMF
23 _TESTS = [
24 {
25 'url': 'http://video.sina.com.cn/news/vlist/zt/chczlj2013/?opsubject_id=top12#110028898',
8b769664
JMF
26 'md5': 'd65dd22ddcf44e38ce2bf58a10c3e71f',
27 'info_dict': {
437cac8c
PH
28 'id': '110028898',
29 'ext': 'flv',
8b769664
JMF
30 'title': '《中国新闻》 朝鲜要求巴拿马立即释放被扣船员',
31 }
32 },
33 {
34 'url': 'http://video.sina.com.cn/v/b/101314253-1290078633.html',
35 'info_dict': {
36 'id': '101314253',
37 'ext': 'flv',
38 'title': '军方提高对朝情报监视级别',
39 },
40 },
41 ]
0932300e 42
0932300e
JMF
43 def _extract_video(self, video_id):
44 data = compat_urllib_parse.urlencode({'vid': video_id})
e26f8712 45 url_doc = self._download_xml('http://v.iask.com/v_play.php?%s' % data,
9e1a5b84 46 video_id, 'Downloading video url')
0932300e
JMF
47 image_page = self._download_webpage(
48 'http://interface.video.sina.com.cn/interface/common/getVideoImage.php?%s' % data,
76f270a4 49 video_id, 'Downloading thumbnail info')
0932300e
JMF
50
51 return {'id': video_id,
52 'url': url_doc.find('./durl/url').text,
53 'ext': 'flv',
54 'title': url_doc.find('./vname').text,
55 'thumbnail': image_page.split('=')[1],
56 }
57
58 def _real_extract(self, url):
437cac8c 59 mobj = re.match(self._VALID_URL, url)
0932300e
JMF
60 video_id = mobj.group('id')
61 if mobj.group('token') is not None:
62 # The video id is in the redirected url
76f270a4 63 self.to_screen('Getting video id')
0932300e
JMF
64 request = compat_urllib_request.Request(url)
65 request.get_method = lambda: 'HEAD'
66 (_, urlh) = self._download_webpage_handle(request, 'NA', False)
67 return self._real_extract(urlh.geturl())
68 elif video_id is None:
69 pseudo_id = mobj.group('pseudo_id')
70 webpage = self._download_webpage(url, pseudo_id)
76f270a4 71 video_id = self._search_regex(r'vid:\'(\d+?)\'', webpage, 'video id')
0932300e
JMF
72
73 return self._extract_video(video_id)