youtube-dl/youtube_dl/extractor/dctp.py

62 lines
2.1 KiB
Python
Raw Normal View History

2015-01-28 07:21:04 +00:00
# encoding: utf-8
from __future__ import unicode_literals
from .common import InfoExtractor
2015-01-30 02:15:34 +00:00
from ..compat import compat_str
2015-01-28 07:21:04 +00:00
2015-01-28 07:59:58 +00:00
2015-01-28 07:21:04 +00:00
class DctpTvIE(InfoExtractor):
2016-09-08 11:29:05 +00:00
_VALID_URL = r'https?://(?:www\.)?dctp\.tv/(#/)?filme/(?P<id>.+?)/$'
2015-01-28 07:59:58 +00:00
_TEST = {
'url': 'http://www.dctp.tv/filme/videoinstallation-fuer-eine-kaufhausfassade/',
'info_dict': {
2015-01-29 23:35:53 +00:00
'id': '1324',
'display_id': 'videoinstallation-fuer-eine-kaufhausfassade',
2015-01-28 07:59:58 +00:00
'ext': 'flv',
2015-01-30 02:45:06 +00:00
'title': 'Videoinstallation für eine Kaufhausfassade'
2015-02-11 16:10:33 +00:00
},
'params': {
# rtmp download
'skip_download': True,
2015-01-28 07:59:58 +00:00
}
2015-01-30 02:45:06 +00:00
}
2015-01-28 07:21:04 +00:00
def _real_extract(self, url):
video_id = self._match_id(url)
base_url = 'http://dctp-ivms2-restapi.s3.amazonaws.com/'
2015-01-30 02:15:34 +00:00
version_json = self._download_json(
base_url + 'version.json',
video_id, note='Determining file version')
2015-01-28 07:21:04 +00:00
version = version_json['version_name']
info_json = self._download_json(
2015-01-30 02:15:34 +00:00
'{0}{1}/restapi/slugs/{2}.json'.format(base_url, version, video_id),
video_id, note='Fetching object ID')
object_id = compat_str(info_json['object_id'])
2015-01-28 07:21:04 +00:00
meta_json = self._download_json(
2015-01-30 02:15:34 +00:00
'{0}{1}/restapi/media/{2}.json'.format(base_url, version, object_id),
video_id, note='Downloading metadata')
2015-01-28 07:21:04 +00:00
uuid = meta_json['uuid']
title = meta_json['title']
wide = meta_json['is_wide']
if wide:
ratio = '16x9'
else:
ratio = '4x3'
2015-01-29 22:32:23 +00:00
play_path = 'mp4:{0}_dctp_0500_{1}.m4v'.format(uuid, ratio)
2015-01-28 07:21:04 +00:00
2015-01-30 02:15:34 +00:00
servers_json = self._download_json(
'http://www.dctp.tv/streaming_servers/',
video_id, note='Downloading server list')
2015-01-28 07:21:04 +00:00
url = servers_json[0]['endpoint']
return {
2015-01-29 22:34:56 +00:00
'id': object_id,
2015-01-28 07:21:04 +00:00
'title': title,
'format': 'rtmp',
'url': url,
'play_path': play_path,
'rtmp_real_time': True,
2015-01-29 22:34:56 +00:00
'ext': 'flv',
'display_id': video_id
2015-01-28 07:21:04 +00:00
}