2 from __future__ import unicode_literals
6 from .common import InfoExtractor
11 from ..utils import ExtractorError
14 class SohuIE(InfoExtractor):
15 _VALID_URL = r'https?://(?P<mytv>my\.)?tv\.sohu\.com/.+?/(?(mytv)|n)(?P<id>\d+)\.shtml.*?'
18 'note': 'This video is available only in Mainland China',
19 'url': 'http://tv.sohu.com/20130724/n382479172.shtml#super',
20 'md5': '29175c8cadd8b5cc4055001e85d6b372',
24 'title': 'MV:Far East Movement《The Illest》',
27 'cn_verification_proxy': 'proxy.uku.im:8888'
30 'url': 'http://tv.sohu.com/20150305/n409385080.shtml',
31 'md5': 'ac9a5d322b4bf9ae184d53e4711e4f1a',
35 'title': '《2015湖南卫视羊年元宵晚会》唐嫣《花好月圆》',
38 'url': 'http://my.tv.sohu.com/us/232799889/78693464.shtml',
39 'md5': '49308ff6dafde5ece51137d04aec311e',
43 'title': '【爱范品】第31期:MWC见不到的奇葩手机',
46 'note': 'Multipart video',
47 'url': 'http://my.tv.sohu.com/pl/8384802/78910339.shtml',
50 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
53 'md5': '492923eac023ba2f13ff69617c32754a',
55 'id': '78910339_part1',
58 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
61 'md5': 'de604848c0e8e9c4a4dde7e1347c0637',
63 'id': '78910339_part2',
66 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
69 'md5': '93584716ee0657c0b205b8aa3d27aa13',
71 'id': '78910339_part3',
74 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
78 'note': 'Video with title containing dash',
79 'url': 'http://my.tv.sohu.com/us/249884221/78932792.shtml',
83 'title': 'youtube-dl testing video',
90 def _real_extract(self, url):
92 def _fetch_data(vid_id, mytv=False):
94 base_data_url = 'http://my.tv.sohu.com/play/videonew.do?vid='
96 base_data_url = 'http://hot.vrs.sohu.com/vrs_flash.action?vid='
98 req = compat_urllib_request.Request(base_data_url + vid_id)
100 cn_verification_proxy = self._downloader.params.get('cn_verification_proxy')
101 if cn_verification_proxy:
102 req.add_header('Ytdl-request-proxy', cn_verification_proxy)
104 return self._download_json(
106 'Downloading JSON data for %s' % vid_id)
108 mobj = re.match(self._VALID_URL, url)
109 video_id = mobj.group('id')
110 mytv = mobj.group('mytv') is not None
112 webpage = self._download_webpage(url, video_id)
114 title = re.sub(r' - 搜狐视频$', '', self._og_search_title(webpage))
116 vid = self._html_search_regex(
117 r'var vid ?= ?["\'](\d+)["\']',
118 webpage, 'video path')
119 vid_data = _fetch_data(vid, mytv)
120 if vid_data['play'] != 1:
121 if vid_data.get('status') == 12:
122 raise ExtractorError(
123 'Sohu said: There\'s something wrong in the video.',
126 raise ExtractorError(
127 'Sohu said: The video is only licensed to users in Mainland China.',
131 for format_id in ('nor', 'high', 'super', 'ori', 'h2644k', 'h2654k'):
132 vid_id = vid_data['data'].get('%sVid' % format_id)
135 vid_id = compat_str(vid_id)
136 formats_json[format_id] = vid_data if vid == vid_id else _fetch_data(vid_id, mytv)
138 part_count = vid_data['data']['totalBlocks']
141 for i in range(part_count):
143 for format_id, format_data in formats_json.items():
144 data = format_data['data']
146 # URLs starts with http://newflv.sohu.ccgslb.net/ is not usable
147 # so retry until got a working URL
148 video_url = 'newflv.sohu.ccgslb.net'
150 while 'newflv.sohu.ccgslb.net' in video_url and retries < 5:
151 download_note = 'Download information from CDN gateway for format ' + format_id
153 download_note += ' (retry #%d)' % retries
155 cdn_info = self._download_json(
156 'http://data.vod.itc.cn/cdnList?new=' + data['su'][i],
157 video_id, download_note)
158 video_url = cdn_info['url']
162 'format_id': format_id,
163 'filesize': data['clipsBytes'][i],
164 'width': data['width'],
165 'height': data['height'],
168 self._sort_formats(formats)
171 'id': '%s_part%d' % (video_id, i + 1),
173 'duration': vid_data['data']['clipsDuration'][i],
177 if len(playlist) == 1:
179 info['id'] = video_id
182 '_type': 'multi_video',