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.

104 lines
3.9 KiB

  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\#uuid=
  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. def _real_extract(self, url):
  44. uuid = self._match_id(url)
  45. info = self._download_json(
  46. 'http://www.rtl.nl/system/s4m/vfd/version=2/uuid=%s/fmt=flash/' % uuid,
  47. uuid)
  48. material = info['material'][0]
  49. progname = info['abstracts'][0]['name']
  50. subtitle = material['title'] or info['episodes'][0]['name']
  51. description = material.get('synopsis') or info['episodes'][0]['synopsis']
  52. # Use unencrypted m3u8 streams (See https://github.com/rg3/youtube-dl/issues/4118)
  53. videopath = material['videopath'].replace('.f4m', '.m3u8')
  54. m3u8_url = 'http://manifest.us.rtl.nl' + videopath
  55. formats = self._extract_m3u8_formats(m3u8_url, uuid, ext='mp4')
  56. video_urlpart = videopath.split('/flash/')[1][:-5]
  57. PG_URL_TEMPLATE = 'http://pg.us.rtl.nl/rtlxl/network/%s/progressive/%s.mp4'
  58. formats.extend([
  59. {
  60. 'url': PG_URL_TEMPLATE % ('a2m', video_urlpart),
  61. 'format_id': 'pg-sd',
  62. },
  63. {
  64. 'url': PG_URL_TEMPLATE % ('a3m', video_urlpart),
  65. 'format_id': 'pg-hd',
  66. 'quality': 0,
  67. }
  68. ])
  69. self._sort_formats(formats)
  70. thumbnails = []
  71. meta = info.get('meta', {})
  72. for p in ('poster_base_url', '"thumb_base_url"'):
  73. if not meta.get(p):
  74. continue
  75. thumbnails.append({
  76. 'url': self._proto_relative_url(meta[p] + uuid),
  77. 'width': int_or_none(self._search_regex(
  78. r'/sz=([0-9]+)', meta[p], 'thumbnail width', fatal=False)),
  79. 'height': int_or_none(self._search_regex(
  80. r'/sz=[0-9]+x([0-9]+)',
  81. meta[p], 'thumbnail height', fatal=False))
  82. })
  83. return {
  84. 'id': uuid,
  85. 'title': '%s - %s' % (progname, subtitle),
  86. 'formats': formats,
  87. 'timestamp': material['original_date'],
  88. 'description': description,
  89. 'duration': parse_duration(material.get('duration')),
  90. 'thumbnails': thumbnails,
  91. }