| 
									
										
										
										
											2015-10-11 20:35:22 +06:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							| 
									
										
										
										
											2015-10-06 22:28:58 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2015-10-11 20:35:22 +06:00
										 |  |  | from ..utils import ExtractorError | 
					
						
							| 
									
										
										
										
											2015-10-06 22:28:58 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ChaturbateIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2015-10-11 20:35:22 +06:00
										 |  |  |     _VALID_URL = r'https?://(?:[^/]+\.)?chaturbate\.com/(?P<id>[^/?#]+)' | 
					
						
							|  |  |  |     _TESTS = [{ | 
					
						
							|  |  |  |         'url': 'https://www.chaturbate.com/siswet19/', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'siswet19', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 're:^siswet19 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$', | 
					
						
							|  |  |  |             'age_limit': 18, | 
					
						
							|  |  |  |             'is_live': True, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://en.chaturbate.com/siswet19/', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }] | 
					
						
							| 
									
										
										
										
											2015-10-06 22:28:58 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-24 20:09:48 +06:00
										 |  |  |     _ROOM_OFFLINE = 'Room is currently offline' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-06 22:28:58 +01:00
										 |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2015-10-11 20:35:22 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-06 22:28:58 +01:00
										 |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-11 20:35:22 +06:00
										 |  |  |         m3u8_url = self._search_regex( | 
					
						
							|  |  |  |             r'src=(["\'])(?P<url>http.+?\.m3u8.*?)\1', webpage, | 
					
						
							|  |  |  |             'playlist', default=None, group='url') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if not m3u8_url: | 
					
						
							|  |  |  |             error = self._search_regex( | 
					
						
							| 
									
										
										
										
											2015-12-24 20:09:48 +06:00
										 |  |  |                 [r'<span[^>]+class=(["\'])desc_span\1[^>]*>(?P<error>[^<]+)</span>', | 
					
						
							|  |  |  |                  r'<div[^>]+id=(["\'])defchat\1[^>]*>\s*<p><strong>(?P<error>[^<]+)<'], | 
					
						
							|  |  |  |                 webpage, 'error', group='error', default=None) | 
					
						
							|  |  |  |             if not error: | 
					
						
							|  |  |  |                 if any(p not in webpage for p in ( | 
					
						
							|  |  |  |                         self._ROOM_OFFLINE, 'offline_tipping', 'tip_offline')): | 
					
						
							|  |  |  |                     error = self._ROOM_OFFLINE | 
					
						
							|  |  |  |             if error: | 
					
						
							|  |  |  |                 raise ExtractorError(error, expected=True) | 
					
						
							|  |  |  |             raise ExtractorError('Unable to find stream URL') | 
					
						
							| 
									
										
										
										
											2015-10-06 22:28:58 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         formats = self._extract_m3u8_formats(m3u8_url, video_id, ext='mp4') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': self._live_title(video_id), | 
					
						
							| 
									
										
										
										
											2015-10-11 20:35:22 +06:00
										 |  |  |             'thumbnail': 'https://cdn-s.highwebmedia.com/uHK3McUtGCG3SMFcd4ZJsRv8/roomimage/%s.jpg' % video_id, | 
					
						
							|  |  |  |             'age_limit': self._rta_search(webpage), | 
					
						
							| 
									
										
										
										
											2015-10-06 22:28:58 +01:00
										 |  |  |             'is_live': True, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |         } |