You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
3.5 KiB

  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .theplatform import ThePlatformIE
  4. from ..utils import int_or_none
  5. class CNETIE(ThePlatformIE):
  6. _VALID_URL = r'https?://(?:www\.)?cnet\.com/videos/(?P<id>[^/]+)/'
  7. _TESTS = [{
  8. 'url': 'http://www.cnet.com/videos/hands-on-with-microsofts-windows-8-1-update/',
  9. 'info_dict': {
  10. 'id': '56f4ea68-bd21-4852-b08c-4de5b8354c60',
  11. 'ext': 'flv',
  12. 'title': 'Hands-on with Microsoft Windows 8.1 Update',
  13. 'description': 'The new update to the Windows 8 OS brings improved performance for mouse and keyboard users.',
  14. 'uploader_id': '6085384d-619e-11e3-b231-14feb5ca9861',
  15. 'uploader': 'Sarah Mitroff',
  16. 'duration': 70,
  17. },
  18. }, {
  19. 'url': 'http://www.cnet.com/videos/whiny-pothole-tweets-at-local-government-when-hit-by-cars-tomorrow-daily-187/',
  20. 'info_dict': {
  21. 'id': '56527b93-d25d-44e3-b738-f989ce2e49ba',
  22. 'ext': 'flv',
  23. 'title': 'Whiny potholes tweet at local government when hit by cars (Tomorrow Daily 187)',
  24. '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',
  25. 'uploader_id': 'b163284d-6b73-44fc-b3e6-3da66c392d40',
  26. 'uploader': 'Ashley Esqueda',
  27. 'duration': 1482,
  28. },
  29. }]
  30. def _real_extract(self, url):
  31. display_id = self._match_id(url)
  32. webpage = self._download_webpage(url, display_id)
  33. data_json = self._html_search_regex(
  34. r"data-cnet-video(?:-uvp)?-options='([^']+)'",
  35. webpage, 'data json')
  36. data = self._parse_json(data_json, display_id)
  37. vdata = data.get('video') or data['videos'][0]
  38. video_id = vdata['id']
  39. title = vdata['title']
  40. author = vdata.get('author')
  41. if author:
  42. uploader = '%s %s' % (author['firstName'], author['lastName'])
  43. uploader_id = author.get('id')
  44. else:
  45. uploader = None
  46. uploader_id = None
  47. mpx_account = data['config']['uvpConfig']['default']['mpx_account']
  48. metadata = self.get_metadata('%s/%s' % (mpx_account, list(vdata['files'].values())[0]), video_id)
  49. description = vdata.get('description') or metadata.get('description')
  50. duration = int_or_none(vdata.get('duration')) or metadata.get('duration')
  51. formats = []
  52. subtitles = {}
  53. for (fkey, vid) in vdata['files'].items():
  54. if fkey == 'hls_phone' and 'hls_tablet' in vdata['files']:
  55. continue
  56. release_url = 'http://link.theplatform.com/s/%s/%s?format=SMIL&mbr=true' % (mpx_account, vid)
  57. if fkey == 'hds':
  58. release_url += '&manifest=f4m'
  59. tp_formats, tp_subtitles = self._extract_theplatform_smil(release_url, video_id, 'Downloading %s SMIL data' % fkey)
  60. formats.extend(tp_formats)
  61. subtitles = self._merge_subtitles(subtitles, tp_subtitles)
  62. self._sort_formats(formats)
  63. return {
  64. 'id': video_id,
  65. 'display_id': display_id,
  66. 'title': title,
  67. 'description': description,
  68. 'thumbnail': metadata.get('thumbnail'),
  69. 'duration': duration,
  70. 'uploader': uploader,
  71. 'uploader_id': uploader_id,
  72. 'subtitles': subtitles,
  73. 'formats': formats,
  74. }