| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-07-18 21:39:21 +07:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     parse_iso8601, | 
					
						
							|  |  |  |     str_to_int, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  | 
 | 
					
						
							|  |  |  | class CrackedIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-07-18 21:39:21 +07:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?cracked\.com/video_(?P<id>\d+)_[\da-z-]+\.html' | 
					
						
							| 
									
										
										
										
											2015-04-23 21:58:50 +06:00
										 |  |  |     _TESTS = [{ | 
					
						
							|  |  |  |         'url': 'http://www.cracked.com/video_19070_if-animal-actors-got-e21-true-hollywood-stories.html', | 
					
						
							|  |  |  |         'md5': '89b90b9824e3806ca95072c4d78f13f7', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '19070', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'If Animal Actors Got E! True Hollywood Stories', | 
					
						
							|  |  |  |             'timestamp': 1404954000, | 
					
						
							|  |  |  |             'upload_date': '20140710', | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         # youtube embed | 
					
						
							| 
									
										
										
										
											2014-07-18 21:39:21 +07:00
										 |  |  |         'url': 'http://www.cracked.com/video_19006_4-plot-holes-you-didnt-notice-in-your-favorite-movies.html', | 
					
						
							| 
									
										
										
										
											2015-04-23 21:58:50 +06:00
										 |  |  |         'md5': 'ccd52866b50bde63a6ef3b35016ba8c7', | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2015-04-23 21:58:50 +06:00
										 |  |  |             'id': 'EjI00A3rZD0', | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2015-04-23 21:58:50 +06:00
										 |  |  |             'title': "4 Plot Holes You Didn't Notice in Your Favorite Movies - The Spit Take", | 
					
						
							|  |  |  |             'description': 'md5:c603708c718b796fe6079e2b3351ffc7', | 
					
						
							|  |  |  |             'upload_date': '20140725', | 
					
						
							|  |  |  |             'uploader_id': 'Cracked', | 
					
						
							|  |  |  |             'uploader': 'Cracked', | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-04-23 21:58:50 +06:00
										 |  |  |     }] | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-04-23 21:59:18 +06:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-23 21:49:54 +06:00
										 |  |  |         youtube_url = self._search_regex( | 
					
						
							|  |  |  |             r'<iframe[^>]+src="((?:https?:)?//www\.youtube\.com/embed/[^"]+)"', | 
					
						
							|  |  |  |             webpage, 'youtube url', default=None) | 
					
						
							|  |  |  |         if youtube_url: | 
					
						
							| 
									
										
										
										
											2015-04-23 21:58:50 +06:00
										 |  |  |             return self.url_result(youtube_url, 'Youtube') | 
					
						
							| 
									
										
										
										
											2015-04-23 21:49:54 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-18 21:39:21 +07:00
										 |  |  |         video_url = self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2015-04-23 21:49:54 +06:00
										 |  |  |             [r'var\s+CK_vidSrc\s*=\s*"([^"]+)"', r'<video\s+src="([^"]+)"'], | 
					
						
							|  |  |  |             webpage, 'video URL') | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-23 21:44:51 +06:00
										 |  |  |         title = self._search_regex( | 
					
						
							|  |  |  |             [r'property="?og:title"?\s+content="([^"]+)"', r'class="?title"?>([^<]+)'], | 
					
						
							|  |  |  |             webpage, 'title') | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-23 21:44:51 +06:00
										 |  |  |         description = self._search_regex( | 
					
						
							|  |  |  |             r'name="?(?:og:)?description"?\s+content="([^"]+)"', | 
					
						
							|  |  |  |             webpage, 'description', default=None) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         timestamp = self._html_search_regex( | 
					
						
							|  |  |  |             r'"date"\s*:\s*"([^"]+)"', webpage, 'upload date', fatal=False) | 
					
						
							| 
									
										
										
										
											2014-07-18 21:39:21 +07:00
										 |  |  |         if timestamp: | 
					
						
							|  |  |  |             timestamp = parse_iso8601(timestamp[:-6]) | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-18 21:39:21 +07:00
										 |  |  |         view_count = str_to_int(self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2015-04-23 21:44:51 +06:00
										 |  |  |             r'<span\s+class="?views"? id="?viewCounts"?>([\d,\.]+) Views</span>', | 
					
						
							|  |  |  |             webpage, 'view count', fatal=False)) | 
					
						
							| 
									
										
										
										
											2014-07-18 21:39:21 +07:00
										 |  |  |         comment_count = str_to_int(self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2015-04-23 21:44:51 +06:00
										 |  |  |             r'<span\s+id="?commentCounts"?>([\d,\.]+)</span>', | 
					
						
							|  |  |  |             webpage, 'comment count', fatal=False)) | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-18 21:39:21 +07:00
										 |  |  |         m = re.search(r'_(?P<width>\d+)X(?P<height>\d+)\.mp4$', video_url) | 
					
						
							|  |  |  |         if m: | 
					
						
							|  |  |  |             width = int(m.group('width')) | 
					
						
							|  |  |  |             height = int(m.group('height')) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             width = height = None | 
					
						
							| 
									
										
										
										
											2014-07-16 18:45:42 +05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-18 21:39:21 +07:00
										 |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2014-11-23 20:41:03 +01:00
										 |  |  |             'url': video_url, | 
					
						
							| 
									
										
										
										
											2014-07-18 21:39:21 +07:00
										 |  |  |             'title': title, | 
					
						
							|  |  |  |             'description': description, | 
					
						
							|  |  |  |             'timestamp': timestamp, | 
					
						
							|  |  |  |             'view_count': view_count, | 
					
						
							|  |  |  |             'comment_count': comment_count, | 
					
						
							|  |  |  |             'height': height, | 
					
						
							|  |  |  |             'width': width, | 
					
						
							| 
									
										
										
										
											2014-11-23 20:41:03 +01:00
										 |  |  |         } |