]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/cnet.py
Merge pull request #7769 from remitamine/sort
[yt-dlp.git] / youtube_dl / extractor / cnet.py
CommitLineData
9271bc83
PH
1# coding: utf-8
2from __future__ import unicode_literals
3
b306c439 4from .theplatform import ThePlatformIE
c6ed6fad 5from ..utils import int_or_none
9271bc83
PH
6
7
c6ed6fad 8class CNETIE(ThePlatformIE):
9271bc83 9 _VALID_URL = r'https?://(?:www\.)?cnet\.com/videos/(?P<id>[^/]+)/'
788be331 10 _TESTS = [{
9271bc83 11 'url': 'http://www.cnet.com/videos/hands-on-with-microsofts-windows-8-1-update/',
9271bc83
PH
12 'info_dict': {
13 'id': '56f4ea68-bd21-4852-b08c-4de5b8354c60',
c6ed6fad 14 'ext': 'flv',
9271bc83
PH
15 'title': 'Hands-on with Microsoft Windows 8.1 Update',
16 'description': 'The new update to the Windows 8 OS brings improved performance for mouse and keyboard users.',
412c617d 17 'uploader_id': '6085384d-619e-11e3-b231-14feb5ca9861',
9271bc83 18 'uploader': 'Sarah Mitroff',
c6ed6fad 19 'duration': 70,
412c617d 20 },
788be331
YCH
21 }, {
22 'url': 'http://www.cnet.com/videos/whiny-pothole-tweets-at-local-government-when-hit-by-cars-tomorrow-daily-187/',
23 'info_dict': {
24 'id': '56527b93-d25d-44e3-b738-f989ce2e49ba',
c6ed6fad 25 'ext': 'flv',
26 'title': 'Whiny potholes tweet at local government when hit by cars (Tomorrow Daily 187)',
788be331
YCH
27 'description': 'Khail and Ashley wonder what other civic woes can be solved by self-tweeting objects, investigate a new kind of VR camera and watch an origami robot self-assemble, walk, climb, dig and dissolve. #TDPothole',
28 'uploader_id': 'b163284d-6b73-44fc-b3e6-3da66c392d40',
29 'uploader': 'Ashley Esqueda',
c6ed6fad 30 'duration': 1482,
788be331 31 },
788be331 32 }]
9271bc83
PH
33
34 def _real_extract(self, url):
412c617d 35 display_id = self._match_id(url)
9271bc83 36 webpage = self._download_webpage(url, display_id)
412c617d 37
9271bc83 38 data_json = self._html_search_regex(
c6ed6fad 39 r"data-cnet-video(?:-uvp)?-options='([^']+)'",
9271bc83 40 webpage, 'data json')
c6ed6fad 41 data = self._parse_json(data_json, display_id)
42 vdata = data.get('video') or data['videos'][0]
412c617d 43
9271bc83 44 video_id = vdata['id']
b306c439 45 title = vdata['title']
9271bc83
PH
46 author = vdata.get('author')
47 if author:
48 uploader = '%s %s' % (author['firstName'], author['lastName'])
412c617d 49 uploader_id = author.get('id')
9271bc83
PH
50 else:
51 uploader = None
52 uploader_id = None
53
b306c439 54 mpx_account = data['config']['uvpConfig']['default']['mpx_account']
c6ed6fad 55
56 metadata = self.get_metadata('%s/%s' % (mpx_account, list(vdata['files'].values())[0]), video_id)
57 description = vdata.get('description') or metadata.get('description')
58 duration = int_or_none(vdata.get('duration')) or metadata.get('duration')
59
b306c439 60 formats = []
61 subtitles = {}
a641b245 62 for (fkey, vid) in vdata['files'].items():
63 if fkey == 'hls_phone' and 'hls_tablet' in vdata['files']:
64 continue
c6ed6fad 65 release_url = 'http://link.theplatform.com/s/%s/%s?format=SMIL&mbr=true' % (mpx_account, vid)
66 if fkey == 'hds':
67 release_url += '&manifest=f4m'
68 tp_formats, tp_subtitles = self._extract_theplatform_smil(release_url, video_id, 'Downloading %s SMIL data' % fkey)
69 formats.extend(tp_formats)
70 subtitles = self._merge_subtitles(subtitles, tp_subtitles)
b306c439 71 self._sort_formats(formats)
72
9271bc83
PH
73 return {
74 'id': video_id,
75 'display_id': display_id,
76 'title': title,
b306c439 77 'description': description,
c6ed6fad 78 'thumbnail': metadata.get('thumbnail'),
79 'duration': duration,
9271bc83
PH
80 'uploader': uploader,
81 'uploader_id': uploader_id,
b306c439 82 'subtitles': subtitles,
83 'formats': formats,
9271bc83 84 }