|
|
@ -16,10 +16,11 @@ class DctpTvIE(InfoExtractor):
|
|
|
|
_TESTS = [{
|
|
|
|
_TESTS = [{
|
|
|
|
# 4x3
|
|
|
|
# 4x3
|
|
|
|
'url': 'http://www.dctp.tv/filme/videoinstallation-fuer-eine-kaufhausfassade/',
|
|
|
|
'url': 'http://www.dctp.tv/filme/videoinstallation-fuer-eine-kaufhausfassade/',
|
|
|
|
|
|
|
|
'md5': '3ffbd1556c3fe210724d7088fad723e3',
|
|
|
|
'info_dict': {
|
|
|
|
'info_dict': {
|
|
|
|
'id': '95eaa4f33dad413aa17b4ee613cccc6c',
|
|
|
|
'id': '95eaa4f33dad413aa17b4ee613cccc6c',
|
|
|
|
'display_id': 'videoinstallation-fuer-eine-kaufhausfassade',
|
|
|
|
'display_id': 'videoinstallation-fuer-eine-kaufhausfassade',
|
|
|
|
'ext': 'flv',
|
|
|
|
'ext': 'm4v',
|
|
|
|
'title': 'Videoinstallation für eine Kaufhausfassade',
|
|
|
|
'title': 'Videoinstallation für eine Kaufhausfassade',
|
|
|
|
'description': 'Kurzfilm',
|
|
|
|
'description': 'Kurzfilm',
|
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
|
@ -27,10 +28,6 @@ class DctpTvIE(InfoExtractor):
|
|
|
|
'timestamp': 1302172322,
|
|
|
|
'timestamp': 1302172322,
|
|
|
|
'upload_date': '20110407',
|
|
|
|
'upload_date': '20110407',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
|
|
|
|
# rtmp download
|
|
|
|
|
|
|
|
'skip_download': True,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
}, {
|
|
|
|
}, {
|
|
|
|
# 16x9
|
|
|
|
# 16x9
|
|
|
|
'url': 'http://www.dctp.tv/filme/sind-youtuber-die-besseren-lehrer/',
|
|
|
|
'url': 'http://www.dctp.tv/filme/sind-youtuber-die-besseren-lehrer/',
|
|
|
@ -59,33 +56,26 @@ class DctpTvIE(InfoExtractor):
|
|
|
|
|
|
|
|
|
|
|
|
uuid = media['uuid']
|
|
|
|
uuid = media['uuid']
|
|
|
|
title = media['title']
|
|
|
|
title = media['title']
|
|
|
|
ratio = '16x9' if media.get('is_wide') else '4x3'
|
|
|
|
is_wide = media.get('is_wide')
|
|
|
|
play_path = 'mp4:%s_dctp_0500_%s.m4v' % (uuid, ratio)
|
|
|
|
formats = []
|
|
|
|
|
|
|
|
|
|
|
|
servers = self._download_json(
|
|
|
|
def add_formats(suffix):
|
|
|
|
'http://www.dctp.tv/streaming_servers/', display_id,
|
|
|
|
templ = 'https://%%s/%s_dctp_%s.m4v' % (uuid, suffix)
|
|
|
|
note='Downloading server list JSON', fatal=False)
|
|
|
|
formats.extend([{
|
|
|
|
|
|
|
|
'format_id': 'hls-' + suffix,
|
|
|
|
if servers:
|
|
|
|
'url': templ % 'cdn-segments.dctp.tv' + '/playlist.m3u8',
|
|
|
|
endpoint = next(
|
|
|
|
'protocol': 'm3u8_native',
|
|
|
|
server['endpoint']
|
|
|
|
}, {
|
|
|
|
for server in servers
|
|
|
|
'format_id': 's3-' + suffix,
|
|
|
|
if url_or_none(server.get('endpoint'))
|
|
|
|
'url': templ % 'completed-media.s3.amazonaws.com',
|
|
|
|
and 'cloudfront' in server['endpoint'])
|
|
|
|
}, {
|
|
|
|
else:
|
|
|
|
'format_id': 'http-' + suffix,
|
|
|
|
endpoint = 'rtmpe://s2pqqn4u96e4j8.cloudfront.net/cfx/st/'
|
|
|
|
'url': templ % 'cdn-media.dctp.tv',
|
|
|
|
|
|
|
|
}])
|
|
|
|
app = self._search_regex(
|
|
|
|
|
|
|
|
r'^rtmpe?://[^/]+/(?P<app>.*)$', endpoint, 'app')
|
|
|
|
add_formats('0500_' + ('16x9' if is_wide else '4x3'))
|
|
|
|
|
|
|
|
if is_wide:
|
|
|
|
formats = [{
|
|
|
|
add_formats('720p')
|
|
|
|
'url': endpoint,
|
|
|
|
|
|
|
|
'app': app,
|
|
|
|
|
|
|
|
'play_path': play_path,
|
|
|
|
|
|
|
|
'page_url': url,
|
|
|
|
|
|
|
|
'player_url': 'http://svm-prod-dctptv-static.s3.amazonaws.com/dctptv-relaunch2012-110.swf',
|
|
|
|
|
|
|
|
'ext': 'flv',
|
|
|
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
thumbnails = []
|
|
|
|
thumbnails = []
|
|
|
|
images = media.get('images')
|
|
|
|
images = media.get('images')
|
|
|
|