collegerama.py 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. from __future__ import unicode_literals
  2. import json
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. float_or_none,
  6. int_or_none,
  7. sanitized_Request,
  8. )
  9. class CollegeRamaIE(InfoExtractor):
  10. _VALID_URL = r'https?://collegerama\.tudelft\.nl/Mediasite/Play/(?P<id>[\da-f]+)'
  11. _TESTS = [
  12. {
  13. 'url': 'https://collegerama.tudelft.nl/Mediasite/Play/585a43626e544bdd97aeb71a0ec907a01d',
  14. 'md5': '481fda1c11f67588c0d9d8fbdced4e39',
  15. 'info_dict': {
  16. 'id': '585a43626e544bdd97aeb71a0ec907a01d',
  17. 'ext': 'mp4',
  18. 'title': 'Een nieuwe wereld: waarden, bewustzijn en techniek van de mensheid 2.0.',
  19. 'description': '',
  20. 'thumbnail': 're:^https?://.*\.jpg$',
  21. 'duration': 7713.088,
  22. 'timestamp': 1413309600,
  23. 'upload_date': '20141014',
  24. },
  25. },
  26. {
  27. 'url': 'https://collegerama.tudelft.nl/Mediasite/Play/86a9ea9f53e149079fbdb4202b521ed21d?catalog=fd32fd35-6c99-466c-89d4-cd3c431bc8a4',
  28. 'md5': 'ef1fdded95bdf19b12c5999949419c92',
  29. 'info_dict': {
  30. 'id': '86a9ea9f53e149079fbdb4202b521ed21d',
  31. 'ext': 'wmv',
  32. 'title': '64ste Vakantiecursus: Afvalwater',
  33. 'description': 'md5:7fd774865cc69d972f542b157c328305',
  34. 'duration': 10853,
  35. 'timestamp': 1326446400,
  36. 'upload_date': '20120113',
  37. },
  38. },
  39. ]
  40. def _real_extract(self, url):
  41. video_id = self._match_id(url)
  42. player_options_request = {
  43. 'getPlayerOptionsRequest': {
  44. 'ResourceId': video_id,
  45. 'QueryString': '',
  46. }
  47. }
  48. request = sanitized_Request(
  49. 'http://collegerama.tudelft.nl/Mediasite/PlayerService/PlayerService.svc/json/GetPlayerOptions',
  50. json.dumps(player_options_request))
  51. request.add_header('Content-Type', 'application/json')
  52. player_options = self._download_json(request, video_id)
  53. presentation = player_options['d']['Presentation']
  54. title = presentation['Title']
  55. description = presentation.get('Description')
  56. thumbnail = None
  57. duration = float_or_none(presentation.get('Duration'), 1000)
  58. timestamp = int_or_none(presentation.get('UnixTime'), 1000)
  59. formats = []
  60. for stream in presentation['Streams']:
  61. for video in stream['VideoUrls']:
  62. thumbnail_url = stream.get('ThumbnailUrl')
  63. if thumbnail_url:
  64. thumbnail = 'http://collegerama.tudelft.nl' + thumbnail_url
  65. format_id = video['MediaType']
  66. if format_id == 'SS':
  67. continue
  68. formats.append({
  69. 'url': video['Location'],
  70. 'format_id': format_id,
  71. })
  72. self._sort_formats(formats)
  73. return {
  74. 'id': video_id,
  75. 'title': title,
  76. 'description': description,
  77. 'thumbnail': thumbnail,
  78. 'duration': duration,
  79. 'timestamp': timestamp,
  80. 'formats': formats,
  81. }