2013-07-02 06:38:24 -04:00
|
|
|
# coding: utf-8
|
|
|
|
|
2013-06-25 13:48:08 -04:00
|
|
|
import re
|
2013-07-02 06:38:24 -04:00
|
|
|
import json
|
2013-06-25 13:48:08 -04:00
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
class TudouIE(InfoExtractor):
|
2013-10-14 19:20:04 -04:00
|
|
|
_VALID_URL = r'(?:http://)?(?:www\.)?tudou\.com/(?:listplay|programs|albumplay)/(?:view|(.+?))/(?:([^/]+)|([^/]+))(?:\.html)?'
|
|
|
|
_TESTS = [{
|
2013-06-27 14:46:46 -04:00
|
|
|
u'url': u'http://www.tudou.com/listplay/zzdE77v6Mmo/2xN2duXMxmw.html',
|
2013-07-02 06:38:24 -04:00
|
|
|
u'file': u'159448201.f4v',
|
|
|
|
u'md5': u'140a49ed444bd22f93330985d8475fcb',
|
2013-06-27 14:46:46 -04:00
|
|
|
u'info_dict': {
|
2013-07-02 06:38:24 -04:00
|
|
|
u"title": u"卡马乔国足开大脚长传冲吊集锦"
|
2013-06-27 14:46:46 -04:00
|
|
|
}
|
2013-10-14 19:20:04 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
u'url': u'http://www.tudou.com/albumplay/TenTw_JgiPM/PzsAs5usU9A.html',
|
|
|
|
u'file': u'todo.mp4',
|
|
|
|
u'md5': u'todo.mp4',
|
|
|
|
u'info_dict': {
|
|
|
|
u'title': u'todo.mp4',
|
|
|
|
},
|
|
|
|
u'add_ie': [u'Youku'],
|
|
|
|
u'skip': u'Only works from China'
|
|
|
|
}]
|
2013-06-25 13:48:08 -04:00
|
|
|
|
2013-07-02 06:38:24 -04:00
|
|
|
def _url_for_id(self, id, quality = None):
|
|
|
|
info_url = "http://v2.tudou.com/f?id="+str(id)
|
|
|
|
if quality:
|
|
|
|
info_url += '&hd' + quality
|
|
|
|
webpage = self._download_webpage(info_url, id, "Opening the info webpage")
|
|
|
|
final_url = self._html_search_regex('>(.+?)</f>',webpage, 'video url')
|
|
|
|
return final_url
|
|
|
|
|
2013-06-25 13:48:08 -04:00
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2013-07-02 06:38:24 -04:00
|
|
|
video_id = mobj.group(2)
|
2013-06-25 13:48:08 -04:00
|
|
|
webpage = self._download_webpage(url, video_id)
|
2013-10-14 19:20:04 -04:00
|
|
|
|
|
|
|
m = re.search(r'vcode:\s*[\'"](.+?)[\'"]', webpage)
|
|
|
|
if m and m.group(1):
|
|
|
|
return {
|
|
|
|
'_type': 'url',
|
|
|
|
'url': u'youku:' + m.group(1),
|
|
|
|
'ie_key': 'Youku'
|
|
|
|
}
|
|
|
|
|
2013-10-18 05:16:11 -04:00
|
|
|
title = self._search_regex(
|
|
|
|
r",kw:\s*['\"](.+?)[\"']", webpage, u'title')
|
2013-10-14 19:20:04 -04:00
|
|
|
thumbnail_url = self._search_regex(
|
|
|
|
r",pic:\s*[\"'](.+?)[\"']", webpage, u'thumbnail URL', fatal=False)
|
2013-07-02 06:38:24 -04:00
|
|
|
|
|
|
|
segs_json = self._search_regex(r'segs: \'(.*)\'', webpage, 'segments')
|
|
|
|
segments = json.loads(segs_json)
|
|
|
|
# It looks like the keys are the arguments that have to be passed as
|
|
|
|
# the hd field in the request url, we pick the higher
|
|
|
|
quality = sorted(segments.keys())[-1]
|
|
|
|
parts = segments[quality]
|
|
|
|
result = []
|
|
|
|
len_parts = len(parts)
|
|
|
|
if len_parts > 1:
|
|
|
|
self.to_screen(u'%s: found %s parts' % (video_id, len_parts))
|
|
|
|
for part in parts:
|
|
|
|
part_id = part['k']
|
|
|
|
final_url = self._url_for_id(part_id, quality)
|
|
|
|
ext = (final_url.split('?')[0]).split('.')[-1]
|
|
|
|
part_info = {'id': part_id,
|
|
|
|
'url': final_url,
|
|
|
|
'ext': ext,
|
|
|
|
'title': title,
|
|
|
|
'thumbnail': thumbnail_url,
|
|
|
|
}
|
|
|
|
result.append(part_info)
|
|
|
|
|
|
|
|
return result
|