]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/sohu.py
6 from .common
import InfoExtractor
7 from ..utils
import ExtractorError
10 class SohuIE(InfoExtractor
):
11 _VALID_URL
= r
'https?://(?P<mytv>my\.)?tv\.sohu\.com/.+?/(?(mytv)|n)(?P<id>\d+)\.shtml.*?'
14 u
'url': u
'http://tv.sohu.com/20130724/n382479172.shtml#super',
15 u
'file': u
'382479172.mp4',
16 u
'md5': u
'bde8d9a6ffd82c63a1eefaef4eeefec7',
18 u
'title': u
'MV:Far East Movement《The Illest》',
22 def _real_extract(self
, url
):
24 def _fetch_data(vid_id
, mytv
=False):
26 base_data_url
= 'http://my.tv.sohu.com/play/videonew.do?vid='
28 base_data_url
= u
'http://hot.vrs.sohu.com/vrs_flash.action?vid='
29 data_url
= base_data_url
+ str(vid_id
)
30 data_json
= self
._download
_webpage
(
32 note
=u
'Downloading JSON data for ' + str(vid_id
))
33 return json
.loads(data_json
)
35 mobj
= re
.match(self
._VALID
_URL
, url
)
36 video_id
= mobj
.group('id')
37 mytv
= mobj
.group('mytv') is not None
39 webpage
= self
._download
_webpage
(url
, video_id
)
40 raw_title
= self
._html
_search
_regex
(r
'(?s)<title>(.+?)</title>',
41 webpage
, u
'video title')
42 title
= raw_title
.partition('-')[0].strip()
44 vid
= self
._html
_search
_regex
(r
'var vid ?= ?["\'](\d
+)["\']', webpage,
46 data = _fetch_data(vid, mytv)
48 QUALITIES = ('ori', 'super', 'high', 'nor')
49 vid_ids = [data['data'][q + 'Vid']
51 if data['data'][q + 'Vid'] != 0]
53 raise ExtractorError(u'No formats available for this video')
55 # For now, we just pick the highest available quality
58 format_data = data if vid == vid_id else _fetch_data(vid_id, mytv)
59 part_count = format_data['data']['totalBlocks']
60 allot = format_data['allot']
61 prot = format_data['prot']
62 clipsURL = format_data['data']['clipsURL']
63 su = format_data['data']['su']
66 for i in range(part_count):
67 part_url = ('http://%s/?prot=%s&file=%s&new=%s' %
68 (allot, prot, clipsURL[i], su[i]))
69 part_str = self._download_webpage(
71 note=u'Downloading part %d of %d' % (i+1, part_count))
73 part_info = part_str.split('|')
74 video_url = '%s%s?key=%s' % (part_info[0], su[i], part_info[3])
77 'id': '%s_part%02d' % (video_id, i + 1),
82 playlist.append(video_info)
84 if len(playlist) == 1: