]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/sina.py
[cleanup] Add more ruff rules (#10149)
[yt-dlp.git] / yt_dlp / extractor / sina.py
CommitLineData
0932300e 1from .common import InfoExtractor
3d2623a8 2from ..networking import HEADRequest
0730be90 3from ..utils import (
0730be90 4 ExtractorError,
3d2623a8 5 clean_html,
6 get_element_by_attribute,
0730be90 7 int_or_none,
0730be90 8 qualities,
3d2623a8 9 update_url_query,
0730be90 10)
0932300e
JMF
11
12
13class SinaIE(InfoExtractor):
b634ba74 14 _VALID_URL = r'''(?x)https?://(?:[^/?#]+\.)?video\.sina\.com\.cn/
0730be90 15 (?:
d3d8d818 16 (?:view/|.*\#)(?P<id>\d+)|
0730be90 17 .+?/(?P<pseudo_id>[^/?#]+)(?:\.s?html)|
0932300e 18 # This is used by external sites like Weibo
0730be90 19 api/sinawebApi/outplay.php/(?P<token>.+?)\.swf
0932300e
JMF
20 )
21 '''
22
8b769664
JMF
23 _TESTS = [
24 {
0730be90 25 'url': 'http://video.sina.com.cn/news/spj/topvideoes20160504/?opsubject_id=top1#250576622',
26 'md5': 'd38433e2fc886007729735650ae4b3e9',
8b769664 27 'info_dict': {
0730be90 28 'id': '250576622',
29 'ext': 'mp4',
30 'title': '现场:克鲁兹宣布退选 特朗普将稳获提名',
add96eb9 31 },
8b769664
JMF
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 },
0730be90 40 'skip': 'the page does not exist or has been deleted',
41 },
42 {
43 'url': 'http://video.sina.com.cn/view/250587748.html',
44 'md5': '3d1807a25c775092aab3bc157fff49b4',
45 'info_dict': {
46 'id': '250587748',
47 'ext': 'mp4',
48 'title': '瞬间泪目:8年前汶川地震珍贵视频首曝光',
49 },
8b769664
JMF
50 },
51 ]
0932300e 52
0932300e 53 def _real_extract(self, url):
5ad28e7f 54 mobj = self._match_valid_url(url)
0932300e 55
d3d8d818 56 video_id = mobj.group('id')
0730be90 57 if not video_id:
58 if mobj.group('token') is not None:
59 # The video id is in the redirected url
60 self.to_screen('Getting video id')
61 request = HEADRequest(url)
68217024 62 _, urlh = self._download_webpage_handle(request, 'NA', False)
3d2623a8 63 return self._real_extract(urlh.url)
0730be90 64 else:
65 pseudo_id = mobj.group('pseudo_id')
66 webpage = self._download_webpage(url, pseudo_id)
67 error = get_element_by_attribute('class', 'errtitle', webpage)
68 if error:
add96eb9 69 raise ExtractorError(f'{self.IE_NAME} said: {clean_html(error)}', expected=True)
0730be90 70 video_id = self._search_regex(
71 r"video_id\s*:\s*'(\d+)'", webpage, 'video id')
72
73 video_data = self._download_json(
74 'http://s.video.sina.com.cn/video/h5play',
75 video_id, query={'video_id': video_id})
76 if video_data['code'] != 1:
add96eb9 77 raise ExtractorError('{} said: {}'.format(
0730be90 78 self.IE_NAME, video_data['message']), expected=True)
79 else:
80 video_data = video_data['data']
81 title = video_data['title']
82 description = video_data.get('description')
83 if description:
84 description = description.strip()
85
86 preference = qualities(['cif', 'sd', 'hd', 'fhd', 'ffd'])
87 formats = []
88 for quality_id, quality in video_data.get('videos', {}).get('mp4', {}).items():
89 file_api = quality.get('file_api')
90 file_id = quality.get('file_id')
91 if not file_api or not file_id:
92 continue
93 formats.append({
94 'format_id': quality_id,
95 'url': update_url_query(file_api, {'vid': file_id}),
f983b875 96 'quality': preference(quality_id),
0730be90 97 'ext': 'mp4',
98 })
0730be90 99
100 return {
101 'id': video_id,
102 'title': title,
103 'description': description,
104 'thumbnail': video_data.get('image'),
105 'duration': int_or_none(video_data.get('length')),
106 'timestamp': int_or_none(video_data.get('create_time')),
107 'formats': formats,
108 }