]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/sohu.py
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》',
26 'skip': 'On available in China',
28 'url': 'http://tv.sohu.com/20150305/n409385080.shtml',
29 'md5': 'ac9a5d322b4bf9ae184d53e4711e4f1a',
33 'title': '《2015湖南卫视羊年元宵晚会》唐嫣《花好月圆》',
36 'url': 'http://my.tv.sohu.com/us/232799889/78693464.shtml',
37 'md5': '49308ff6dafde5ece51137d04aec311e',
41 'title': '【爱范品】第31期:MWC见不到的奇葩手机',
44 'note': 'Multipart video',
45 'url': 'http://my.tv.sohu.com/pl/8384802/78910339.shtml',
48 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
51 'md5': '492923eac023ba2f13ff69617c32754a',
53 'id': '78910339_part1',
56 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
59 'md5': 'de604848c0e8e9c4a4dde7e1347c0637',
61 'id': '78910339_part2',
64 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
67 'md5': '93584716ee0657c0b205b8aa3d27aa13',
69 'id': '78910339_part3',
72 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
76 'note': 'Video with title containing dash',
77 'url': 'http://my.tv.sohu.com/us/249884221/78932792.shtml',
81 'title': 'youtube-dl testing video',
88 def _real_extract(self
, url
):
90 def _fetch_data(vid_id
, mytv
=False):
92 base_data_url
= 'http://my.tv.sohu.com/play/videonew.do?vid='
94 base_data_url
= 'http://hot.vrs.sohu.com/vrs_flash.action?vid='
96 req
= compat_urllib_request
.Request(base_data_url
+ vid_id
)
98 cn_verification_proxy
= self
._downloader
.params
.get('cn_verification_proxy')
99 if cn_verification_proxy
:
100 req
.add_header('Ytdl-request-proxy', cn_verification_proxy
)
102 return self
._download
_json
(
104 'Downloading JSON data for %s' % vid_id
)
106 mobj
= re
.match(self
._VALID
_URL
, url
)
107 video_id
= mobj
.group('id')
108 mytv
= mobj
.group('mytv') is not None
110 webpage
= self
._download
_webpage
(url
, video_id
)
112 title
= re
.sub(r
' - 搜狐视频$', '', self
._og
_search
_title
(webpage
))
114 vid
= self
._html
_search
_regex
(
115 r
'var vid ?= ?["\'](\d
+)["\']',
116 webpage, 'video path')
117 vid_data = _fetch_data(vid, mytv)
118 if vid_data['play'] != 1:
119 if vid_data.get('status') == 12:
120 raise ExtractorError(
121 'Sohu said: There\'s something wrong in the video.',
124 raise ExtractorError(
125 'Sohu said: The video is only licensed to users in Mainland China.',
129 for format_id in ('nor', 'high', 'super', 'ori', 'h2644k', 'h2654k'):
130 vid_id = vid_data['data'].get('%sVid' % format_id)
133 vid_id = compat_str(vid_id)
134 formats_json[format_id] = vid_data if vid == vid_id else _fetch_data(vid_id, mytv)
136 part_count = vid_data['data']['totalBlocks']
139 for i in range(part_count):
141 for format_id, format_data in formats_json.items():
142 data = format_data['data']
144 # URLs starts with http://newflv.sohu.ccgslb.net/ is not usable
145 # so retry until got a working URL
146 video_url = 'newflv.sohu.ccgslb.net'
148 while 'newflv.sohu.ccgslb.net' in video_url and retries < 5:
149 download_note = 'Download information from CDN gateway for format ' + format_id
151 download_note += ' (retry #%d)' % retries
153 cdn_info = self._download_json(
154 'http://data.vod.itc.cn/cdnList?new=' + data['su'][i],
155 video_id, download_note)
156 video_url = cdn_info['url']
160 'format_id': format_id,
161 'filesize': data['clipsBytes'][i],
162 'width': data['width'],
163 'height': data['height'],
166 self._sort_formats(formats)
169 'id': '%s_part%d' % (video_id, i + 1),
171 'duration': vid_data['data']['clipsDuration'][i],
175 if len(playlist) == 1:
177 info['id'] = video_id
180 '_type': 'multi_video',