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.

133 lines
5.2 KiB

9 years ago
9 years ago
9 years ago
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. int_or_none,
  6. parse_duration,
  7. )
  8. class RtlNlIE(InfoExtractor):
  9. IE_NAME = 'rtl.nl'
  10. IE_DESC = 'rtl.nl and rtlxl.nl'
  11. _VALID_URL = r'''(?x)
  12. https?://(?:www\.)?
  13. (?:
  14. rtlxl\.nl/\#!/[^/]+/|
  15. rtl\.nl/system/videoplayer/(?:[^/]+/)+(?:video_)?embed\.html\b.+?\buuid=
  16. )
  17. (?P<id>[0-9a-f-]+)'''
  18. _TESTS = [{
  19. 'url': 'http://www.rtlxl.nl/#!/rtl-nieuws-132237/6e4203a6-0a5e-3596-8424-c599a59e0677',
  20. 'md5': 'cc16baa36a6c169391f0764fa6b16654',
  21. 'info_dict': {
  22. 'id': '6e4203a6-0a5e-3596-8424-c599a59e0677',
  23. 'ext': 'mp4',
  24. 'title': 'RTL Nieuws - Laat',
  25. 'description': 'md5:6b61f66510c8889923b11f2778c72dc5',
  26. 'timestamp': 1408051800,
  27. 'upload_date': '20140814',
  28. 'duration': 576.880,
  29. },
  30. }, {
  31. 'url': 'http://www.rtl.nl/system/videoplayer/derden/rtlnieuws/video_embed.html#uuid=84ae5571-ac25-4225-ae0c-ef8d9efb2aed/autoplay=false',
  32. 'md5': 'dea7474214af1271d91ef332fb8be7ea',
  33. 'info_dict': {
  34. 'id': '84ae5571-ac25-4225-ae0c-ef8d9efb2aed',
  35. 'ext': 'mp4',
  36. 'timestamp': 1424039400,
  37. 'title': 'RTL Nieuws - Nieuwe beelden Kopenhagen: chaos direct na aanslag',
  38. 'thumbnail': 're:^https?://screenshots\.rtl\.nl/system/thumb/sz=[0-9]+x[0-9]+/uuid=84ae5571-ac25-4225-ae0c-ef8d9efb2aed$',
  39. 'upload_date': '20150215',
  40. 'description': 'Er zijn nieuwe beelden vrijgegeven die vlak na de aanslag in Kopenhagen zijn gemaakt. Op de video is goed te zien hoe omstanders zich bekommeren om één van de slachtoffers, terwijl de eerste agenten ter plaatse komen.',
  41. }
  42. }, {
  43. # empty synopsis and missing episodes (see https://github.com/rg3/youtube-dl/issues/6275)
  44. 'url': 'http://www.rtl.nl/system/videoplayer/derden/rtlnieuws/video_embed.html#uuid=f536aac0-1dc3-4314-920e-3bd1c5b3811a/autoplay=false',
  45. 'info_dict': {
  46. 'id': 'f536aac0-1dc3-4314-920e-3bd1c5b3811a',
  47. 'ext': 'mp4',
  48. 'title': 'RTL Nieuws - Meer beelden van overval juwelier',
  49. 'thumbnail': 're:^https?://screenshots\.rtl\.nl/system/thumb/sz=[0-9]+x[0-9]+/uuid=f536aac0-1dc3-4314-920e-3bd1c5b3811a$',
  50. 'timestamp': 1437233400,
  51. 'upload_date': '20150718',
  52. 'duration': 30.474,
  53. },
  54. 'params': {
  55. 'skip_download': True,
  56. },
  57. }, {
  58. # encrypted m3u8 streams, georestricted
  59. 'url': 'http://www.rtlxl.nl/#!/afl-2-257632/52a74543-c504-4cde-8aa8-ec66fe8d68a7',
  60. 'only_matching': True,
  61. }, {
  62. 'url': 'http://www.rtl.nl/system/videoplayer/derden/embed.html#!/uuid=bb0353b0-d6a4-1dad-90e9-18fe75b8d1f0',
  63. 'only_matching': True,
  64. }]
  65. def _real_extract(self, url):
  66. uuid = self._match_id(url)
  67. info = self._download_json(
  68. 'http://www.rtl.nl/system/s4m/vfd/version=2/uuid=%s/fmt=adaptive/' % uuid,
  69. uuid)
  70. material = info['material'][0]
  71. title = info['abstracts'][0]['name']
  72. subtitle = material.get('title')
  73. if subtitle:
  74. title += ' - %s' % subtitle
  75. description = material.get('synopsis')
  76. meta = info.get('meta', {})
  77. # Use unencrypted m3u8 streams (See https://github.com/rg3/youtube-dl/issues/4118)
  78. # NB: nowadays, recent ffmpeg and avconv can handle these encrypted streams, so
  79. # this adaptive -> flash workaround is not required in general, but it also
  80. # allows bypassing georestriction therefore is retained for now.
  81. videopath = material['videopath'].replace('/adaptive/', '/flash/')
  82. m3u8_url = meta.get('videohost', 'http://manifest.us.rtl.nl') + videopath
  83. formats = self._extract_m3u8_formats(m3u8_url, uuid, ext='mp4')
  84. video_urlpart = videopath.split('/flash/')[1][:-5]
  85. PG_URL_TEMPLATE = 'http://pg.us.rtl.nl/rtlxl/network/%s/progressive/%s.mp4'
  86. formats.extend([
  87. {
  88. 'url': PG_URL_TEMPLATE % ('a2m', video_urlpart),
  89. 'format_id': 'pg-sd',
  90. },
  91. {
  92. 'url': PG_URL_TEMPLATE % ('a3m', video_urlpart),
  93. 'format_id': 'pg-hd',
  94. 'quality': 0,
  95. }
  96. ])
  97. self._sort_formats(formats)
  98. thumbnails = []
  99. for p in ('poster_base_url', '"thumb_base_url"'):
  100. if not meta.get(p):
  101. continue
  102. thumbnails.append({
  103. 'url': self._proto_relative_url(meta[p] + uuid),
  104. 'width': int_or_none(self._search_regex(
  105. r'/sz=([0-9]+)', meta[p], 'thumbnail width', fatal=False)),
  106. 'height': int_or_none(self._search_regex(
  107. r'/sz=[0-9]+x([0-9]+)',
  108. meta[p], 'thumbnail height', fatal=False))
  109. })
  110. return {
  111. 'id': uuid,
  112. 'title': title,
  113. 'formats': formats,
  114. 'timestamp': material['original_date'],
  115. 'description': description,
  116. 'duration': parse_duration(material.get('duration')),
  117. 'thumbnails': thumbnails,
  118. }