]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/cnet.py
[ffmpeg] try to convert tt subtitles usng dfxp2srt
[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
75313f2b 54 metadata = self.get_metadata('kYEXFC/%s' % list(vdata['files'].values())[0], video_id)
c6ed6fad 55 description = vdata.get('description') or metadata.get('description')
56 duration = int_or_none(vdata.get('duration')) or metadata.get('duration')
57
b306c439 58 formats = []
59 subtitles = {}
a641b245 60 for (fkey, vid) in vdata['files'].items():
61 if fkey == 'hls_phone' and 'hls_tablet' in vdata['files']:
62 continue
4c92fd2e 63 release_url = 'http://link.theplatform.com/s/kYEXFC/%s?mbr=true' % vid
c6ed6fad 64 if fkey == 'hds':
65 release_url += '&manifest=f4m'
66 tp_formats, tp_subtitles = self._extract_theplatform_smil(release_url, video_id, 'Downloading %s SMIL data' % fkey)
67 formats.extend(tp_formats)
68 subtitles = self._merge_subtitles(subtitles, tp_subtitles)
b306c439 69 self._sort_formats(formats)
70
9271bc83
PH
71 return {
72 'id': video_id,
73 'display_id': display_id,
74 'title': title,
b306c439 75 'description': description,
c6ed6fad 76 'thumbnail': metadata.get('thumbnail'),
77 'duration': duration,
9271bc83
PH
78 'uploader': uploader,
79 'uploader_id': uploader_id,
b306c439 80 'subtitles': subtitles,
81 'formats': formats,
9271bc83 82 }