| 
									
										
										
										
											2017-02-09 23:07:43 +01:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2017-04-29 03:39:39 +07:00
										 |  |  | from ..compat import ( | 
					
						
							|  |  |  |     compat_HTTPError, | 
					
						
							|  |  |  |     compat_str, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2017-02-09 23:07:43 +01:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     extract_attributes, | 
					
						
							| 
									
										
										
										
											2017-04-29 03:39:39 +07:00
										 |  |  |     try_get, | 
					
						
							| 
									
										
										
										
											2017-02-09 23:07:43 +01:00
										 |  |  |     urlencode_postdata, | 
					
						
							|  |  |  |     ExtractorError, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TVPlayerIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'https?://(?:www\.)?tvplayer\.com/watch/(?P<id>[^/?#]+)' | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://tvplayer.com/watch/bbcone', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '89', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': r're:^BBC One [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             # m3u8 download | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         display_id = self._match_id(url) | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, display_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         current_channel = extract_attributes(self._search_regex( | 
					
						
							|  |  |  |             r'(<div[^>]+class="[^"]*current-channel[^"]*"[^>]*>)', | 
					
						
							|  |  |  |             webpage, 'channel element')) | 
					
						
							|  |  |  |         title = current_channel['data-name'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-29 03:39:39 +07:00
										 |  |  |         resource_id = current_channel['data-id'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-09 23:07:43 +01:00
										 |  |  |         token = self._search_regex( | 
					
						
							| 
									
										
										
										
											2017-04-29 03:39:39 +07:00
										 |  |  |             r'data-token=(["\'])(?P<token>(?!\1).+)\1', webpage, | 
					
						
							|  |  |  |             'token', group='token') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         context = self._download_json( | 
					
						
							|  |  |  |             'https://tvplayer.com/watch/context', display_id, | 
					
						
							|  |  |  |             'Downloading JSON context', query={ | 
					
						
							|  |  |  |                 'resource': resource_id, | 
					
						
							| 
									
										
										
										
											2017-06-06 00:13:57 +07:00
										 |  |  |                 'gen': token, | 
					
						
							| 
									
										
										
										
											2017-04-29 03:39:39 +07:00
										 |  |  |             }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         validate = context['validate'] | 
					
						
							|  |  |  |         platform = try_get( | 
					
						
							|  |  |  |             context, lambda x: x['platform']['key'], compat_str) or 'firefox' | 
					
						
							| 
									
										
										
										
											2017-02-09 23:07:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             response = self._download_json( | 
					
						
							|  |  |  |                 'http://api.tvplayer.com/api/v2/stream/live', | 
					
						
							| 
									
										
										
										
											2017-04-29 03:39:39 +07:00
										 |  |  |                 display_id, 'Downloading JSON stream', headers={ | 
					
						
							| 
									
										
										
										
											2017-02-09 23:07:43 +01:00
										 |  |  |                     'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8', | 
					
						
							|  |  |  |                 }, data=urlencode_postdata({ | 
					
						
							| 
									
										
										
										
											2017-04-29 03:39:39 +07:00
										 |  |  |                     'id': resource_id, | 
					
						
							| 
									
										
										
										
											2017-02-09 23:07:43 +01:00
										 |  |  |                     'service': 1, | 
					
						
							|  |  |  |                     'platform': platform, | 
					
						
							|  |  |  |                     'validate': validate, | 
					
						
							|  |  |  |                 }))['tvplayer']['response'] | 
					
						
							|  |  |  |         except ExtractorError as e: | 
					
						
							|  |  |  |             if isinstance(e.cause, compat_HTTPError): | 
					
						
							|  |  |  |                 response = self._parse_json( | 
					
						
							|  |  |  |                     e.cause.read().decode(), resource_id)['tvplayer']['response'] | 
					
						
							|  |  |  |                 raise ExtractorError( | 
					
						
							|  |  |  |                     '%s said: %s' % (self.IE_NAME, response['error']), expected=True) | 
					
						
							|  |  |  |             raise | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-29 03:39:39 +07:00
										 |  |  |         formats = self._extract_m3u8_formats(response['stream'], display_id, 'mp4') | 
					
						
							| 
									
										
										
										
											2017-02-09 23:07:43 +01:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': resource_id, | 
					
						
							|  |  |  |             'display_id': display_id, | 
					
						
							|  |  |  |             'title': self._live_title(title), | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |             'is_live': True, | 
					
						
							|  |  |  |         } |