| 
									
										
										
										
											2016-03-26 05:37:40 -07:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-01 23:47:27 +06:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-26 05:37:40 -07:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2016-04-01 23:47:27 +06:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     int_or_none, | 
					
						
							|  |  |  |     parse_duration, | 
					
						
							|  |  |  |     unified_strdate, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2016-03-26 05:37:40 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class CamWithHerIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2016-04-01 23:47:27 +06:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?camwithher\.tv/view_video\.php\?.*\bviewkey=(?P<id>\w+)' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     _TESTS = [{ | 
					
						
							|  |  |  |         'url': 'http://camwithher.tv/view_video.php?viewkey=6e9a24e2c0e842e1f177&page=&viewtype=&category=', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '5644', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'title': 'Periscope Tease', | 
					
						
							|  |  |  |             'description': 'In the clouds teasing on periscope to my favorite song', | 
					
						
							|  |  |  |             'duration': 240, | 
					
						
							|  |  |  |             'view_count': int, | 
					
						
							|  |  |  |             'comment_count': int, | 
					
						
							|  |  |  |             'uploader': 'MileenaK', | 
					
						
							|  |  |  |             'upload_date': '20160322', | 
					
						
							| 
									
										
										
										
											2019-01-01 15:39:18 +01:00
										 |  |  |             'age_limit': 18, | 
					
						
							| 
									
										
										
										
											2016-03-26 05:37:40 -07:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2016-04-01 23:47:27 +06:00
										 |  |  |         'params': { | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							| 
									
										
										
										
											2016-03-26 05:37:40 -07:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-04-01 23:47:27 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://camwithher.tv/view_video.php?viewkey=6dfd8b7c97531a459937', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://camwithher.tv/view_video.php?page=&viewkey=6e9a24e2c0e842e1f177&viewtype=&category=', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://camwithher.tv/view_video.php?viewkey=b6c3b5bea9515d1a1fc4&page=&viewtype=&category=mv', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }] | 
					
						
							| 
									
										
										
										
											2016-03-26 05:37:40 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-01 23:47:27 +06:00
										 |  |  |         flv_id = self._html_search_regex( | 
					
						
							|  |  |  |             r'<a[^>]+href=["\']/download/\?v=(\d+)', webpage, 'video id') | 
					
						
							| 
									
										
										
										
											2016-03-26 05:37:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-01 23:47:27 +06:00
										 |  |  |         # Video URL construction algorithm is reverse-engineered from cwhplayer.swf | 
					
						
							|  |  |  |         rtmp_url = 'rtmp://camwithher.tv/clipshare/%s' % ( | 
					
						
							|  |  |  |             ('mp4:%s.mp4' % flv_id) if int(flv_id) > 2010 else flv_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         title = self._html_search_regex( | 
					
						
							|  |  |  |             r'<div[^>]+style="float:left"[^>]*>\s*<h2>(.+?)</h2>', webpage, 'title') | 
					
						
							|  |  |  |         description = self._html_search_regex( | 
					
						
							|  |  |  |             r'>Description:</span>(.+?)</div>', webpage, 'description', default=None) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         runtime = self._search_regex( | 
					
						
							|  |  |  |             r'Runtime\s*:\s*(.+?) \|', webpage, 'duration', default=None) | 
					
						
							|  |  |  |         if runtime: | 
					
						
							|  |  |  |             runtime = re.sub(r'[\s-]', '', runtime) | 
					
						
							|  |  |  |         duration = parse_duration(runtime) | 
					
						
							|  |  |  |         view_count = int_or_none(self._search_regex( | 
					
						
							|  |  |  |             r'Views\s*:\s*(\d+)', webpage, 'view count', default=None)) | 
					
						
							|  |  |  |         comment_count = int_or_none(self._search_regex( | 
					
						
							|  |  |  |             r'Comments\s*:\s*(\d+)', webpage, 'comment count', default=None)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         uploader = self._search_regex( | 
					
						
							|  |  |  |             r'Added by\s*:\s*<a[^>]+>([^<]+)</a>', webpage, 'uploader', default=None) | 
					
						
							|  |  |  |         upload_date = unified_strdate(self._search_regex( | 
					
						
							|  |  |  |             r'Added on\s*:\s*([\d-]+)', webpage, 'upload date', default=None)) | 
					
						
							| 
									
										
										
										
											2016-03-26 05:37:40 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': flv_id, | 
					
						
							|  |  |  |             'url': rtmp_url, | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							| 
									
										
										
										
											2016-04-01 23:47:27 +06:00
										 |  |  |             'no_resume': True, | 
					
						
							| 
									
										
										
										
											2016-03-26 05:37:40 -07:00
										 |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2016-04-01 23:47:27 +06:00
										 |  |  |             'description': description, | 
					
						
							|  |  |  |             'duration': duration, | 
					
						
							|  |  |  |             'view_count': view_count, | 
					
						
							|  |  |  |             'comment_count': comment_count, | 
					
						
							|  |  |  |             'uploader': uploader, | 
					
						
							|  |  |  |             'upload_date': upload_date, | 
					
						
							| 
									
										
										
										
											2019-01-01 15:39:18 +01:00
										 |  |  |             'age_limit': 18 | 
					
						
							| 
									
										
										
										
											2016-03-26 05:37:40 -07:00
										 |  |  |         } |