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.

136 lines
5.7 KiB

  1. from __future__ import unicode_literals
  2. import re
  3. from .once import OnceIE
  4. from ..compat import (
  5. compat_urllib_parse_unquote,
  6. )
  7. from ..utils import (
  8. unescapeHTML,
  9. url_basename,
  10. dict_get,
  11. )
  12. class GameSpotIE(OnceIE):
  13. _VALID_URL = r'https?://(?:www\.)?gamespot\.com/(?:video|article)s/(?:[^/]+/\d+-|embed/)(?P<id>\d+)'
  14. _TESTS = [{
  15. 'url': 'http://www.gamespot.com/videos/arma-3-community-guide-sitrep-i/2300-6410818/',
  16. 'md5': 'b2a30deaa8654fcccd43713a6b6a4825',
  17. 'info_dict': {
  18. 'id': 'gs-2300-6410818',
  19. 'ext': 'mp4',
  20. 'title': 'Arma 3 - Community Guide: SITREP I',
  21. 'description': 'Check out this video where some of the basics of Arma 3 is explained.',
  22. },
  23. }, {
  24. 'url': 'http://www.gamespot.com/videos/the-witcher-3-wild-hunt-xbox-one-now-playing/2300-6424837/',
  25. 'info_dict': {
  26. 'id': 'gs-2300-6424837',
  27. 'ext': 'mp4',
  28. 'title': 'Now Playing - The Witcher 3: Wild Hunt',
  29. 'description': 'Join us as we take a look at the early hours of The Witcher 3: Wild Hunt and more.',
  30. },
  31. 'params': {
  32. 'skip_download': True, # m3u8 downloads
  33. },
  34. }, {
  35. 'url': 'https://www.gamespot.com/videos/embed/6439218/',
  36. 'only_matching': True,
  37. }, {
  38. 'url': 'https://www.gamespot.com/articles/the-last-of-us-2-receives-new-ps4-trailer/1100-6454469/',
  39. 'only_matching': True,
  40. }]
  41. def _real_extract(self, url):
  42. page_id = self._match_id(url)
  43. webpage = self._download_webpage(url, page_id)
  44. data_video_json = self._search_regex(
  45. r'data-video=["\'](.*?)["\']', webpage, 'data video')
  46. data_video = self._parse_json(unescapeHTML(data_video_json), page_id)
  47. streams = data_video['videoStreams']
  48. manifest_url = None
  49. formats = []
  50. f4m_url = streams.get('f4m_stream')
  51. if f4m_url:
  52. manifest_url = f4m_url
  53. formats.extend(self._extract_f4m_formats(
  54. f4m_url + '?hdcore=3.7.0', page_id, f4m_id='hds', fatal=False))
  55. m3u8_url = dict_get(streams, ('m3u8_stream', 'adaptive_stream'))
  56. if m3u8_url:
  57. manifest_url = m3u8_url
  58. m3u8_formats = self._extract_m3u8_formats(
  59. m3u8_url, page_id, 'mp4', 'm3u8_native',
  60. m3u8_id='hls', fatal=False)
  61. formats.extend(m3u8_formats)
  62. progressive_url = dict_get(
  63. streams, ('progressive_hd', 'progressive_high', 'progressive_low', 'other_lr'))
  64. if progressive_url and manifest_url:
  65. qualities_basename = self._search_regex(
  66. r'/([^/]+)\.csmil/',
  67. manifest_url, 'qualities basename', default=None)
  68. if qualities_basename:
  69. QUALITIES_RE = r'((,\d+)+,?)'
  70. qualities = self._search_regex(
  71. QUALITIES_RE, qualities_basename,
  72. 'qualities', default=None)
  73. if qualities:
  74. qualities = list(map(lambda q: int(q), qualities.strip(',').split(',')))
  75. qualities.sort()
  76. http_template = re.sub(QUALITIES_RE, r'%d', qualities_basename)
  77. http_url_basename = url_basename(progressive_url)
  78. if m3u8_formats:
  79. self._sort_formats(m3u8_formats)
  80. m3u8_formats = list(filter(
  81. lambda f: f.get('vcodec') != 'none', m3u8_formats))
  82. if len(qualities) == len(m3u8_formats):
  83. for q, m3u8_format in zip(qualities, m3u8_formats):
  84. f = m3u8_format.copy()
  85. f.update({
  86. 'url': progressive_url.replace(
  87. http_url_basename, http_template % q),
  88. 'format_id': f['format_id'].replace('hls', 'http'),
  89. 'protocol': 'http',
  90. })
  91. formats.append(f)
  92. else:
  93. for q in qualities:
  94. formats.append({
  95. 'url': progressive_url.replace(
  96. http_url_basename, http_template % q),
  97. 'ext': 'mp4',
  98. 'format_id': 'http-%d' % q,
  99. 'tbr': q,
  100. })
  101. onceux_json = self._search_regex(
  102. r'data-onceux-options=["\'](.*?)["\']', webpage, 'data video', default=None)
  103. if onceux_json:
  104. onceux_url = self._parse_json(unescapeHTML(onceux_json), page_id).get('metadataUri')
  105. if onceux_url:
  106. formats.extend(self._extract_once_formats(re.sub(
  107. r'https?://[^/]+', 'http://once.unicornmedia.com', onceux_url),
  108. http_formats_preference=-1))
  109. if not formats:
  110. for quality in ['sd', 'hd']:
  111. # It's actually a link to a flv file
  112. flv_url = streams.get('f4m_{0}'.format(quality))
  113. if flv_url is not None:
  114. formats.append({
  115. 'url': flv_url,
  116. 'ext': 'flv',
  117. 'format_id': quality,
  118. })
  119. self._sort_formats(formats)
  120. return {
  121. 'id': data_video['guid'],
  122. 'display_id': page_id,
  123. 'title': compat_urllib_parse_unquote(data_video['title']),
  124. 'formats': formats,
  125. 'description': self._html_search_meta('description', webpage),
  126. 'thumbnail': self._og_search_thumbnail(webpage),
  127. }