]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/cbsinteractive.py
[extractor] Common function `_match_valid_url`
[yt-dlp.git] / yt_dlp / extractor / cbsinteractive.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4
5 from .cbs import CBSIE
6 from ..utils import int_or_none
7
8
9 class CBSInteractiveIE(CBSIE):
10 _VALID_URL = r'https?://(?:www\.)?(?P<site>cnet|zdnet)\.com/(?:videos|video(?:/share)?)/(?P<id>[^/?]+)'
11 _TESTS = [{
12 'url': 'http://www.cnet.com/videos/hands-on-with-microsofts-windows-8-1-update/',
13 'info_dict': {
14 'id': 'R49SYt__yAfmlXR85z4f7gNmCBDcN_00',
15 'display_id': 'hands-on-with-microsofts-windows-8-1-update',
16 'ext': 'mp4',
17 'title': 'Hands-on with Microsoft Windows 8.1 Update',
18 'description': 'The new update to the Windows 8 OS brings improved performance for mouse and keyboard users.',
19 'uploader_id': '6085384d-619e-11e3-b231-14feb5ca9861',
20 'uploader': 'Sarah Mitroff',
21 'duration': 70,
22 'timestamp': 1396479627,
23 'upload_date': '20140402',
24 },
25 'params': {
26 # m3u8 download
27 'skip_download': True,
28 },
29 }, {
30 'url': 'http://www.cnet.com/videos/whiny-pothole-tweets-at-local-government-when-hit-by-cars-tomorrow-daily-187/',
31 'md5': 'f11d27b2fa18597fbf92444d2a9ed386',
32 'info_dict': {
33 'id': 'kjOJd_OoVJqbg_ZD8MZCOk8Wekb9QccK',
34 'display_id': 'whiny-pothole-tweets-at-local-government-when-hit-by-cars-tomorrow-daily-187',
35 'ext': 'mp4',
36 'title': 'Whiny potholes tweet at local government when hit by cars (Tomorrow Daily 187)',
37 'description': 'md5:d2b9a95a5ffe978ae6fbd4cf944d618f',
38 'uploader_id': 'b163284d-6b73-44fc-b3e6-3da66c392d40',
39 'uploader': 'Ashley Esqueda',
40 'duration': 1482,
41 'timestamp': 1433289889,
42 'upload_date': '20150603',
43 },
44 }, {
45 'url': 'http://www.zdnet.com/video/share/video-keeping-android-smartphones-and-tablets-secure/',
46 'info_dict': {
47 'id': 'k0r4T_ehht4xW_hAOqiVQPuBDPZ8SRjt',
48 'display_id': 'video-keeping-android-smartphones-and-tablets-secure',
49 'ext': 'mp4',
50 'title': 'Video: Keeping Android smartphones and tablets secure',
51 'description': 'Here\'s the best way to keep Android devices secure, and what you do when they\'ve come to the end of their lives.',
52 'uploader_id': 'f2d97ea2-8175-11e2-9d12-0018fe8a00b0',
53 'uploader': 'Adrian Kingsley-Hughes',
54 'duration': 731,
55 'timestamp': 1449129925,
56 'upload_date': '20151203',
57 },
58 'params': {
59 # m3u8 download
60 'skip_download': True,
61 },
62 }, {
63 'url': 'http://www.zdnet.com/video/huawei-matebook-x-video/',
64 'only_matching': True,
65 }]
66
67 MPX_ACCOUNTS = {
68 'cnet': 2198311517,
69 'zdnet': 2387448114,
70 }
71
72 def _real_extract(self, url):
73 site, display_id = self._match_valid_url(url).groups()
74 webpage = self._download_webpage(url, display_id)
75
76 data_json = self._html_search_regex(
77 r"data(?:-(?:cnet|zdnet))?-video(?:-(?:uvp(?:js)?|player))?-options='([^']+)'",
78 webpage, 'data json')
79 data = self._parse_json(data_json, display_id)
80 vdata = data.get('video') or (data.get('videos') or data.get('playlist'))[0]
81
82 video_id = vdata['mpxRefId']
83
84 title = vdata['title']
85 author = vdata.get('author')
86 if author:
87 uploader = '%s %s' % (author['firstName'], author['lastName'])
88 uploader_id = author.get('id')
89 else:
90 uploader = None
91 uploader_id = None
92
93 info = self._extract_video_info(video_id, site, self.MPX_ACCOUNTS[site])
94 info.update({
95 'id': video_id,
96 'display_id': display_id,
97 'title': title,
98 'duration': int_or_none(vdata.get('duration')),
99 'uploader': uploader,
100 'uploader_id': uploader_id,
101 })
102 return info