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.

225 lines
8.6 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
9 years ago
11 years ago
11 years ago
11 years ago
11 years ago
9 years ago
  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. 'uploader_id': 'cberidon@ign.com',
  29. }
  30. },
  31. {
  32. 'url': 'http://me.ign.com/en/feature/15775/100-little-things-in-gta-5-that-will-blow-your-mind',
  33. 'info_dict': {
  34. 'id': '100-little-things-in-gta-5-that-will-blow-your-mind',
  35. },
  36. 'playlist': [
  37. {
  38. 'info_dict': {
  39. 'id': '5ebbd138523268b93c9141af17bec937',
  40. 'ext': 'mp4',
  41. 'title': 'GTA 5 Video Review',
  42. 'description': 'Rockstar drops the mic on this generation of games. Watch our review of the masterly Grand Theft Auto V.',
  43. 'timestamp': 1379339880,
  44. 'upload_date': '20130916',
  45. 'uploader_id': 'danieljkrupa@gmail.com',
  46. },
  47. },
  48. {
  49. 'info_dict': {
  50. 'id': '638672ee848ae4ff108df2a296418ee2',
  51. 'ext': 'mp4',
  52. 'title': '26 Twisted Moments from GTA 5 in Slow Motion',
  53. 'description': 'The twisted beauty of GTA 5 in stunning slow motion.',
  54. 'timestamp': 1386878820,
  55. 'upload_date': '20131212',
  56. 'uploader_id': 'togilvie@ign.com',
  57. },
  58. },
  59. ],
  60. 'params': {
  61. 'skip_download': True,
  62. },
  63. },
  64. {
  65. 'url': 'http://www.ign.com/articles/2014/08/15/rewind-theater-wild-trailer-gamescom-2014?watch',
  66. 'md5': '618fedb9c901fd086f6f093564ef8558',
  67. 'info_dict': {
  68. 'id': '078fdd005f6d3c02f63d795faa1b984f',
  69. 'ext': 'mp4',
  70. 'title': 'Rewind Theater - Wild Trailer Gamescom 2014',
  71. 'description': 'Brian and Jared explore Michel Ancel\'s captivating new preview.',
  72. 'timestamp': 1408047180,
  73. 'upload_date': '20140814',
  74. 'uploader_id': 'jamesduggan1990@gmail.com',
  75. },
  76. },
  77. {
  78. 'url': 'http://me.ign.com/en/videos/112203/video/how-hitman-aims-to-be-different-than-every-other-s',
  79. 'only_matching': True,
  80. },
  81. {
  82. 'url': 'http://me.ign.com/ar/angry-birds-2/106533/video/lrd-ldyy-lwl-lfylm-angry-birds',
  83. 'only_matching': True,
  84. },
  85. ]
  86. def _find_video_id(self, webpage):
  87. res_id = [
  88. r'"video_id"\s*:\s*"(.*?)"',
  89. r'class="hero-poster[^"]*?"[^>]*id="(.+?)"',
  90. r'data-video-id="(.+?)"',
  91. r'<object id="vid_(.+?)"',
  92. r'<meta name="og:image" content=".*/(.+?)-(.+?)/.+.jpg"',
  93. ]
  94. return self._search_regex(res_id, webpage, 'video id', default=None)
  95. def _real_extract(self, url):
  96. mobj = re.match(self._VALID_URL, url)
  97. name_or_id = mobj.group('name_or_id')
  98. page_type = mobj.group('type')
  99. webpage = self._download_webpage(url, name_or_id)
  100. if page_type != 'video':
  101. multiple_urls = re.findall(
  102. r'<param name="flashvars"[^>]*value="[^"]*?url=(https?://www\.ign\.com/videos/.*?)["&]',
  103. webpage)
  104. if multiple_urls:
  105. entries = [self.url_result(u, ie='IGN') for u in multiple_urls]
  106. return {
  107. '_type': 'playlist',
  108. 'id': name_or_id,
  109. 'entries': entries,
  110. }
  111. video_id = self._find_video_id(webpage)
  112. if not video_id:
  113. return self.url_result(self._search_regex(
  114. self._EMBED_RE, webpage, 'embed url'))
  115. return self._get_video_info(video_id)
  116. def _get_video_info(self, video_id):
  117. api_data = self._download_json(
  118. self._API_URL_TEMPLATE % video_id, video_id)
  119. formats = []
  120. m3u8_url = api_data['refs'].get('m3uUrl')
  121. if m3u8_url:
  122. formats.extend(self._extract_m3u8_formats(
  123. m3u8_url, video_id, 'mp4', 'm3u8_native',
  124. m3u8_id='hls', fatal=False))
  125. f4m_url = api_data['refs'].get('f4mUrl')
  126. if f4m_url:
  127. formats.extend(self._extract_f4m_formats(
  128. f4m_url, video_id, f4m_id='hds', fatal=False))
  129. for asset in api_data['assets']:
  130. formats.append({
  131. 'url': asset['url'],
  132. 'tbr': asset.get('actual_bitrate_kbps'),
  133. 'fps': asset.get('frame_rate'),
  134. 'height': int_or_none(asset.get('height')),
  135. 'width': int_or_none(asset.get('width')),
  136. })
  137. self._sort_formats(formats)
  138. thumbnails = [{
  139. 'url': thumbnail['url']
  140. } for thumbnail in api_data.get('thumbnails', [])]
  141. metadata = api_data['metadata']
  142. return {
  143. 'id': api_data.get('videoId') or video_id,
  144. 'title': metadata.get('longTitle') or metadata.get('name') or metadata.get['title'],
  145. 'description': metadata.get('description'),
  146. 'timestamp': parse_iso8601(metadata.get('publishDate')),
  147. 'duration': int_or_none(metadata.get('duration')),
  148. 'display_id': metadata.get('slug') or video_id,
  149. 'uploader_id': metadata.get('creator'),
  150. 'thumbnails': thumbnails,
  151. 'formats': formats,
  152. }
  153. class OneUPIE(IGNIE):
  154. _VALID_URL = r'https?://gamevideos\.1up\.com/(?P<type>video)/id/(?P<name_or_id>.+)\.html'
  155. IE_NAME = '1up.com'
  156. _TESTS = [{
  157. 'url': 'http://gamevideos.1up.com/video/id/34976.html',
  158. 'md5': 'c9cc69e07acb675c31a16719f909e347',
  159. 'info_dict': {
  160. 'id': '34976',
  161. 'ext': 'mp4',
  162. 'title': 'Sniper Elite V2 - Trailer',
  163. 'description': 'md5:bf0516c5ee32a3217aa703e9b1bc7826',
  164. 'timestamp': 1313099220,
  165. 'upload_date': '20110811',
  166. 'uploader_id': 'IGN',
  167. }
  168. }]
  169. def _real_extract(self, url):
  170. mobj = re.match(self._VALID_URL, url)
  171. result = super(OneUPIE, self)._real_extract(url)
  172. result['id'] = mobj.group('name_or_id')
  173. return result
  174. class PCMagIE(IGNIE):
  175. _VALID_URL = r'https?://(?:www\.)?pcmag\.com/(?P<type>videos|article2)(/.+)?/(?P<name_or_id>.+)'
  176. IE_NAME = 'pcmag'
  177. _EMBED_RE = r'iframe.setAttribute\("src",\s*__util.objToUrlString\("http://widgets\.ign\.com/video/embed/content.html?[^"]*url=([^"]+)["&]'
  178. _TESTS = [{
  179. 'url': 'http://www.pcmag.com/videos/2015/01/06/010615-whats-new-now-is-gogo-snooping-on-your-data',
  180. 'md5': '212d6154fd0361a2781075f1febbe9ad',
  181. 'info_dict': {
  182. 'id': 'ee10d774b508c9b8ec07e763b9125b91',
  183. 'ext': 'mp4',
  184. 'title': '010615_What\'s New Now: Is GoGo Snooping on Your Data?',
  185. 'description': 'md5:a7071ae64d2f68cc821c729d4ded6bb3',
  186. 'timestamp': 1420571160,
  187. 'upload_date': '20150106',
  188. 'uploader_id': 'cozzipix@gmail.com',
  189. }
  190. }, {
  191. 'url': 'http://www.pcmag.com/article2/0,2817,2470156,00.asp',
  192. 'md5': '94130c1ca07ba0adb6088350681f16c1',
  193. 'info_dict': {
  194. 'id': '042e560ba94823d43afcb12ddf7142ca',
  195. 'ext': 'mp4',
  196. 'title': 'HTC\'s Weird New Re Camera - What\'s New Now',
  197. 'description': 'md5:53433c45df96d2ea5d0fda18be2ca908',
  198. 'timestamp': 1412953920,
  199. 'upload_date': '20141010',
  200. 'uploader_id': 'chris_snyder@pcmag.com',
  201. }
  202. }]