| 
									
										
										
										
											2018-10-27 03:40:44 +09:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-03 00:27:36 +07:00
										 |  |  | class TwitCastingIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'https?://(?:[^/]+\.)?twitcasting\.tv/(?P<uploader_id>[^/]+)/movie/(?P<id>\d+)' | 
					
						
							| 
									
										
										
										
											2018-10-27 03:40:44 +09:00
										 |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'https://twitcasting.tv/ivetesangalo/movie/2357609', | 
					
						
							|  |  |  |         'md5': '745243cad58c4681dc752490f7540d7f', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '2357609', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'Recorded Live #2357609', | 
					
						
							|  |  |  |             'uploader_id': 'ivetesangalo', | 
					
						
							|  |  |  |             'description': "Moi! I'm live on TwitCasting from my iPhone.", | 
					
						
							|  |  |  |             'thumbnail': r're:^https?://.*\.jpg$', | 
					
						
							| 
									
										
										
										
											2018-11-03 00:27:36 +07:00
										 |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2018-10-27 03:40:44 +09:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							| 
									
										
										
										
											2018-11-03 00:27:36 +07:00
										 |  |  |         video_id = mobj.group('id') | 
					
						
							| 
									
										
										
										
											2018-10-27 03:40:44 +09:00
										 |  |  |         uploader_id = mobj.group('uploader_id') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-03 00:27:36 +07:00
										 |  |  |         title = self._html_search_regex( | 
					
						
							|  |  |  |             r'(?s)<[^>]+id=["\']movietitle[^>]+>(.+?)</', | 
					
						
							|  |  |  |             webpage, 'title', default=None) or self._html_search_meta( | 
					
						
							|  |  |  |             'twitter:title', webpage, fatal=True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m3u8_url = self._search_regex( | 
					
						
							|  |  |  |             (r'data-movie-url=(["\'])(?P<url>(?:(?!\1).)+)\1', | 
					
						
							|  |  |  |              r'(["\'])(?P<url>http.+?\.m3u8.*?)\1'), | 
					
						
							|  |  |  |             webpage, 'm3u8 url', group='url') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = self._extract_m3u8_formats( | 
					
						
							|  |  |  |             m3u8_url, video_id, ext='mp4', entry_protocol='m3u8_native', | 
					
						
							|  |  |  |             m3u8_id='hls') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-27 03:40:44 +09:00
										 |  |  |         thumbnail = self._og_search_thumbnail(webpage) | 
					
						
							| 
									
										
										
										
											2018-11-03 00:27:36 +07:00
										 |  |  |         description = self._og_search_description( | 
					
						
							|  |  |  |             webpage, default=None) or self._html_search_meta( | 
					
						
							|  |  |  |             'twitter:description', webpage) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							| 
									
										
										
										
											2018-10-27 03:40:44 +09:00
										 |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							|  |  |  |             'description': description, | 
					
						
							|  |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'uploader_id': uploader_id, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |         } |