| 
									
										
										
										
											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, | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  |     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) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-22 19:02:48 +01:00
										 |  |  |         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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-15 03:38:04 +06:00
										 |  |  |         formats = [] | 
					
						
							| 
									
										
										
										
											2015-06-21 03:12:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-15 03:38:04 +06:00
										 |  |  |         video_url = compat_urllib_parse_unquote(self._search_regex( | 
					
						
							|  |  |  |             r'flv_url=(.+?)&', webpage, 'video URL', default='')) | 
					
						
							|  |  |  |         if video_url: | 
					
						
							|  |  |  |             formats.append({'url': video_url}) | 
					
						
							| 
									
										
										
										
											2015-06-21 03:12:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-15 03:38:04 +06:00
										 |  |  |         player_args = self._search_regex( | 
					
						
							|  |  |  |             r'(?s)new\s+HTML5Player\((.+?)\)', webpage, ' html5 player', default=None) | 
					
						
							|  |  |  |         if player_args: | 
					
						
							|  |  |  |             for arg in player_args.split(','): | 
					
						
							|  |  |  |                 format_url = self._search_regex( | 
					
						
							|  |  |  |                     r'(["\'])(?P<url>https?://.+?)\1', arg, 'url', | 
					
						
							|  |  |  |                     default=None, group='url') | 
					
						
							|  |  |  |                 if not format_url: | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 ext = determine_ext(format_url) | 
					
						
							|  |  |  |                 if ext == 'mp4': | 
					
						
							|  |  |  |                     formats.append({'url': format_url}) | 
					
						
							|  |  |  |                 elif ext == 'm3u8': | 
					
						
							|  |  |  |                     formats.extend(self._extract_m3u8_formats( | 
					
						
							|  |  |  |                         format_url, video_id, 'mp4', | 
					
						
							|  |  |  |                         entry_protocol='m3u8_native', m3u8_id='hls', fatal=False)) | 
					
						
							| 
									
										
										
										
											2015-06-21 03:12:17 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         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, | 
					
						
							|  |  |  |             'thumbnail': video_thumbnail, | 
					
						
							| 
									
										
										
										
											2013-10-18 19:32:37 -03:00
										 |  |  |             'age_limit': 18, | 
					
						
							| 
									
										
										
										
											2013-06-23 21:11:47 +02:00
										 |  |  |         } |