| 
									
										
										
										
											2014-01-22 19:02:48 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-23 21:11:47 +02:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2015-11-21 22:18:17 +06:00
										 |  |  | from ..compat import compat_urllib_parse_unquote | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2014-06-06 21:15:06 +07:00
										 |  |  |     clean_html, | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  |     ExtractorError, | 
					
						
							| 
									
										
										
										
											2015-06-21 03:12:17 +08:00
										 |  |  |     determine_ext, | 
					
						
							| 
									
										
										
										
											2015-11-21 22:18:17 +06:00
										 |  |  |     sanitized_Request, | 
					
						
							| 
									
										
										
										
											2013-06-23 21:11:47 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class XVideosIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?xvideos\.com/video(?P<id>[0-9]+)(?:.*)' | 
					
						
							| 
									
										
										
										
											2013-06-27 20:46:46 +02:00
										 |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-06-06 21:23:36 +07:00
										 |  |  |         'url': 'http://www.xvideos.com/video4588838/biker_takes_his_girl', | 
					
						
							|  |  |  |         'md5': '4b46ae6ea5e6e9086e714d883313c0c9', | 
					
						
							| 
									
										
										
										
											2014-01-22 19:02:48 +01:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2014-06-06 21:23:36 +07:00
										 |  |  |             'id': '4588838', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'title': 'Biker Takes his Girl', | 
					
						
							|  |  |  |             'age_limit': 18, | 
					
						
							| 
									
										
										
										
											2013-06-27 20:46:46 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-06-23 21:11:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-21 03:12:17 +08:00
										 |  |  |     _ANDROID_USER_AGENT = 'Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.133 Mobile Safari/535.19' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-23 21:11:47 +02:00
										 |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2013-06-23 21:11:47 +02:00
										 |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 21:15:06 +07:00
										 |  |  |         mobj = re.search(r'<h1 class="inlineError">(.+?)</h1>', webpage) | 
					
						
							|  |  |  |         if mobj: | 
					
						
							|  |  |  |             raise ExtractorError('%s said: %s' % (self.IE_NAME, clean_html(mobj.group(1))), expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 23:50:25 +06:00
										 |  |  |         video_url = compat_urllib_parse_unquote( | 
					
						
							| 
									
										
										
										
											2014-01-22 19:02:48 +01:00
										 |  |  |             self._search_regex(r'flv_url=(.+?)&', webpage, 'video URL')) | 
					
						
							|  |  |  |         video_title = self._html_search_regex( | 
					
						
							|  |  |  |             r'<title>(.*?)\s+-\s+XVID', webpage, 'title') | 
					
						
							|  |  |  |         video_thumbnail = self._search_regex( | 
					
						
							|  |  |  |             r'url_bigthumb=(.+?)&', webpage, 'thumbnail', fatal=False) | 
					
						
							| 
									
										
										
										
											2013-06-23 21:11:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-21 03:12:17 +08:00
										 |  |  |         formats = [{ | 
					
						
							|  |  |  |             'url': video_url, | 
					
						
							|  |  |  |         }] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 22:18:17 +06:00
										 |  |  |         android_req = sanitized_Request(url) | 
					
						
							| 
									
										
										
										
											2015-06-21 03:12:17 +08:00
										 |  |  |         android_req.add_header('User-Agent', self._ANDROID_USER_AGENT) | 
					
						
							|  |  |  |         android_webpage = self._download_webpage(android_req, video_id, fatal=False) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if android_webpage is not None: | 
					
						
							|  |  |  |             player_params_str = self._search_regex( | 
					
						
							|  |  |  |                 'mobileReplacePlayerDivTwoQual\(([^)]+)\)', | 
					
						
							|  |  |  |                 android_webpage, 'player parameters', default='') | 
					
						
							|  |  |  |             player_params = list(map(lambda s: s.strip(' \''), player_params_str.split(','))) | 
					
						
							|  |  |  |             if player_params: | 
					
						
							|  |  |  |                 formats.extend([{ | 
					
						
							|  |  |  |                     'url': param, | 
					
						
							|  |  |  |                     'preference': -10, | 
					
						
							|  |  |  |                 } for param in player_params if determine_ext(param) == 'mp4']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-22 19:02:48 +01:00
										 |  |  |         return { | 
					
						
							| 
									
										
										
										
											2013-06-23 21:11:47 +02:00
										 |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2015-06-21 03:12:17 +08:00
										 |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2013-06-23 21:11:47 +02:00
										 |  |  |             'title': video_title, | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'thumbnail': video_thumbnail, | 
					
						
							| 
									
										
										
										
											2013-10-18 19:32:37 -03:00
										 |  |  |             'age_limit': 18, | 
					
						
							| 
									
										
										
										
											2013-06-23 21:11:47 +02:00
										 |  |  |         } |