You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
2.0 KiB

10 years ago
10 years ago
10 years ago
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..compat import compat_str
  5. class DctpTvIE(InfoExtractor):
  6. _VALID_URL = r'https?://www.dctp.tv/(#/)?filme/(?P<id>.+?)/$'
  7. _TEST = {
  8. 'url': 'http://www.dctp.tv/filme/videoinstallation-fuer-eine-kaufhausfassade/',
  9. 'info_dict': {
  10. 'id': '1324',
  11. 'display_id': 'videoinstallation-fuer-eine-kaufhausfassade',
  12. 'ext': 'flv',
  13. 'title': 'Videoinstallation für eine Kaufhausfassade'
  14. },
  15. 'params': {
  16. # rtmp download
  17. 'skip_download': True,
  18. }
  19. }
  20. def _real_extract(self, url):
  21. video_id = self._match_id(url)
  22. base_url = 'http://dctp-ivms2-restapi.s3.amazonaws.com/'
  23. version_json = self._download_json(
  24. base_url + 'version.json',
  25. video_id, note='Determining file version')
  26. version = version_json['version_name']
  27. info_json = self._download_json(
  28. '{0}{1}/restapi/slugs/{2}.json'.format(base_url, version, video_id),
  29. video_id, note='Fetching object ID')
  30. object_id = compat_str(info_json['object_id'])
  31. meta_json = self._download_json(
  32. '{0}{1}/restapi/media/{2}.json'.format(base_url, version, object_id),
  33. video_id, note='Downloading metadata')
  34. uuid = meta_json['uuid']
  35. title = meta_json['title']
  36. wide = meta_json['is_wide']
  37. if wide:
  38. ratio = '16x9'
  39. else:
  40. ratio = '4x3'
  41. play_path = 'mp4:{0}_dctp_0500_{1}.m4v'.format(uuid, ratio)
  42. servers_json = self._download_json(
  43. 'http://www.dctp.tv/streaming_servers/',
  44. video_id, note='Downloading server list')
  45. url = servers_json[0]['endpoint']
  46. return {
  47. 'id': object_id,
  48. 'title': title,
  49. 'format': 'rtmp',
  50. 'url': url,
  51. 'play_path': play_path,
  52. 'rtmp_real_time': True,
  53. 'ext': 'flv',
  54. 'display_id': video_id
  55. }