[Sohu] Fix title extraction
[youtube-dl] / youtube_dl / extractor / sohu.py
1 # encoding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5
6 from .common import InfoExtractor
7 from ..compat import (
8     compat_str,
9     compat_urllib_request
10 )
11 from ..utils import sanitize_url_path_consecutive_slashes
12
13
14 class SohuIE(InfoExtractor):
15     _VALID_URL = r'https?://(?P<mytv>my\.)?tv\.sohu\.com/.+?/(?(mytv)|n)(?P<id>\d+)\.shtml.*?'
16
17     _TESTS = [{
18         'note': 'This video is available only in Mainland China',
19         'url': 'http://tv.sohu.com/20130724/n382479172.shtml#super',
20         'md5': '29175c8cadd8b5cc4055001e85d6b372',
21         'info_dict': {
22             'id': '382479172',
23             'ext': 'mp4',
24             'title': 'MV:Far East Movement《The Illest》',
25         },
26         'params': {
27             'cn_verification_proxy': 'proxy.uku.im:8888'
28         }
29     }, {
30         'url': 'http://tv.sohu.com/20150305/n409385080.shtml',
31         'md5': '699060e75cf58858dd47fb9c03c42cfb',
32         'info_dict': {
33             'id': '409385080',
34             'ext': 'mp4',
35             'title': '《2015湖南卫视羊年元宵晚会》唐嫣《花好月圆》',
36         }
37     }, {
38         'url': 'http://my.tv.sohu.com/us/232799889/78693464.shtml',
39         'md5': '9bf34be48f2f4dadcb226c74127e203c',
40         'info_dict': {
41             'id': '78693464',
42             'ext': 'mp4',
43             'title': '【爱范品】第31期:MWC见不到的奇葩手机',
44         }
45     }, {
46         'note': 'Multipart video',
47         'url': 'http://my.tv.sohu.com/pl/8384802/78910339.shtml',
48         'info_dict': {
49             'id': '78910339',
50             'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
51         },
52         'playlist': [{
53             'md5': 'bdbfb8f39924725e6589c146bc1883ad',
54             'info_dict': {
55                 'id': '78910339_part1',
56                 'ext': 'mp4',
57                 'duration': 294,
58                 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
59             }
60         }, {
61             'md5': '3e1f46aaeb95354fd10e7fca9fc1804e',
62             'info_dict': {
63                 'id': '78910339_part2',
64                 'ext': 'mp4',
65                 'duration': 300,
66                 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
67             }
68         }, {
69             'md5': '8407e634175fdac706766481b9443450',
70             'info_dict': {
71                 'id': '78910339_part3',
72                 'ext': 'mp4',
73                 'duration': 150,
74                 'title': '【神探苍实战秘籍】第13期 战争之影 赫卡里姆',
75             }
76         }]
77     }, {
78         'note': 'Video with title containing dash',
79         'url': 'http://my.tv.sohu.com/us/249884221/78932792.shtml',
80         'info_dict': {
81             'id': '78932792',
82             'ext': 'mp4',
83             'title': 'youtube-dl testing video',
84         },
85         'params': {
86             'skip_download': True
87         }
88     }]
89
90     def _real_extract(self, url):
91
92         def _fetch_data(vid_id, mytv=False):
93             if mytv:
94                 base_data_url = 'http://my.tv.sohu.com/play/videonew.do?vid='
95             else:
96                 base_data_url = 'http://hot.vrs.sohu.com/vrs_flash.action?vid='
97
98             req = compat_urllib_request.Request(base_data_url + vid_id)
99
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)
103
104             return self._download_json(
105                 req, video_id,
106                 'Downloading JSON data for %s' % vid_id)
107
108         mobj = re.match(self._VALID_URL, url)
109         video_id = mobj.group('id')
110         mytv = mobj.group('mytv') is not None
111
112         webpage = self._download_webpage(url, video_id)
113
114         title = re.sub(r' - 搜狐视频$', '', self._og_search_title(webpage))
115
116         vid = self._html_search_regex(
117             r'var vid ?= ?["\'](\d+)["\']',
118             webpage, 'video path')
119         vid_data = _fetch_data(vid, mytv)
120
121         formats_json = {}
122         for format_id in ('nor', 'high', 'super', 'ori', 'h2644k', 'h2654k'):
123             vid_id = vid_data['data'].get('%sVid' % format_id)
124             if not vid_id:
125                 continue
126             vid_id = compat_str(vid_id)
127             formats_json[format_id] = vid_data if vid == vid_id else _fetch_data(vid_id, mytv)
128
129         part_count = vid_data['data']['totalBlocks']
130
131         playlist = []
132         for i in range(part_count):
133             formats = []
134             for format_id, format_data in formats_json.items():
135                 allot = format_data['allot']
136                 prot = format_data['prot']
137
138                 data = format_data['data']
139                 clips_url = data['clipsURL']
140                 su = data['su']
141
142                 part_str = self._download_webpage(
143                     'http://%s/?prot=%s&file=%s&new=%s' %
144                     (allot, prot, clips_url[i], su[i]),
145                     video_id,
146                     'Downloading %s video URL part %d of %d'
147                     % (format_id, i + 1, part_count))
148
149                 part_info = part_str.split('|')
150
151                 video_url = sanitize_url_path_consecutive_slashes(
152                     '%s%s?key=%s' % (part_info[0], su[i], part_info[3]))
153
154                 formats.append({
155                     'url': video_url,
156                     'format_id': format_id,
157                     'filesize': data['clipsBytes'][i],
158                     'width': data['width'],
159                     'height': data['height'],
160                     'fps': data['fps'],
161                 })
162             self._sort_formats(formats)
163
164             playlist.append({
165                 'id': '%s_part%d' % (video_id, i + 1),
166                 'title': title,
167                 'duration': vid_data['data']['clipsDuration'][i],
168                 'formats': formats,
169             })
170
171         if len(playlist) == 1:
172             info = playlist[0]
173             info['id'] = video_id
174         else:
175             info = {
176                 '_type': 'multi_video',
177                 'entries': playlist,
178                 'id': video_id,
179                 'title': title,
180             }
181
182         return info