]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/tudou.py
[revision3] add support for pages of type tag
[yt-dlp.git] / youtube_dl / extractor / tudou.py
CommitLineData
24a267b5
JMF
1# coding: utf-8
2
8bdfddf6
PH
3from __future__ import unicode_literals
4
9caa687d 5from .common import InfoExtractor
b264c213 6from ..compat import compat_str
40cf7fcb 7from ..utils import (
8 int_or_none,
9 float_or_none,
10 unescapeHTML,
11)
9caa687d
YK
12
13
14class TudouIE(InfoExtractor):
40cf7fcb 15 IE_NAME = 'tudou'
16 _VALID_URL = r'https?://(?:www\.)?tudou\.com/(?:(?:programs|wlplay)/view|(?:listplay|albumplay)/[\w-]{11})/(?P<id>[\w-]{11})'
9ed3bdc6 17 _TESTS = [{
8bdfddf6
PH
18 'url': 'http://www.tudou.com/listplay/zzdE77v6Mmo/2xN2duXMxmw.html',
19 'md5': '140a49ed444bd22f93330985d8475fcb',
20 'info_dict': {
21 'id': '159448201',
22 'ext': 'f4v',
23 'title': '卡马乔国足开大脚长传冲吊集锦',
24 'thumbnail': 're:^https?://.*\.jpg$',
40cf7fcb 25 'timestamp': 1372113489000,
26 'description': '卡马乔卡家军,开大脚先进战术不完全集锦!',
27 'duration': 289.04,
28 'view_count': int,
29 'filesize': int,
6f5ac90c 30 }
a8be56ce
PH
31 }, {
32 'url': 'http://www.tudou.com/programs/view/ajX3gyhL0pc/',
33 'info_dict': {
34 'id': '117049447',
35 'ext': 'f4v',
36 'title': 'La Sylphide-Bolshoi-Ekaterina Krysanova & Vyacheslav Lopatin 2012',
37 'thumbnail': 're:^https?://.*\.jpg$',
40cf7fcb 38 'timestamp': 1349207518000,
39 'description': 'md5:294612423894260f2dcd5c6c04fe248b',
40 'duration': 5478.33,
41 'view_count': int,
42 'filesize': int,
a8be56ce 43 }
9ed3bdc6 44 }]
9caa687d 45
c71a3195 46 _PLAYER_URL = 'http://js.tudouui.com/bin/lingtong/PortalPlayer_177.swf'
23875575 47
aab13551 48 def _url_for_id(self, video_id, quality=None):
b264c213 49 info_url = 'http://v2.tudou.com/f?id=' + compat_str(video_id)
24a267b5
JMF
50 if quality:
51 info_url += '&hd' + quality
611c1dd9 52 xml_data = self._download_xml(info_url, video_id, 'Opening the info XML page')
87813a85 53 final_url = xml_data.text
24a267b5
JMF
54 return final_url
55
9caa687d 56 def _real_extract(self, url):
92b065dc 57 video_id = self._match_id(url)
40cf7fcb 58 item_data = self._download_json(
59 'http://www.tudou.com/tvp/getItemInfo.action?ic=%s' % video_id, video_id)
9ed3bdc6 60
40cf7fcb 61 youku_vcode = item_data.get('vcode')
141ba369
YCH
62 if youku_vcode:
63 return self.url_result('youku:' + youku_vcode, ie='Youku')
9ed3bdc6 64
40cf7fcb 65 title = unescapeHTML(item_data['kw'])
66 description = item_data.get('desc')
67 thumbnail_url = item_data.get('pic')
68 view_count = int_or_none(item_data.get('playTimes'))
69 timestamp = int_or_none(item_data.get('pt'))
23875575 70
40cf7fcb 71 segments = self._parse_json(item_data['itemSegs'], video_id)
24a267b5
JMF
72 # It looks like the keys are the arguments that have to be passed as
73 # the hd field in the request url, we pick the higher
ca9cd290 74 # Also, filter non-number qualities (see issue #3643).
f931e259
NJ
75 quality = sorted(filter(lambda k: k.isdigit(), segments.keys()),
76 key=lambda k: int(k))[-1]
24a267b5
JMF
77 parts = segments[quality]
78 result = []
79 len_parts = len(parts)
80 if len_parts > 1:
8865bdeb 81 self.to_screen('%s: found %s parts' % (video_id, len_parts))
24a267b5
JMF
82 for part in parts:
83 part_id = part['k']
84 final_url = self._url_for_id(part_id, quality)
85 ext = (final_url.split('?')[0]).split('.')[-1]
8bdfddf6
PH
86 part_info = {
87 'id': '%s' % part_id,
88 'url': final_url,
89 'ext': ext,
90 'title': title,
91 'thumbnail': thumbnail_url,
40cf7fcb 92 'description': description,
93 'view_count': view_count,
94 'timestamp': timestamp,
95 'duration': float_or_none(part.get('seconds'), 1000),
96 'filesize': int_or_none(part.get('size')),
c71a3195 97 'http_headers': {
40cf7fcb 98 'Referer': self._PLAYER_URL,
c71a3195 99 },
8bdfddf6 100 }
24a267b5
JMF
101 result.append(part_info)
102
92b065dc
PH
103 return {
104 '_type': 'multi_video',
105 'entries': result,
106 'id': video_id,
107 'title': title,
108 }
40cf7fcb 109
110
111class TudouPlaylistIE(InfoExtractor):
112 IE_NAME = 'tudou:playlist'
113 _VALID_URL = r'https?://(?:www\.)?tudou\.com/listplay/(?P<id>[\w-]{11})\.html'
114 _TESTS = [{
115 'url': 'http://www.tudou.com/listplay/zzdE77v6Mmo.html',
116 'info_dict': {
117 'id': 'zzdE77v6Mmo',
118 },
119 'playlist_mincount': 209,
120 }]
121
122 def _real_extract(self, url):
123 playlist_id = self._match_id(url)
124 playlist_data = self._download_json(
125 'http://www.tudou.com/tvp/plist.action?lcode=%s' % playlist_id, playlist_id)
126 entries = [self.url_result(
127 'http://www.tudou.com/programs/view/%s' % item['icode'],
128 'Tudou', item['icode'],
129 item['kw']) for item in playlist_data['items']]
130 return self.playlist_result(entries, playlist_id)
131
132
133class TudouAlbumIE(InfoExtractor):
134 IE_NAME = 'tudou:album'
135 _VALID_URL = r'https?://(?:www\.)?tudou\.com/album(?:cover|play)/(?P<id>[\w-]{11})'
136 _TESTS = [{
137 'url': 'http://www.tudou.com/albumplay/v5qckFJvNJg.html',
138 'info_dict': {
139 'id': 'v5qckFJvNJg',
140 },
141 'playlist_mincount': 45,
142 }]
143
144 def _real_extract(self, url):
145 album_id = self._match_id(url)
146 album_data = self._download_json(
147 'http://www.tudou.com/tvp/alist.action?acode=%s' % album_id, album_id)
148 entries = [self.url_result(
149 'http://www.tudou.com/programs/view/%s' % item['icode'],
150 'Tudou', item['icode'],
151 item['kw']) for item in album_data['items']]
152 return self.playlist_result(entries, album_id)