cbsinteractive.py 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .theplatform import ThePlatformIE
  5. from ..compat import compat_urllib_parse
  6. from ..utils import int_or_none
  7. class CBSInteractiveIE(ThePlatformIE):
  8. _VALID_URL = r'https?://(?:www\.)?(?P<site>cnet|zdnet)\.com/(?:videos|video/share)/(?P<id>[^/?]+)'
  9. _TESTS = [{
  10. 'url': 'http://www.cnet.com/videos/hands-on-with-microsofts-windows-8-1-update/',
  11. 'md5': '041233212a0d06b179c87cbcca1577b8',
  12. 'info_dict': {
  13. 'id': '56f4ea68-bd21-4852-b08c-4de5b8354c60',
  14. 'ext': 'mp4',
  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.',
  17. 'uploader_id': '6085384d-619e-11e3-b231-14feb5ca9861',
  18. 'uploader': 'Sarah Mitroff',
  19. 'duration': 70,
  20. 'timestamp': 1396479627,
  21. 'upload_date': '20140402',
  22. },
  23. 'params': {
  24. 'format': 'mp4',
  25. },
  26. }, {
  27. 'url': 'http://www.cnet.com/videos/whiny-pothole-tweets-at-local-government-when-hit-by-cars-tomorrow-daily-187/',
  28. 'md5': 'f2b16d73e08d69591dd9e25564695c0c',
  29. 'info_dict': {
  30. 'id': '56527b93-d25d-44e3-b738-f989ce2e49ba',
  31. 'ext': 'mp4',
  32. 'title': 'Whiny potholes tweet at local government when hit by cars (Tomorrow Daily 187)',
  33. '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',
  34. 'uploader_id': 'b163284d-6b73-44fc-b3e6-3da66c392d40',
  35. 'uploader': 'Ashley Esqueda',
  36. 'duration': 1482,
  37. 'timestamp': 1433289889,
  38. 'upload_date': '20150603',
  39. },
  40. 'params': {
  41. 'format': 'mp4',
  42. },
  43. }, {
  44. 'url': 'http://www.zdnet.com/video/share/video-keeping-android-smartphones-and-tablets-secure/',
  45. 'info_dict': {
  46. 'id': 'bc1af9f0-a2b5-4e54-880d-0d95525781c0',
  47. 'ext': 'mp4',
  48. 'title': 'Video: Keeping Android smartphones and tablets secure',
  49. 'description': 'Here\'s the best way to keep Android devices secure, and what you do when they\'ve come to the end of their lives.',
  50. 'uploader_id': 'f2d97ea2-8175-11e2-9d12-0018fe8a00b0',
  51. 'uploader': 'Adrian Kingsley-Hughes',
  52. 'timestamp': 1449129925,
  53. 'upload_date': '20151203',
  54. },
  55. 'params': {
  56. # m3u8 download
  57. 'skip_download': True,
  58. }
  59. }]
  60. TP_RELEASE_URL_TEMPLATE = 'http://link.theplatform.com/s/kYEXFC/%s?mbr=true'
  61. MPX_ACCOUNTS = {
  62. 'cnet': 2288573011,
  63. 'zdnet': 2387448114,
  64. }
  65. def _real_extract(self, url):
  66. site, display_id = re.match(self._VALID_URL, url).groups()
  67. webpage = self._download_webpage(url, display_id)
  68. data_json = self._html_search_regex(
  69. r"data-(?:cnet|zdnet)-video(?:-uvp(?:js)?)?-options='([^']+)'",
  70. webpage, 'data json')
  71. data = self._parse_json(data_json, display_id)
  72. vdata = data.get('video') or data['videos'][0]
  73. video_id = vdata['id']
  74. title = vdata['title']
  75. author = vdata.get('author')
  76. if author:
  77. uploader = '%s %s' % (author['firstName'], author['lastName'])
  78. uploader_id = author.get('id')
  79. else:
  80. uploader = None
  81. uploader_id = None
  82. media_guid_path = 'media/guid/%d/%s' % (self.MPX_ACCOUNTS[site], vdata['mpxRefId'])
  83. formats, subtitles = [], {}
  84. for (fkey, vid) in vdata.get('files', {}).items():
  85. if fkey == 'hls_phone' and 'hls_tablet' in vdata['files']:
  86. continue
  87. release_url = self.TP_RELEASE_URL_TEMPLATE % vid
  88. if fkey == 'hds':
  89. release_url += '&manifest=f4m'
  90. tp_formats, tp_subtitles = self._extract_theplatform_smil(release_url, video_id, 'Downloading %s SMIL data' % fkey)
  91. formats.extend(tp_formats)
  92. subtitles = self._merge_subtitles(subtitles, tp_subtitles)
  93. if 'm3u8' in vdata:
  94. parsed_url = compat_urllib_parse.urlparse(url)
  95. m3u8_url = ('%s://%s%s'
  96. % (parsed_url.scheme, parsed_url.netloc, vdata['m3u8']))
  97. m3u8_formats = self._extract_m3u8_formats(m3u8_url, video_id)
  98. for format in m3u8_formats:
  99. format['url'] = format['url'].replace('https://', 'http://')
  100. formats.extend(m3u8_formats)
  101. if 'mp4' in vdata:
  102. formats.append({
  103. 'url': vdata['mp4'],
  104. 'format_id': 'mp4',
  105. 'ext': 'mp4',
  106. })
  107. self._sort_formats(formats)
  108. info = self._extract_theplatform_metadata('kYEXFC/%s' % media_guid_path, video_id)
  109. info.update({
  110. 'id': video_id,
  111. 'display_id': display_id,
  112. 'title': title,
  113. 'duration': int_or_none(vdata.get('duration')),
  114. 'uploader': uploader,
  115. 'uploader_id': uploader_id,
  116. 'subtitles': subtitles,
  117. 'formats': formats,
  118. })
  119. return info