2
0

srgssr.py 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. ExtractorError,
  7. parse_iso8601,
  8. qualities,
  9. )
  10. class SRGSSRIE(InfoExtractor):
  11. _VALID_URL = r'(?:https?://tp\.srgssr\.ch/p(?:/[^/]+)+\?urn=urn|srgssr):(?P<bu>srf|rts|rsi|rtr|swi):(?:[^:]+:)?(?P<type>video|audio):(?P<id>[0-9a-f\-]{36}|\d+)'
  12. _ERRORS = {
  13. 'AGERATING12': 'To protect children under the age of 12, this video is only available between 8 p.m. and 6 a.m.',
  14. 'AGERATING18': 'To protect children under the age of 18, this video is only available between 11 p.m. and 5 a.m.',
  15. # 'ENDDATE': 'For legal reasons, this video was only available for a specified period of time.',
  16. 'GEOBLOCK': 'For legal reasons, this video is only available in Switzerland.',
  17. 'LEGAL': 'The video cannot be transmitted for legal reasons.',
  18. 'STARTDATE': 'This video is not yet available. Please try again later.',
  19. }
  20. def _real_extract(self, url):
  21. bu, media_type, media_id = re.match(self._VALID_URL, url).groups()
  22. media_data = self._download_json(
  23. 'http://il.srgssr.ch/integrationlayer/1.0/ue/%s/%s/play/%s.json' % (bu, media_type, media_id),
  24. media_id)[media_type.capitalize()]
  25. if media_data.get('block') and media_data['block'] in self._ERRORS:
  26. raise ExtractorError(
  27. '%s said: %s' % (
  28. self.IE_NAME,
  29. self._ERRORS[media_data['block']]),
  30. expected=True)
  31. metadata = media_data['AssetMetadatas']['AssetMetadata'][0]
  32. title = metadata['title']
  33. description = metadata.get('description')
  34. created_date = media_data.get('createdDate') or metadata.get('createdDate')
  35. timestamp = parse_iso8601(created_date)
  36. thumbnails = []
  37. if 'Image' in media_data:
  38. for image in media_data['Image']['ImageRepresentations']['ImageRepresentation']:
  39. thumbnails.append({
  40. 'id': image.get('id'),
  41. 'url': image['url'],
  42. })
  43. preference = qualities(['LQ', 'MQ', 'SD', 'HQ', 'HD'])
  44. formats = []
  45. for source in media_data['Playlists']['Playlist']:
  46. assets = {}
  47. protocol = source.get('@protocol')
  48. if protocol in ('HTTP-HDS', 'HTTP-HLS'):
  49. for quality in source['url']:
  50. assets[quality['@quality']] = quality['text']
  51. asset_url = assets.get('HD') or assets.get('HQ') or assets.get('SD') or assets.get('MQ') or assets.get('LQ')
  52. if '.f4m' in asset_url:
  53. formats.extend(self._extract_f4m_formats(asset_url + '?hdcore=3.4.0', media_id, f4m_id='hds'))
  54. elif '.m3u8' in asset_url:
  55. formats.extend(self._extract_m3u8_formats(asset_url, media_id, m3u8_id='hls'))
  56. else:
  57. for asset in source['url']:
  58. asset_url = asset['text']
  59. ext = None
  60. if asset_url.startswith('rtmp'):
  61. ext = self._search_regex(r'([a-z0-9]+):[^/]+', asset_url, 'ext')
  62. formats.append({
  63. 'format_id': asset['@quality'],
  64. 'url': asset_url,
  65. 'preference': preference(asset['@quality']),
  66. 'ext': ext,
  67. })
  68. if 'Downloads' in media_data:
  69. for source in media_data['Downloads']['Download']:
  70. for asset in source['url']:
  71. formats.append({
  72. 'format_id': asset['@quality'],
  73. 'url': asset['text'],
  74. 'preference': preference(asset['@quality'])
  75. })
  76. self._sort_formats(formats)
  77. return {
  78. 'id': media_id,
  79. 'title': title,
  80. 'description': description,
  81. 'timestamp': timestamp,
  82. 'thumbnails': thumbnails,
  83. 'formats': formats,
  84. }
  85. class SRGSSRPlayIE(InfoExtractor):
  86. _VALID_URL = r'https?://(?:(?:www|play)\.)?(?P<bu>srf|rts|rsi|rtr|swissinfo)\.ch/play/(?:tv|radio)/[^/]+/(?P<type>video|audio)/[^?]+\?id=(?P<id>[0-9a-f\-]{36}|\d+)'
  87. _TESTS = [{
  88. 'url': 'http://www.srf.ch/play/tv/10vor10/video/snowden-beantragt-asyl-in-russland?id=28e1a57d-5b76-4399-8ab3-9097f071e6c5',
  89. 'md5': '4cd93523723beff51bb4bee974ee238d',
  90. 'info_dict': {
  91. 'id': '28e1a57d-5b76-4399-8ab3-9097f071e6c5',
  92. 'ext': 'm4v',
  93. 'upload_date': '20130701',
  94. 'title': 'Snowden beantragt Asyl in Russland',
  95. 'timestamp': 1372713995,
  96. }
  97. }, {
  98. # No Speichern (Save) button
  99. 'url': 'http://www.srf.ch/play/tv/top-gear/video/jaguar-xk120-shadow-und-tornado-dampflokomotive?id=677f5829-e473-4823-ac83-a1087fe97faa',
  100. 'md5': '0a274ce38fda48c53c01890651985bc6',
  101. 'info_dict': {
  102. 'id': '677f5829-e473-4823-ac83-a1087fe97faa',
  103. 'ext': 'flv',
  104. 'upload_date': '20130710',
  105. 'title': 'Jaguar XK120, Shadow und Tornado-Dampflokomotive',
  106. 'description': 'md5:88604432b60d5a38787f152dec89cd56',
  107. 'timestamp': 1373493600,
  108. },
  109. },{
  110. 'url': 'http://www.rtr.ch/play/radio/actualitad/audio/saira-tujetsch-tuttina-cuntinuar-cun-sedrun-muster-turissem?id=63cb0778-27f8-49af-9284-8c7a8c6d15fc',
  111. 'info_dict': {
  112. 'id': '63cb0778-27f8-49af-9284-8c7a8c6d15fc',
  113. 'ext': 'mp3',
  114. 'upload_date': '20151013',
  115. 'title': 'Saira: Tujetsch - tuttina cuntinuar cun Sedrun Mustér Turissem',
  116. 'timestamp': 1444750398,
  117. },
  118. 'params': {
  119. # rtmp download
  120. 'skip_download': True,
  121. },
  122. }]
  123. def _real_extract(self, url):
  124. bu, media_type, media_id = re.match(self._VALID_URL, url).groups()
  125. return self.url_result('srgssr:%s:%s:%s' % (bu[:3], media_type, media_id), 'SRGSSR')