| 
									
										
										
										
											2014-01-17 03:15:09 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  | import base64 | 
					
						
							| 
									
										
										
										
											2013-06-23 22:31:50 +02:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  | from ..utils import qualities | 
					
						
							| 
									
										
										
										
											2013-06-23 22:31:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TeamcocoIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-04-07 15:24:12 +02:00
										 |  |  |     _VALID_URL = r'http://teamcoco\.com/video/(?P<video_id>[0-9]+)?/?(?P<display_id>.*)' | 
					
						
							| 
									
										
										
										
											2014-04-04 13:52:35 -04:00
										 |  |  |     _TESTS = [ | 
					
						
							| 
									
										
										
										
											2014-11-23 21:39:15 +01:00
										 |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://teamcoco.com/video/80187/conan-becomes-a-mary-kay-beauty-consultant', | 
					
						
							|  |  |  |             'md5': '3f7746aa0dc86de18df7539903d399ea', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							| 
									
										
										
										
											2015-02-01 15:00:54 +01:00
										 |  |  |                 'id': '80187', | 
					
						
							|  |  |  |                 'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-11-23 21:39:15 +01:00
										 |  |  |                 'title': 'Conan Becomes A Mary Kay Beauty Consultant', | 
					
						
							| 
									
										
										
										
											2015-02-08 17:45:38 +02:00
										 |  |  |                 'description': 'Mary Kay is perhaps the most trusted name in female beauty, so of course Conan is a natural choice to sell their products.', | 
					
						
							|  |  |  |                 'age_limit': 0, | 
					
						
							| 
									
										
										
										
											2014-11-23 21:39:15 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         }, { | 
					
						
							|  |  |  |             'url': 'http://teamcoco.com/video/louis-ck-interview-george-w-bush', | 
					
						
							|  |  |  |             'md5': 'cde9ba0fa3506f5f017ce11ead928f9a', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							| 
									
										
										
										
											2015-02-01 15:00:54 +01:00
										 |  |  |                 'id': '19705', | 
					
						
							|  |  |  |                 'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  |                 'description': 'Louis C.K. got starstruck by George W. Bush, so what? Part one.', | 
					
						
							|  |  |  |                 'title': 'Louis C.K. Interview Pt. 1 11/3/11', | 
					
						
							| 
									
										
										
										
											2015-02-08 17:45:38 +02:00
										 |  |  |                 'age_limit': 0, | 
					
						
							| 
									
										
										
										
											2014-11-23 21:39:15 +01:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2014-04-04 13:52:35 -04:00
										 |  |  |         } | 
					
						
							|  |  |  |     ] | 
					
						
							| 
									
										
										
										
											2015-02-11 15:47:19 +02:00
										 |  |  |     _VIDEO_ID_REGEXES = ( | 
					
						
							|  |  |  |         r'"eVar42"\s*:\s*(\d+)', | 
					
						
							|  |  |  |         r'Ginger\.TeamCoco\.openInApp\("video",\s*"([^"]+)"', | 
					
						
							|  |  |  |         r'"id_not"\s*:\s*(\d+)' | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2013-06-23 22:31:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							| 
									
										
										
										
											2014-04-07 15:24:12 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         display_id = mobj.group('display_id') | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, display_id) | 
					
						
							| 
									
										
										
										
											2014-11-23 20:41:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  |         video_id = mobj.group('video_id') | 
					
						
							| 
									
										
										
										
											2014-04-07 15:24:12 +02:00
										 |  |  |         if not video_id: | 
					
						
							| 
									
										
										
										
											2014-04-04 13:42:34 -04:00
										 |  |  |             video_id = self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2015-02-11 15:47:19 +02:00
										 |  |  |                 self._VIDEO_ID_REGEXES, webpage, 'video id') | 
					
						
							| 
									
										
										
										
											2013-06-23 22:31:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  |         embed_url = 'http://teamcoco.com/embed/v/%s' % video_id | 
					
						
							|  |  |  |         embed = self._download_webpage( | 
					
						
							|  |  |  |             embed_url, video_id, 'Downloading embed page') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-08 14:28:53 +02:00
										 |  |  |         player_data = self._parse_json(self._search_regex( | 
					
						
							|  |  |  |             r'Y\.Ginger\.Module\.Player\((\{.*?\})\);', embed, 'player data'), video_id) | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  |         data = self._parse_json( | 
					
						
							| 
									
										
										
										
											2015-03-08 14:28:53 +02:00
										 |  |  |             base64.b64decode(player_data['preload'].encode('ascii')).decode('utf-8'), video_id) | 
					
						
							| 
									
										
										
										
											2013-06-23 22:31:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-03 17:48:12 +01:00
										 |  |  |         formats = [] | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  |         get_quality = qualities(['500k', '480p', '1000k', '720p', '1080p']) | 
					
						
							|  |  |  |         for filed in data['files']: | 
					
						
							|  |  |  |             m_format = re.search(r'(\d+(k|p))\.mp4', filed['url']) | 
					
						
							| 
									
										
										
										
											2013-11-03 17:48:12 +01:00
										 |  |  |             if m_format is not None: | 
					
						
							|  |  |  |                 format_id = m_format.group(1) | 
					
						
							|  |  |  |             else: | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  |                 format_id = filed['bitrate'] | 
					
						
							| 
									
										
										
										
											2014-01-17 03:22:02 +01:00
										 |  |  |             tbr = ( | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  |                 int(filed['bitrate']) | 
					
						
							|  |  |  |                 if filed['bitrate'].isdigit() | 
					
						
							| 
									
										
										
										
											2014-01-17 03:22:02 +01:00
										 |  |  |                 else None) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-03 17:48:12 +01:00
										 |  |  |             formats.append({ | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  |                 'url': filed['url'], | 
					
						
							| 
									
										
										
										
											2013-11-03 17:48:12 +01:00
										 |  |  |                 'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-01-17 03:22:02 +01:00
										 |  |  |                 'tbr': tbr, | 
					
						
							| 
									
										
										
										
											2013-11-03 17:48:12 +01:00
										 |  |  |                 'format_id': format_id, | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  |                 'quality': get_quality(format_id), | 
					
						
							| 
									
										
										
										
											2013-11-03 17:48:12 +01:00
										 |  |  |             }) | 
					
						
							| 
									
										
										
										
											2014-01-17 03:22:02 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							| 
									
										
										
										
											2013-06-23 22:31:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-03 17:48:12 +01:00
										 |  |  |         return { | 
					
						
							| 
									
										
										
										
											2014-01-17 03:15:09 +01:00
										 |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2014-04-07 15:24:12 +02:00
										 |  |  |             'display_id': display_id, | 
					
						
							| 
									
										
										
										
											2013-11-03 17:48:12 +01:00
										 |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2015-02-21 22:19:39 +02:00
										 |  |  |             'title': data['title'], | 
					
						
							|  |  |  |             'thumbnail': data.get('thumb', {}).get('href'), | 
					
						
							|  |  |  |             'description': data.get('teaser'), | 
					
						
							| 
									
										
										
										
											2015-02-08 17:45:38 +02:00
										 |  |  |             'age_limit': self._family_friendly_search(webpage), | 
					
						
							| 
									
										
										
										
											2013-11-03 17:48:12 +01:00
										 |  |  |         } |