ign.py 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. int_or_none,
  6. parse_iso8601,
  7. )
  8. class IGNIE(InfoExtractor):
  9. """
  10. Extractor for some of the IGN sites, like www.ign.com, es.ign.com de.ign.com.
  11. Some videos of it.ign.com are also supported
  12. """
  13. _VALID_URL = r'https?://.+?\.ign\.com/(?:[^/]+/)?(?P<type>videos|show_videos|articles|feature|(?:[^/]+/\d+/video))(/.+)?/(?P<name_or_id>.+)'
  14. IE_NAME = 'ign.com'
  15. _API_URL_TEMPLATE = 'http://apis.ign.com/video/v3/videos/%s'
  16. _EMBED_RE = r'<iframe[^>]+?["\']((?:https?:)?//.+?\.ign\.com.+?/embed.+?)["\']'
  17. _TESTS = [
  18. {
  19. 'url': 'http://www.ign.com/videos/2013/06/05/the-last-of-us-review',
  20. 'md5': 'febda82c4bafecd2d44b6e1a18a595f8',
  21. 'info_dict': {
  22. 'id': '8f862beef863986b2785559b9e1aa599',
  23. 'ext': 'mp4',
  24. 'title': 'The Last of Us Review',
  25. 'description': 'md5:c8946d4260a4d43a00d5ae8ed998870c',
  26. 'timestamp': 1370440800,
  27. 'upload_date': '20130605',
  28. }
  29. },
  30. {
  31. 'url': 'http://me.ign.com/en/feature/15775/100-little-things-in-gta-5-that-will-blow-your-mind',
  32. 'info_dict': {
  33. 'id': '100-little-things-in-gta-5-that-will-blow-your-mind',
  34. },
  35. 'playlist': [
  36. {
  37. 'info_dict': {
  38. 'id': '5ebbd138523268b93c9141af17bec937',
  39. 'ext': 'mp4',
  40. 'title': 'GTA 5 Video Review',
  41. 'description': 'Rockstar drops the mic on this generation of games. Watch our review of the masterly Grand Theft Auto V.',
  42. 'timestamp': 1379339880,
  43. 'upload_date': '20130916',
  44. },
  45. },
  46. {
  47. 'info_dict': {
  48. 'id': '638672ee848ae4ff108df2a296418ee2',
  49. 'ext': 'mp4',
  50. 'title': '26 Twisted Moments from GTA 5 in Slow Motion',
  51. 'description': 'The twisted beauty of GTA 5 in stunning slow motion.',
  52. 'timestamp': 1386878820,
  53. 'upload_date': '20131212',
  54. },
  55. },
  56. ],
  57. 'params': {
  58. 'skip_download': True,
  59. },
  60. },
  61. {
  62. 'url': 'http://www.ign.com/articles/2014/08/15/rewind-theater-wild-trailer-gamescom-2014?watch',
  63. 'md5': '618fedb9c901fd086f6f093564ef8558',
  64. 'info_dict': {
  65. 'id': '078fdd005f6d3c02f63d795faa1b984f',
  66. 'ext': 'mp4',
  67. 'title': 'Rewind Theater - Wild Trailer Gamescom 2014',
  68. 'description': 'Brian and Jared explore Michel Ancel\'s captivating new preview.',
  69. 'timestamp': 1408047180,
  70. 'upload_date': '20140814',
  71. },
  72. },
  73. ]
  74. def _find_video_id(self, webpage):
  75. res_id = [
  76. r'"video_id"\s*:\s*"(.*?)"',
  77. r'class="hero-poster[^"]*?"[^>]*id="(.+?)"',
  78. r'data-video-id="(.+?)"',
  79. r'<object id="vid_(.+?)"',
  80. r'<meta name="og:image" content=".*/(.+?)-(.+?)/.+.jpg"',
  81. ]
  82. return self._search_regex(res_id, webpage, 'video id', default=None)
  83. def _real_extract(self, url):
  84. mobj = re.match(self._VALID_URL, url)
  85. name_or_id = mobj.group('name_or_id')
  86. page_type = mobj.group('type')
  87. webpage = self._download_webpage(url, name_or_id)
  88. if page_type != 'video':
  89. multiple_urls = re.findall(
  90. '<param name="flashvars"[^>]*value="[^"]*?url=(https?://www\.ign\.com/videos/.*?)["&]',
  91. webpage)
  92. if multiple_urls:
  93. entries = [self.url_result(u, ie='IGN') for u in multiple_urls]
  94. return {
  95. '_type': 'playlist',
  96. 'id': name_or_id,
  97. 'entries': entries,
  98. }
  99. video_id = self._find_video_id(webpage)
  100. if not video_id:
  101. return self.url_result(self._search_regex(self._EMBED_RE, webpage, 'embed url'))
  102. return self._get_video_info(video_id)
  103. def _get_video_info(self, video_id):
  104. api_data = self._download_json(self._API_URL_TEMPLATE % video_id, video_id)
  105. formats = []
  106. m3u8_url = api_data['refs'].get('m3uUrl')
  107. if m3u8_url:
  108. formats.extend(self._extract_m3u8_formats(m3u8_url, video_id))
  109. f4m_url = api_data['refs'].get('f4mUrl')
  110. if f4m_url:
  111. formats.extend(self._extract_f4m_formats(f4m_url, video_id))
  112. for asset in api_data['assets']:
  113. formats.append({
  114. 'url': asset['url'],
  115. 'tbr': asset.get('actual_bitrate_kbps'),
  116. 'fps': asset.get('frame_rate'),
  117. 'height': int_or_none(asset.get('height')),
  118. 'width': int_or_none(asset.get('width')),
  119. })
  120. self._sort_formats(formats)
  121. thumbnails = []
  122. for thumbnail in api_data['thumbnails']:
  123. thumbnails.append({'url': thumbnail['url']})
  124. metadata = api_data['metadata']
  125. return {
  126. 'id': api_data.get('videoId') or video_id,
  127. 'title': metadata.get('longTitle') or metadata.get('name') or metadata.get['title'],
  128. 'description': metadata.get('description'),
  129. 'timestamp': parse_iso8601(metadata.get('publishDate')),
  130. 'duration': int_or_none(metadata.get('duration')),
  131. 'display_id': metadata.get('slug') or video_id,
  132. 'thumbnails': thumbnails,
  133. 'formats': formats,
  134. }
  135. class OneUPIE(IGNIE):
  136. _VALID_URL = r'https?://gamevideos\.1up\.com/(?P<type>video)/id/(?P<name_or_id>.+)\.html'
  137. IE_NAME = '1up.com'
  138. _TESTS = [{
  139. 'url': 'http://gamevideos.1up.com/video/id/34976.html',
  140. 'md5': 'c9cc69e07acb675c31a16719f909e347',
  141. 'info_dict': {
  142. 'id': '34976',
  143. 'ext': 'mp4',
  144. 'title': 'Sniper Elite V2 - Trailer',
  145. 'description': 'md5:bf0516c5ee32a3217aa703e9b1bc7826',
  146. 'timestamp': 1313099220,
  147. 'upload_date': '20110811',
  148. }
  149. }]
  150. def _real_extract(self, url):
  151. mobj = re.match(self._VALID_URL, url)
  152. result = super(OneUPIE, self)._real_extract(url)
  153. result['id'] = mobj.group('name_or_id')
  154. return result
  155. class PCMagIE(IGNIE):
  156. _VALID_URL = r'https?://(?:www\.)?pcmag\.com/(?P<type>videos|article2)(/.+)?/(?P<name_or_id>.+)'
  157. IE_NAME = 'pcmag'
  158. _EMBED_RE = r'iframe.setAttribute\("src",\s*__util.objToUrlString\("http://widgets\.ign\.com/video/embed/content.html?[^"]*url=([^"]+)["&]'
  159. _TESTS = [{
  160. 'url': 'http://www.pcmag.com/videos/2015/01/06/010615-whats-new-now-is-gogo-snooping-on-your-data',
  161. 'md5': '212d6154fd0361a2781075f1febbe9ad',
  162. 'info_dict': {
  163. 'id': 'ee10d774b508c9b8ec07e763b9125b91',
  164. 'ext': 'mp4',
  165. 'title': '010615_What\'s New Now: Is GoGo Snooping on Your Data?',
  166. 'description': 'md5:a7071ae64d2f68cc821c729d4ded6bb3',
  167. 'timestamp': 1420571160,
  168. 'upload_date': '20150106',
  169. }
  170. },{
  171. 'url': 'http://www.pcmag.com/article2/0,2817,2470156,00.asp',
  172. 'md5': '94130c1ca07ba0adb6088350681f16c1',
  173. 'info_dict': {
  174. 'id': '042e560ba94823d43afcb12ddf7142ca',
  175. 'ext': 'mp4',
  176. 'title': 'HTC\'s Weird New Re Camera - What\'s New Now',
  177. 'description': 'md5:53433c45df96d2ea5d0fda18be2ca908',
  178. 'timestamp': 1412953920,
  179. 'upload_date': '20141010',
  180. }
  181. }]