cnet.py 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 (fkey, vid) in vdata['files'].items():
  52. if fkey == 'hls_phone' and 'hls_tablet' in vdata['files']:
  53. continue
  54. result = tp.extract(('http://link.theplatform.com/s/%s/%s' % (mpx_account, vid)))
  55. formats.extend(result['formats'])
  56. subtitles = self._merge_subtitles(subtitles, result['subtitles'])
  57. description = description or result.get('description')
  58. self._sort_formats(formats)
  59. return {
  60. 'id': video_id,
  61. 'display_id': display_id,
  62. 'title': title,
  63. 'description': description,
  64. 'uploader': uploader,
  65. 'uploader_id': uploader_id,
  66. 'subtitles': subtitles,
  67. 'formats': formats,
  68. }