| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2016-06-14 01:11:24 +07:00
										 |  |  |     int_or_none, | 
					
						
							|  |  |  |     parse_iso8601, | 
					
						
							| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class RockstarGamesIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2016-06-14 01:11:24 +07:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?rockstargames\.com/videos(?:/video/|#?/?\?.*\bvideo=)(?P<id>\d+)' | 
					
						
							|  |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  |         'url': 'https://www.rockstargames.com/videos/video/11544/', | 
					
						
							|  |  |  |         'md5': '03b5caa6e357a4bd50e3143fc03e5733', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '11544', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'Further Adventures in Finance and Felony Trailer', | 
					
						
							|  |  |  |             'description': 'md5:6d31f55f30cb101b5476c4a379e324a3', | 
					
						
							| 
									
										
										
										
											2017-01-02 20:08:07 +08:00
										 |  |  |             'thumbnail': r're:^https?://.*\.jpg$', | 
					
						
							| 
									
										
										
										
											2016-06-14 01:11:24 +07:00
										 |  |  |             'timestamp': 1464876000, | 
					
						
							| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  |             'upload_date': '20160602', | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-06-14 01:11:24 +07:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.rockstargames.com/videos#/?video=48', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }] | 
					
						
							| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-14 01:11:24 +07:00
										 |  |  |         video = self._download_json( | 
					
						
							|  |  |  |             'https://www.rockstargames.com/videoplayer/videos/get-video.json', | 
					
						
							|  |  |  |             video_id, query={ | 
					
						
							|  |  |  |                 'id': video_id, | 
					
						
							|  |  |  |                 'locale': 'en_us', | 
					
						
							|  |  |  |             })['video'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         title = video['title'] | 
					
						
							| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-14 01:11:24 +07:00
										 |  |  |         formats = [] | 
					
						
							|  |  |  |         for video in video['files_processed']['video/mp4']: | 
					
						
							| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  |             if not video.get('src'): | 
					
						
							|  |  |  |                 continue | 
					
						
							| 
									
										
										
										
											2016-06-14 01:11:24 +07:00
										 |  |  |             resolution = video.get('resolution') | 
					
						
							|  |  |  |             height = int_or_none(self._search_regex( | 
					
						
							|  |  |  |                 r'^(\d+)[pP]$', resolution or '', 'height', default=None)) | 
					
						
							| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  |             formats.append({ | 
					
						
							|  |  |  |                 'url': self._proto_relative_url(video['src']), | 
					
						
							| 
									
										
										
										
											2016-06-14 01:11:24 +07:00
										 |  |  |                 'format_id': resolution, | 
					
						
							|  |  |  |                 'height': height, | 
					
						
							| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  |             }) | 
					
						
							| 
									
										
										
										
											2016-06-14 01:11:24 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if not formats: | 
					
						
							|  |  |  |             youtube_id = video.get('youtube_id') | 
					
						
							|  |  |  |             if youtube_id: | 
					
						
							|  |  |  |                 return self.url_result(youtube_id, 'Youtube') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2016-06-14 01:11:24 +07:00
										 |  |  |             'title': title, | 
					
						
							|  |  |  |             'description': video.get('description'), | 
					
						
							|  |  |  |             'thumbnail': self._proto_relative_url(video.get('screencap')), | 
					
						
							|  |  |  |             'timestamp': parse_iso8601(video.get('created')), | 
					
						
							| 
									
										
										
										
											2016-06-09 13:31:22 +02:00
										 |  |  |             'formats': formats, | 
					
						
							|  |  |  |         } |