| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  | # -*- coding: utf-8 -*- | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  | from ..compat import ( | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |     compat_urllib_parse, | 
					
						
							|  |  |  |     compat_urllib_request, | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							|  |  |  |     ExtractorError, | 
					
						
							| 
									
										
										
										
											2014-11-26 20:02:40 +06:00
										 |  |  |     int_or_none, | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | class GorillaVidIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2015-04-23 11:41:21 +02:00
										 |  |  |     IE_DESC = 'GorillaVid.in, daclips.in, movpod.in, fastvideo.in and realvid.net' | 
					
						
							| 
									
										
										
										
											2014-07-11 11:05:16 +02:00
										 |  |  |     _VALID_URL = r'''(?x)
 | 
					
						
							| 
									
										
										
										
											2014-07-11 22:23:00 +07:00
										 |  |  |         https?://(?P<host>(?:www\.)? | 
					
						
							| 
									
										
										
										
											2015-04-23 11:41:21 +02:00
										 |  |  |             (?:daclips\.in|gorillavid\.in|movpod\.in|fastvideo\.in|realvid\.net))/ | 
					
						
							| 
									
										
										
										
											2014-07-11 11:05:16 +02:00
										 |  |  |         (?:embed-)?(?P<id>[0-9a-zA-Z]+)(?:-[0-9]+x[0-9]+\.html)? | 
					
						
							|  |  |  |     '''
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-06 01:48:01 +07:00
										 |  |  |     _FILE_NOT_FOUND_REGEX = r'>(?:404 - )?File Not Found<' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |     _TESTS = [{ | 
					
						
							|  |  |  |         'url': 'http://gorillavid.in/06y9juieqpmi', | 
					
						
							|  |  |  |         'md5': '5ae4a3580620380619678ee4875893ba', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '06y9juieqpmi', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							| 
									
										
										
										
											2014-10-06 01:47:22 +07:00
										 |  |  |             'title': 'Rebecca Black My Moment Official Music Video Reaction-6GK87Rc8bzQ', | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |             'thumbnail': 're:http://.*\.jpg', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://gorillavid.in/embed-z08zf8le23c6-960x480.html', | 
					
						
							| 
									
										
										
										
											2015-05-06 21:43:36 +06:00
										 |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2014-07-11 11:05:16 +02:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://daclips.in/3rso4kdn6f9m', | 
					
						
							| 
									
										
										
										
											2014-07-11 22:23:00 +07:00
										 |  |  |         'md5': '1ad8fd39bb976eeb66004d3a4895f106', | 
					
						
							| 
									
										
										
										
											2014-07-11 11:05:16 +02:00
										 |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '3rso4kdn6f9m', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-10-27 00:44:27 +01:00
										 |  |  |             'title': 'Micro Pig piglets ready on 16th July 2009-bG0PdrCdxUc', | 
					
						
							| 
									
										
										
										
											2014-07-11 11:05:16 +02:00
										 |  |  |             'thumbnail': 're:http://.*\.jpg', | 
					
						
							| 
									
										
										
										
											2014-10-27 00:44:27 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-11-26 20:02:40 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         # video with countdown timeout | 
					
						
							|  |  |  |         'url': 'http://fastvideo.in/1qmdn1lmsmbw', | 
					
						
							|  |  |  |         'md5': '8b87ec3f6564a3108a0e8e66594842ba', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '1qmdn1lmsmbw', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'Man of Steel - Trailer', | 
					
						
							|  |  |  |             'thumbnail': 're:http://.*\.jpg', | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-04-23 11:41:21 +02:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://realvid.net/ctn2y6p2eviw', | 
					
						
							|  |  |  |         'md5': 'b2166d2cf192efd6b6d764c18fd3710e', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'ctn2y6p2eviw', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'title': 'rdx 1955', | 
					
						
							|  |  |  |             'thumbnail': 're:http://.*\.jpg', | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-10-05 07:53:02 +02:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://movpod.in/0wguyyxi1yca', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |     }] | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							|  |  |  |         video_id = mobj.group('id') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-11 22:23:00 +07:00
										 |  |  |         webpage = self._download_webpage('http://%s/%s' % (mobj.group('host'), video_id), video_id) | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-06 01:48:01 +07:00
										 |  |  |         if re.search(self._FILE_NOT_FOUND_REGEX, webpage) is not None: | 
					
						
							|  |  |  |             raise ExtractorError('Video %s does not exist' % video_id, expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-10 21:58:49 +06:00
										 |  |  |         fields = self._form_hidden_inputs(webpage) | 
					
						
							| 
									
										
										
										
											2014-11-23 20:41:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |         if fields['op'] == 'download1': | 
					
						
							| 
									
										
										
										
											2014-11-26 20:02:40 +06:00
										 |  |  |             countdown = int_or_none(self._search_regex( | 
					
						
							|  |  |  |                 r'<span id="countdown_str">(?:[Ww]ait)?\s*<span id="cxc">(\d+)</span>\s*(?:seconds?)?</span>', | 
					
						
							|  |  |  |                 webpage, 'countdown', default=None)) | 
					
						
							|  |  |  |             if countdown: | 
					
						
							|  |  |  |                 self._sleep(countdown, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |             post = compat_urllib_parse.urlencode(fields) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             req = compat_urllib_request.Request(url, post) | 
					
						
							|  |  |  |             req.add_header('Content-type', 'application/x-www-form-urlencoded') | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |             webpage = self._download_webpage(req, video_id, 'Downloading video page') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-26 20:02:40 +06:00
										 |  |  |         title = self._search_regex( | 
					
						
							| 
									
										
										
										
											2015-04-23 11:41:21 +02:00
										 |  |  |             [r'style="z-index: [0-9]+;">([^<]+)</span>', r'>Watch (.+) '], | 
					
						
							| 
									
										
										
										
											2014-11-26 20:02:40 +06:00
										 |  |  |             webpage, 'title', default=None) or self._og_search_title(webpage) | 
					
						
							|  |  |  |         video_url = self._search_regex( | 
					
						
							|  |  |  |             r'file\s*:\s*["\'](http[^"\']+)["\'],', webpage, 'file url') | 
					
						
							|  |  |  |         thumbnail = self._search_regex( | 
					
						
							|  |  |  |             r'image\s*:\s*["\'](http[^"\']+)["\'],', webpage, 'thumbnail', fatal=False) | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         formats = [{ | 
					
						
							|  |  |  |             'format_id': 'sd', | 
					
						
							| 
									
										
										
										
											2014-10-06 01:47:22 +07:00
										 |  |  |             'url': video_url, | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |             'quality': 1, | 
					
						
							|  |  |  |         }] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  |         } |