| 
									
										
										
										
											2014-05-19 23:28:21 +10:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2015-05-24 23:57:47 +06:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     int_or_none, | 
					
						
							|  |  |  |     float_or_none, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2014-05-19 23:28:21 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-11 11:15:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-19 23:28:21 +10:00
										 |  |  | class TenPlayIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'https?://(?:www\.)?ten(play)?\.com\.au/.+' | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://tenplay.com.au/ten-insider/extra/season-2013/tenplay-tv-your-way', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '2695695426001', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'title': 'TENplay: TV your way', | 
					
						
							|  |  |  |             'description': 'Welcome to a new TV experience. Enjoy a taste of the TENplay benefits.', | 
					
						
							|  |  |  |             'timestamp': 1380150606.889, | 
					
						
							|  |  |  |             'upload_date': '20130925', | 
					
						
							| 
									
										
										
										
											2014-07-11 11:15:35 +02:00
										 |  |  |             'uploader': 'TENplay', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             'skip_download': True,  # Requires rtmpdump | 
					
						
							| 
									
										
										
										
											2014-05-19 23:28:21 +10:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-11 11:15:35 +02:00
										 |  |  |     _video_fields = [ | 
					
						
							| 
									
										
										
										
											2016-02-14 15:37:17 +06:00
										 |  |  |         'id', 'name', 'shortDescription', 'longDescription', 'creationDate', | 
					
						
							|  |  |  |         'publishedDate', 'lastModifiedDate', 'customFields', 'videoStillURL', | 
					
						
							|  |  |  |         'thumbnailURL', 'referenceId', 'length', 'playsTotal', | 
					
						
							|  |  |  |         'playsTrailingWeek', 'renditions', 'captioning', 'startDate', 'endDate'] | 
					
						
							| 
									
										
										
										
											2014-05-19 23:28:21 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, url) | 
					
						
							| 
									
										
										
										
											2014-07-11 11:15:35 +02:00
										 |  |  |         video_id = self._html_search_regex( | 
					
						
							|  |  |  |             r'videoID: "(\d+?)"', webpage, 'video_id') | 
					
						
							|  |  |  |         api_token = self._html_search_regex( | 
					
						
							|  |  |  |             r'apiToken: "([a-zA-Z0-9-_\.]+?)"', webpage, 'api_token') | 
					
						
							|  |  |  |         title = self._html_search_regex( | 
					
						
							|  |  |  |             r'<meta property="og:title" content="\s*(.*?)\s*"\s*/?\s*>', | 
					
						
							|  |  |  |             webpage, 'title') | 
					
						
							| 
									
										
										
										
											2014-05-19 23:28:21 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |         json = self._download_json('https://api.brightcove.com/services/library?command=find_video_by_id&video_id=%s&token=%s&video_fields=%s' % (video_id, api_token, ','.join(self._video_fields)), title) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = [] | 
					
						
							|  |  |  |         for rendition in json['renditions']: | 
					
						
							|  |  |  |             url = rendition['remoteUrl'] or rendition['url'] | 
					
						
							|  |  |  |             protocol = 'rtmp' if url.startswith('rtmp') else 'http' | 
					
						
							|  |  |  |             ext = 'flv' if protocol == 'rtmp' else rendition['videoContainer'].lower() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if protocol == 'rtmp': | 
					
						
							|  |  |  |                 url = url.replace('&mp4:', '') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 23:57:47 +06:00
										 |  |  |                 tbr = int_or_none(rendition.get('encodingRate'), 1000) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-19 23:28:21 +10:00
										 |  |  |             formats.append({ | 
					
						
							| 
									
										
										
										
											2015-05-24 23:57:47 +06:00
										 |  |  |                 'format_id': '_'.join( | 
					
						
							|  |  |  |                     ['rtmp', rendition['videoContainer'].lower(), | 
					
						
							|  |  |  |                      rendition['videoCodec'].lower(), '%sk' % tbr]), | 
					
						
							|  |  |  |                 'width': int_or_none(rendition['frameWidth']), | 
					
						
							|  |  |  |                 'height': int_or_none(rendition['frameHeight']), | 
					
						
							|  |  |  |                 'tbr': tbr, | 
					
						
							|  |  |  |                 'filesize': int_or_none(rendition['size']), | 
					
						
							| 
									
										
										
										
											2014-05-19 23:28:21 +10:00
										 |  |  |                 'protocol': protocol, | 
					
						
							|  |  |  |                 'ext': ext, | 
					
						
							|  |  |  |                 'vcodec': rendition['videoCodec'].lower(), | 
					
						
							|  |  |  |                 'container': rendition['videoContainer'].lower(), | 
					
						
							| 
									
										
										
										
											2014-07-11 11:15:35 +02:00
										 |  |  |                 'url': url, | 
					
						
							|  |  |  |             }) | 
					
						
							| 
									
										
										
										
											2015-05-24 23:57:47 +06:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							| 
									
										
										
										
											2014-05-19 23:28:21 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'display_id': json['referenceId'], | 
					
						
							|  |  |  |             'title': json['name'], | 
					
						
							|  |  |  |             'description': json['shortDescription'] or json['longDescription'], | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |             'thumbnails': [{ | 
					
						
							|  |  |  |                 'url': json['videoStillURL'] | 
					
						
							|  |  |  |             }, { | 
					
						
							|  |  |  |                 'url': json['thumbnailURL'] | 
					
						
							|  |  |  |             }], | 
					
						
							|  |  |  |             'thumbnail': json['videoStillURL'], | 
					
						
							| 
									
										
										
										
											2015-05-24 23:57:47 +06:00
										 |  |  |             'duration': float_or_none(json.get('length'), 1000), | 
					
						
							|  |  |  |             'timestamp': float_or_none(json.get('creationDate'), 1000), | 
					
						
							|  |  |  |             'uploader': json.get('customFields', {}).get('production_company_distributor') or 'TENplay', | 
					
						
							|  |  |  |             'view_count': int_or_none(json.get('playsTotal')), | 
					
						
							| 
									
										
										
										
											2014-05-19 23:28:21 +10:00
										 |  |  |         } |