| 
									
										
										
										
											2016-10-01 15:22:48 +08:00
										 |  |  | # coding: utf-8 | 
					
						
							| 
									
										
										
										
											2015-01-28 08:21:04 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  | from ..compat import compat_str | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							|  |  |  |     float_or_none, | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |     int_or_none, | 
					
						
							|  |  |  |     unified_timestamp, | 
					
						
							| 
									
										
										
										
											2018-07-21 19:08:28 +07:00
										 |  |  |     url_or_none, | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2015-01-28 08:21:04 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-28 08:59:58 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-28 08:21:04 +01:00
										 |  |  | class DctpTvIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?dctp\.tv/(?:#/)?filme/(?P<id>[^/?#&]+)' | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |     _TESTS = [{ | 
					
						
							|  |  |  |         # 4x3 | 
					
						
							| 
									
										
										
										
											2015-01-28 08:59:58 +01:00
										 |  |  |         'url': 'http://www.dctp.tv/filme/videoinstallation-fuer-eine-kaufhausfassade/', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2016-10-01 15:22:48 +08:00
										 |  |  |             'id': '95eaa4f33dad413aa17b4ee613cccc6c', | 
					
						
							| 
									
										
										
										
											2015-01-30 00:35:53 +01:00
										 |  |  |             'display_id': 'videoinstallation-fuer-eine-kaufhausfassade', | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  |             'ext': 'flv', | 
					
						
							| 
									
										
										
										
											2016-10-01 15:22:48 +08:00
										 |  |  |             'title': 'Videoinstallation für eine Kaufhausfassade', | 
					
						
							|  |  |  |             'description': 'Kurzfilm', | 
					
						
							| 
									
										
										
										
											2017-01-02 20:08:07 +08:00
										 |  |  |             'thumbnail': r're:^https?://.*\.jpg$', | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  |             'duration': 71.24, | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |             'timestamp': 1302172322, | 
					
						
							|  |  |  |             'upload_date': '20110407', | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             # rtmp download | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							| 
									
										
										
										
											2015-02-11 22:10:33 +06:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         # 16x9 | 
					
						
							|  |  |  |         'url': 'http://www.dctp.tv/filme/sind-youtuber-die-besseren-lehrer/', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     _BASE_URL = 'http://dctp-ivms2-restapi.s3.amazonaws.com' | 
					
						
							| 
									
										
										
										
											2015-01-28 08:21:04 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  |         display_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2016-10-01 15:22:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |         version = self._download_json( | 
					
						
							|  |  |  |             '%s/version.json' % self._BASE_URL, display_id, | 
					
						
							|  |  |  |             'Downloading version JSON') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         restapi_base = '%s/%s/restapi' % ( | 
					
						
							|  |  |  |             self._BASE_URL, version['version_name']) | 
					
						
							| 
									
										
										
										
											2015-01-28 08:21:04 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |         info = self._download_json( | 
					
						
							|  |  |  |             '%s/slugs/%s.json' % (restapi_base, display_id), display_id, | 
					
						
							|  |  |  |             'Downloading video info JSON') | 
					
						
							| 
									
										
										
										
											2016-10-01 15:22:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |         media = self._download_json( | 
					
						
							|  |  |  |             '%s/media/%s.json' % (restapi_base, compat_str(info['object_id'])), | 
					
						
							|  |  |  |             display_id, 'Downloading media JSON') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         uuid = media['uuid'] | 
					
						
							|  |  |  |         title = media['title'] | 
					
						
							|  |  |  |         ratio = '16x9' if media.get('is_wide') else '4x3' | 
					
						
							|  |  |  |         play_path = 'mp4:%s_dctp_0500_%s.m4v' % (uuid, ratio) | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         servers = self._download_json( | 
					
						
							|  |  |  |             'http://www.dctp.tv/streaming_servers/', display_id, | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |             note='Downloading server list JSON', fatal=False) | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if servers: | 
					
						
							|  |  |  |             endpoint = next( | 
					
						
							|  |  |  |                 server['endpoint'] | 
					
						
							|  |  |  |                 for server in servers | 
					
						
							| 
									
										
										
										
											2018-07-21 19:08:28 +07:00
										 |  |  |                 if url_or_none(server.get('endpoint')) and | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  |                 'cloudfront' in server['endpoint']) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             endpoint = 'rtmpe://s2pqqn4u96e4j8.cloudfront.net/cfx/st/' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         app = self._search_regex( | 
					
						
							|  |  |  |             r'^rtmpe?://[^/]+/(?P<app>.*)$', endpoint, 'app') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = [{ | 
					
						
							|  |  |  |             'url': endpoint, | 
					
						
							|  |  |  |             'app': app, | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |             'play_path': play_path, | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  |             'page_url': url, | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |             'player_url': 'http://svm-prod-dctptv-static.s3.amazonaws.com/dctptv-relaunch2012-110.swf', | 
					
						
							| 
									
										
										
										
											2017-10-28 22:58:01 +07:00
										 |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |         }] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |         thumbnails = [] | 
					
						
							|  |  |  |         images = media.get('images') | 
					
						
							|  |  |  |         if isinstance(images, list): | 
					
						
							|  |  |  |             for image in images: | 
					
						
							|  |  |  |                 if not isinstance(image, dict): | 
					
						
							|  |  |  |                     continue | 
					
						
							| 
									
										
										
										
											2018-07-21 19:08:28 +07:00
										 |  |  |                 image_url = url_or_none(image.get('url')) | 
					
						
							|  |  |  |                 if not image_url: | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |                     continue | 
					
						
							|  |  |  |                 thumbnails.append({ | 
					
						
							|  |  |  |                     'url': image_url, | 
					
						
							|  |  |  |                     'width': int_or_none(image.get('width')), | 
					
						
							|  |  |  |                     'height': int_or_none(image.get('height')), | 
					
						
							|  |  |  |                 }) | 
					
						
							| 
									
										
										
										
											2015-01-28 08:21:04 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |             'id': uuid, | 
					
						
							|  |  |  |             'display_id': display_id, | 
					
						
							| 
									
										
										
										
											2015-01-28 08:21:04 +01:00
										 |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2018-06-29 00:35:05 +07:00
										 |  |  |             'alt_title': media.get('subtitle'), | 
					
						
							|  |  |  |             'description': media.get('description') or media.get('teaser'), | 
					
						
							|  |  |  |             'timestamp': unified_timestamp(media.get('created')), | 
					
						
							|  |  |  |             'duration': float_or_none(media.get('duration_in_ms'), scale=1000), | 
					
						
							|  |  |  |             'thumbnails': thumbnails, | 
					
						
							| 
									
										
										
										
											2016-10-01 15:22:48 +08:00
										 |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2015-01-28 08:21:04 +01:00
										 |  |  |         } |