cnet.py 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import json
  4. from .common import InfoExtractor
  5. from .theplatform import ThePlatformIE
  6. class CNETIE(InfoExtractor):
  7. _VALID_URL = r'https?://(?:www\.)?cnet\.com/videos/(?P<id>[^/]+)/'
  8. _TESTS = [{
  9. 'url': 'http://www.cnet.com/videos/hands-on-with-microsofts-windows-8-1-update/',
  10. 'info_dict': {
  11. 'id': '56f4ea68-bd21-4852-b08c-4de5b8354c60',
  12. 'ext': 'mp4',
  13. 'title': 'Hands-on with Microsoft Windows 8.1 Update',
  14. 'description': 'The new update to the Windows 8 OS brings improved performance for mouse and keyboard users.',
  15. 'uploader_id': '6085384d-619e-11e3-b231-14feb5ca9861',
  16. 'uploader': 'Sarah Mitroff',
  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': 'mp4',
  23. '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',
  24. 'uploader_id': 'b163284d-6b73-44fc-b3e6-3da66c392d40',
  25. 'uploader': 'Ashley Esqueda',
  26. 'title': 'Whiny potholes tweet at local government when hit by cars (Tomorrow Daily 187)',
  27. },
  28. }]
  29. def _real_extract(self, url):
  30. display_id = self._match_id(url)
  31. webpage = self._download_webpage(url, display_id)
  32. data_json = self._html_search_regex(
  33. r"<div class=\"videoPlayer\"\s+.*?data-cnet-video-uvp-options='([^']+)'",
  34. webpage, 'data json')
  35. data = json.loads(data_json)
  36. vdata = data['videos'][0]
  37. video_id = vdata['id']
  38. title = vdata['title']
  39. author = vdata.get('author')
  40. if author:
  41. uploader = '%s %s' % (author['firstName'], author['lastName'])
  42. uploader_id = author.get('id')
  43. else:
  44. uploader = None
  45. uploader_id = None
  46. mpx_account = data['config']['uvpConfig']['default']['mpx_account']
  47. tp = ThePlatformIE(self._downloader)
  48. formats = []
  49. subtitles = {}
  50. description = vdata.get('description')
  51. for vid in vdata['files'].values():
  52. result = tp.extract(('http://link.theplatform.com/s/%s/%s' % (mpx_account, vid)))
  53. formats.extend(result['formats'])
  54. subtitles = self._merge_subtitles(subtitles, result['subtitles'])
  55. description = description or result.get('description')
  56. self._sort_formats(formats)
  57. return {
  58. 'id': video_id,
  59. 'display_id': display_id,
  60. 'title': title,
  61. 'description': description,
  62. 'uploader': uploader,
  63. 'uploader_id': uploader_id,
  64. 'subtitles': subtitles,
  65. 'formats': formats,
  66. }