| 
									
										
										
										
											2016-01-31 03:08:34 +01:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2017-01-24 23:02:20 +07:00
										 |  |  | from ..compat import compat_str | 
					
						
							| 
									
										
										
										
											2016-02-07 21:11:59 +06:00
										 |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2017-01-24 22:55:49 +07:00
										 |  |  |     determine_ext, | 
					
						
							| 
									
										
										
										
											2016-02-07 21:11:59 +06:00
										 |  |  |     float_or_none, | 
					
						
							|  |  |  |     int_or_none, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2016-01-31 03:08:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class KonserthusetPlayIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2017-01-24 17:42:00 +01:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?(?:konserthusetplay|rspoplay)\.se/\?.*\bm=(?P<id>[^&]+)' | 
					
						
							|  |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2016-01-31 03:08:34 +01:00
										 |  |  |         'url': 'http://www.konserthusetplay.se/?m=CKDDnlCY-dhWAAqiMERd-A', | 
					
						
							| 
									
										
										
										
											2017-01-24 17:42:00 +01:00
										 |  |  |         'md5': 'e3fd47bf44e864bd23c08e487abe1967', | 
					
						
							| 
									
										
										
										
											2016-01-31 03:08:34 +01:00
										 |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'CKDDnlCY-dhWAAqiMERd-A', | 
					
						
							| 
									
										
										
										
											2017-01-24 17:42:00 +01:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2016-01-31 03:08:34 +01:00
										 |  |  |             'title': 'Orkesterns instrument: Valthornen', | 
					
						
							|  |  |  |             'description': 'md5:f10e1f0030202020396a4d712d2fa827', | 
					
						
							| 
									
										
										
										
											2016-02-07 21:11:59 +06:00
										 |  |  |             'thumbnail': 're:^https?://.*$', | 
					
						
							| 
									
										
										
										
											2017-01-24 17:42:00 +01:00
										 |  |  |             'duration': 398.76, | 
					
						
							| 
									
										
										
										
											2016-02-07 21:11:59 +06:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2017-01-24 17:42:00 +01:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://rspoplay.se/?m=elWuEH34SMKvaO4wO_cHBw', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }] | 
					
						
							| 
									
										
										
										
											2016-01-31 03:08:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2016-02-07 21:11:59 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-31 03:08:34 +01:00
										 |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							| 
									
										
										
										
											2016-02-07 21:11:59 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |         e = self._search_regex( | 
					
						
							|  |  |  |             r'https?://csp\.picsearch\.com/rest\?.*\be=(.+?)[&"\']', webpage, 'e') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         rest = self._download_json( | 
					
						
							|  |  |  |             'http://csp.picsearch.com/rest?e=%s&containerId=mediaplayer&i=object' % e, | 
					
						
							|  |  |  |             video_id, transform_source=lambda s: s[s.index('{'):s.rindex('}') + 1]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         media = rest['media'] | 
					
						
							|  |  |  |         player_config = media['playerconfig'] | 
					
						
							|  |  |  |         playlist = player_config['playlist'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 22:55:49 +07:00
										 |  |  |         source = next(f for f in playlist if f.get('bitrates') or f.get('provider')) | 
					
						
							| 
									
										
										
										
											2016-02-07 21:11:59 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |         FORMAT_ID_REGEX = r'_([^_]+)_h264m\.mp4' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 22:55:49 +07:00
										 |  |  |         m3u8_url = source.get('url') | 
					
						
							|  |  |  |         if m3u8_url and determine_ext(m3u8_url) == 'm3u8': | 
					
						
							|  |  |  |             formats.extend(self._extract_m3u8_formats( | 
					
						
							|  |  |  |                 m3u8_url, video_id, 'mp4', entry_protocol='m3u8_native', | 
					
						
							|  |  |  |                 m3u8_id='hls', fatal=False)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-07 21:11:59 +06:00
										 |  |  |         fallback_url = source.get('fallbackUrl') | 
					
						
							|  |  |  |         fallback_format_id = None | 
					
						
							|  |  |  |         if fallback_url: | 
					
						
							|  |  |  |             fallback_format_id = self._search_regex( | 
					
						
							|  |  |  |                 FORMAT_ID_REGEX, fallback_url, 'format id', default=None) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-07 21:18:32 +06:00
										 |  |  |         connection_url = (player_config.get('rtmp', {}).get( | 
					
						
							|  |  |  |             'netConnectionUrl') or player_config.get( | 
					
						
							|  |  |  |             'plugins', {}).get('bwcheck', {}).get('netConnectionUrl')) | 
					
						
							| 
									
										
										
										
											2016-02-07 21:11:59 +06:00
										 |  |  |         if connection_url: | 
					
						
							|  |  |  |             for f in source['bitrates']: | 
					
						
							|  |  |  |                 video_url = f.get('url') | 
					
						
							|  |  |  |                 if not video_url: | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 format_id = self._search_regex( | 
					
						
							|  |  |  |                     FORMAT_ID_REGEX, video_url, 'format id', default=None) | 
					
						
							|  |  |  |                 f_common = { | 
					
						
							|  |  |  |                     'vbr': int_or_none(f.get('bitrate')), | 
					
						
							|  |  |  |                     'width': int_or_none(f.get('width')), | 
					
						
							|  |  |  |                     'height': int_or_none(f.get('height')), | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 f = f_common.copy() | 
					
						
							|  |  |  |                 f.update({ | 
					
						
							|  |  |  |                     'url': connection_url, | 
					
						
							|  |  |  |                     'play_path': video_url, | 
					
						
							|  |  |  |                     'format_id': 'rtmp-%s' % format_id if format_id else 'rtmp', | 
					
						
							|  |  |  |                     'ext': 'flv', | 
					
						
							|  |  |  |                 }) | 
					
						
							|  |  |  |                 formats.append(f) | 
					
						
							|  |  |  |                 if format_id and format_id == fallback_format_id: | 
					
						
							|  |  |  |                     f = f_common.copy() | 
					
						
							|  |  |  |                     f.update({ | 
					
						
							|  |  |  |                         'url': fallback_url, | 
					
						
							|  |  |  |                         'format_id': 'http-%s' % format_id if format_id else 'http', | 
					
						
							|  |  |  |                     }) | 
					
						
							|  |  |  |                     formats.append(f) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if not formats and fallback_url: | 
					
						
							|  |  |  |             formats.append({ | 
					
						
							|  |  |  |                 'url': fallback_url, | 
					
						
							|  |  |  |             }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         title = player_config.get('title') or media['title'] | 
					
						
							|  |  |  |         description = player_config.get('mediaInfo', {}).get('description') | 
					
						
							|  |  |  |         thumbnail = media.get('image') | 
					
						
							|  |  |  |         duration = float_or_none(media.get('duration'), 1000) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 23:02:20 +07:00
										 |  |  |         subtitles = {} | 
					
						
							|  |  |  |         captions = source.get('captionsAvailableLanguages') | 
					
						
							|  |  |  |         if isinstance(captions, dict): | 
					
						
							|  |  |  |             for lang, subtitle_url in captions.items(): | 
					
						
							|  |  |  |                 if lang != 'none' and isinstance(subtitle_url, compat_str): | 
					
						
							|  |  |  |                     subtitles.setdefault(lang, []).append({'url': subtitle_url}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-31 03:08:34 +01:00
										 |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							|  |  |  |             'description': description, | 
					
						
							| 
									
										
										
										
											2016-02-07 21:11:59 +06:00
										 |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'duration': duration, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2017-01-24 23:02:20 +07:00
										 |  |  |             'subtitles': subtitles, | 
					
						
							| 
									
										
										
										
											2016-01-31 03:08:34 +01:00
										 |  |  |         } |