| 
									
										
										
										
											2014-01-29 16:44:21 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-23 22:14:22 +02:00
										 |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class YouJizzIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2016-07-20 22:41:13 +07:00
										 |  |  |     _VALID_URL = r'https?://(?:\w+\.)?youjizz\.com/videos/(?:[^/#?]+)?-(?P<id>[0-9]+)\.html(?:$|[?#])' | 
					
						
							|  |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2014-01-29 16:44:21 +01:00
										 |  |  |         'url': 'http://www.youjizz.com/videos/zeichentrick-1-2189178.html', | 
					
						
							| 
									
										
										
										
											2016-09-03 18:37:36 +08:00
										 |  |  |         'md5': '78fc1901148284c69af12640e01c6310', | 
					
						
							| 
									
										
										
										
											2014-01-29 16:44:21 +01:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2014-11-12 15:19:23 +01:00
										 |  |  |             'id': '2189178', | 
					
						
							| 
									
										
										
										
											2016-09-03 18:37:36 +08:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2016-02-14 15:37:17 +06:00
										 |  |  |             'title': 'Zeichentrick 1', | 
					
						
							|  |  |  |             'age_limit': 18, | 
					
						
							| 
									
										
										
										
											2013-06-27 20:46:46 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-07-20 22:41:13 +07:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.youjizz.com/videos/-2189178.html', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }] | 
					
						
							| 
									
										
										
										
											2013-06-23 22:14:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-11-12 15:19:23 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2013-06-23 22:14:22 +02:00
										 |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							| 
									
										
										
										
											2016-09-03 18:37:36 +08:00
										 |  |  |         # YouJizz's HTML5 player has invalid HTML | 
					
						
							|  |  |  |         webpage = webpage.replace('"controls', '" controls') | 
					
						
							| 
									
										
										
										
											2013-10-28 01:50:17 -04:00
										 |  |  |         age_limit = self._rta_search(webpage) | 
					
						
							| 
									
										
										
										
											2014-11-12 15:19:23 +01:00
										 |  |  |         video_title = self._html_search_regex( | 
					
						
							|  |  |  |             r'<title>\s*(.*)\s*</title>', webpage, 'title') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-03 18:37:36 +08:00
										 |  |  |         info_dict = self._parse_html5_media_entries(url, webpage, video_id)[0] | 
					
						
							| 
									
										
										
										
											2013-06-23 22:14:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-03 18:37:36 +08:00
										 |  |  |         info_dict.update({ | 
					
						
							| 
									
										
										
										
											2014-01-29 16:44:21 +01:00
										 |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': video_title, | 
					
						
							|  |  |  |             'age_limit': age_limit, | 
					
						
							| 
									
										
										
										
											2016-09-03 18:37:36 +08:00
										 |  |  |         }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return info_dict |