| 
									
										
										
										
											2014-01-27 07:55:30 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  | import json | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-02-02 12:03:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  | _translation_table = { | 
					
						
							| 
									
										
										
										
											2014-01-27 12:39:39 +01:00
										 |  |  |     'a': 'h', 'd': 'e', 'e': 'v', 'f': 'o', 'g': 'f', 'i': 'd', 'l': 'n', | 
					
						
							|  |  |  |     'm': 'a', 'n': 'm', 'p': 'u', 'q': 't', 'r': 's', 'v': 'p', 'x': 'r', | 
					
						
							|  |  |  |     'y': 'l', 'z': 'i', | 
					
						
							|  |  |  |     '$': ':', '&': '.', '(': '=', '^': '&', '=': '/', | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  | def _decode(s): | 
					
						
							|  |  |  |     return ''.join(_translation_table.get(c, c) for c in s) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  | class CliphunterIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-01-27 07:55:30 +01:00
										 |  |  |     IE_NAME = 'cliphunter' | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-27 12:39:39 +01:00
										 |  |  |     _VALID_URL = r'''(?x)http://(?:www\.)?cliphunter\.com/w/
 | 
					
						
							|  |  |  |         (?P<id>[0-9]+)/ | 
					
						
							|  |  |  |         (?P<seo>.+?)(?:$|[#\?]) | 
					
						
							|  |  |  |     '''
 | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-01-27 07:55:30 +01:00
										 |  |  |         'url': 'http://www.cliphunter.com/w/1012420/Fun_Jynx_Maze_solo', | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  |         'md5': 'a2ba71eebf523859fe527a61018f723e', | 
					
						
							| 
									
										
										
										
											2014-01-27 07:55:30 +01:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  |             'id': '1012420', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-01-27 07:55:30 +01:00
										 |  |  |             'title': 'Fun Jynx Maze solo', | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  |             'thumbnail': 're:^https?://.*\.jpg$', | 
					
						
							|  |  |  |             'age_limit': 18, | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-01-27 07:55:30 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-10-26 23:13:42 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  |         video_title = self._search_regex( | 
					
						
							|  |  |  |             r'mediaTitle = "([^"]+)"', webpage, 'title') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-27 12:39:39 +01:00
										 |  |  |         pl_fiji = self._search_regex( | 
					
						
							|  |  |  |             r'pl_fiji = \'([^\']+)\'', webpage, 'video data') | 
					
						
							|  |  |  |         pl_c_qual = self._search_regex( | 
					
						
							|  |  |  |             r'pl_c_qual = "(.)"', webpage, 'video quality') | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  |         video_url = _decode(pl_fiji) | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  |         formats = [{ | 
					
						
							|  |  |  |             'url': video_url, | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  |             'format_id': 'default-%s' % pl_c_qual, | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  |         }] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  |         qualities_json = self._search_regex( | 
					
						
							|  |  |  |             r'var pl_qualities\s*=\s*(.*?);\n', webpage, 'quality info') | 
					
						
							|  |  |  |         qualities_data = json.loads(qualities_json) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for i, t in enumerate( | 
					
						
							|  |  |  |                 re.findall(r"pl_fiji_([a-z0-9]+)\s*=\s*'([^']+')", webpage)): | 
					
						
							|  |  |  |             quality_id, crypted_url = t | 
					
						
							|  |  |  |             video_url = _decode(crypted_url) | 
					
						
							|  |  |  |             f = { | 
					
						
							|  |  |  |                 'format_id': quality_id, | 
					
						
							|  |  |  |                 'url': video_url, | 
					
						
							|  |  |  |                 'quality': i, | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if quality_id in qualities_data: | 
					
						
							|  |  |  |                 qd = qualities_data[quality_id] | 
					
						
							|  |  |  |                 m = re.match( | 
					
						
							|  |  |  |                     r'''(?x)<b>(?P<width>[0-9]+)x(?P<height>[0-9]+)<\\/b>
 | 
					
						
							|  |  |  |                         \s*\(\s*(?P<tbr>[0-9]+)\s*kb\\/s''', qd)
 | 
					
						
							|  |  |  |                 if m: | 
					
						
							|  |  |  |                     f['width'] = int(m.group('width')) | 
					
						
							|  |  |  |                     f['height'] = int(m.group('height')) | 
					
						
							|  |  |  |                     f['tbr'] = int(m.group('tbr')) | 
					
						
							|  |  |  |             formats.append(f) | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         thumbnail = self._search_regex( | 
					
						
							|  |  |  |             r"var\s+mov_thumb\s*=\s*'([^']+)';", | 
					
						
							|  |  |  |             webpage, 'thumbnail', fatal=False) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': video_title, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2014-09-04 06:40:15 +02:00
										 |  |  |             'age_limit': self._rta_search(webpage), | 
					
						
							|  |  |  |             'thumbnail': thumbnail, | 
					
						
							| 
									
										
										
										
											2014-01-25 01:46:52 +01:00
										 |  |  |         } |