| 
									
										
										
										
											2015-10-15 23:27:46 +01:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-21 04:24:58 +01:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:27:46 +01:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2016-04-10 22:47:38 +06:00
										 |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2016-05-21 13:38:01 +08:00
										 |  |  |     determine_ext, | 
					
						
							| 
									
										
										
										
											2016-04-10 22:47:38 +06:00
										 |  |  |     float_or_none, | 
					
						
							|  |  |  |     int_or_none, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2015-10-15 23:27:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-26 14:13:00 +08:00
										 |  |  | class JWPlatformBaseIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2016-05-21 13:38:01 +08:00
										 |  |  |     def _parse_jwplayer_data(self, jwplayer_data, video_id, require_title=True, m3u8_id=None, rtmp_params=None): | 
					
						
							| 
									
										
										
										
											2016-02-26 14:13:00 +08:00
										 |  |  |         video_data = jwplayer_data['playlist'][0] | 
					
						
							| 
									
										
										
										
											2015-10-15 23:27:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         formats = [] | 
					
						
							|  |  |  |         for source in video_data['sources']: | 
					
						
							|  |  |  |             source_url = self._proto_relative_url(source['file']) | 
					
						
							|  |  |  |             source_type = source.get('type') or '' | 
					
						
							| 
									
										
										
										
											2016-05-21 13:38:01 +08:00
										 |  |  |             if source_type in ('application/vnd.apple.mpegurl', 'hls') or determine_ext(source_url) == 'm3u8': | 
					
						
							| 
									
										
										
										
											2015-12-29 00:58:24 +06:00
										 |  |  |                 formats.extend(self._extract_m3u8_formats( | 
					
						
							| 
									
										
										
										
											2016-05-21 13:38:01 +08:00
										 |  |  |                     source_url, video_id, 'mp4', 'm3u8_native', m3u8_id=m3u8_id, fatal=False)) | 
					
						
							| 
									
										
										
										
											2015-10-15 23:27:46 +01:00
										 |  |  |             elif source_type.startswith('audio'): | 
					
						
							|  |  |  |                 formats.append({ | 
					
						
							|  |  |  |                     'url': source_url, | 
					
						
							|  |  |  |                     'vcodec': 'none', | 
					
						
							|  |  |  |                 }) | 
					
						
							|  |  |  |             else: | 
					
						
							| 
									
										
										
										
											2016-05-21 13:38:01 +08:00
										 |  |  |                 a_format = { | 
					
						
							| 
									
										
										
										
											2015-10-15 23:27:46 +01:00
										 |  |  |                     'url': source_url, | 
					
						
							|  |  |  |                     'width': int_or_none(source.get('width')), | 
					
						
							|  |  |  |                     'height': int_or_none(source.get('height')), | 
					
						
							| 
									
										
										
										
											2016-05-21 13:38:01 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 if source_url.startswith('rtmp'): | 
					
						
							| 
									
										
										
										
											2016-05-21 13:50:38 +08:00
										 |  |  |                     a_format['ext'] = 'flv', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-21 13:38:01 +08:00
										 |  |  |                     # See com/longtailvideo/jwplayer/media/RTMPMediaProvider.as | 
					
						
							|  |  |  |                     # of jwplayer.flash.swf | 
					
						
							| 
									
										
										
										
											2016-05-21 13:50:38 +08:00
										 |  |  |                     rtmp_url_parts = re.split( | 
					
						
							| 
									
										
										
										
											2016-05-21 13:38:01 +08:00
										 |  |  |                         r'((?:mp4|mp3|flv):)', source_url, 1) | 
					
						
							| 
									
										
										
										
											2016-05-21 13:50:38 +08:00
										 |  |  |                     if len(rtmp_url_parts) == 3: | 
					
						
							|  |  |  |                         rtmp_url, prefix, play_path = rtmp_url_parts | 
					
						
							|  |  |  |                         a_format.update({ | 
					
						
							|  |  |  |                             'url': rtmp_url, | 
					
						
							|  |  |  |                             'play_path': prefix + play_path, | 
					
						
							|  |  |  |                         }) | 
					
						
							| 
									
										
										
										
											2016-05-21 13:38:01 +08:00
										 |  |  |                     if rtmp_params: | 
					
						
							|  |  |  |                         a_format.update(rtmp_params) | 
					
						
							|  |  |  |                 formats.append(a_format) | 
					
						
							| 
									
										
										
										
											2015-10-15 23:27:46 +01:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-10 22:55:07 +06:00
										 |  |  |         subtitles = {} | 
					
						
							|  |  |  |         tracks = video_data.get('tracks') | 
					
						
							|  |  |  |         if tracks and isinstance(tracks, list): | 
					
						
							|  |  |  |             for track in tracks: | 
					
						
							|  |  |  |                 if track.get('file') and track.get('kind') == 'captions': | 
					
						
							|  |  |  |                     subtitles.setdefault(track.get('label') or 'en', []).append({ | 
					
						
							|  |  |  |                         'url': self._proto_relative_url(track['file']) | 
					
						
							|  |  |  |                     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:27:46 +01:00
										 |  |  |         return { | 
					
						
							| 
									
										
										
										
											2015-12-21 04:24:58 +01:00
										 |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2016-02-26 14:26:07 +08:00
										 |  |  |             'title': video_data['title'] if require_title else video_data.get('title'), | 
					
						
							| 
									
										
										
										
											2015-10-15 23:27:46 +01:00
										 |  |  |             'description': video_data.get('description'), | 
					
						
							|  |  |  |             'thumbnail': self._proto_relative_url(video_data.get('image')), | 
					
						
							|  |  |  |             'timestamp': int_or_none(video_data.get('pubdate')), | 
					
						
							| 
									
										
										
										
											2016-04-10 22:47:38 +06:00
										 |  |  |             'duration': float_or_none(jwplayer_data.get('duration')), | 
					
						
							| 
									
										
										
										
											2015-10-15 23:27:46 +01:00
										 |  |  |             'subtitles': subtitles, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-02-26 14:13:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class JWPlatformIE(JWPlatformBaseIE): | 
					
						
							|  |  |  |     _VALID_URL = r'(?:https?://content\.jwplatform\.com/(?:feeds|players|jw6)/|jwplatform:)(?P<id>[a-zA-Z0-9]{8})' | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://content.jwplatform.com/players/nPripu9l-ALJ3XQCI.js', | 
					
						
							|  |  |  |         'md5': 'fa8899fa601eb7c83a64e9d568bdf325', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'nPripu9l', | 
					
						
							|  |  |  |             'ext': 'mov', | 
					
						
							|  |  |  |             'title': 'Big Buck Bunny Trailer', | 
					
						
							|  |  |  |             'description': 'Big Buck Bunny is a short animated film by the Blender Institute. It is made using free and open source software.', | 
					
						
							|  |  |  |             'upload_date': '20081127', | 
					
						
							|  |  |  |             'timestamp': 1227796140, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @staticmethod | 
					
						
							|  |  |  |     def _extract_url(webpage): | 
					
						
							|  |  |  |         mobj = re.search( | 
					
						
							|  |  |  |             r'<script[^>]+?src=["\'](?P<url>(?:https?:)?//content.jwplatform.com/players/[a-zA-Z0-9]{8})', | 
					
						
							|  |  |  |             webpage) | 
					
						
							|  |  |  |         if mobj: | 
					
						
							|  |  |  |             return mobj.group('url') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  |         json_data = self._download_json('http://content.jwplatform.com/feeds/%s.json' % video_id, video_id) | 
					
						
							|  |  |  |         return self._parse_jwplayer_data(json_data, video_id) |