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.

154 lines
5.8 KiB

10 years ago
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. float_or_none,
  7. )
  8. class VRTIE(InfoExtractor):
  9. IE_DESC = 'deredactie.be, sporza.be, cobra.be and cobra.canvas.be'
  10. _VALID_URL = r'https?://(?:deredactie|sporza|cobra(?:\.canvas)?)\.be/cm/(?:[^/]+/)+(?P<id>[^/]+)/*'
  11. _TESTS = [
  12. # deredactie.be
  13. {
  14. 'url': 'http://deredactie.be/cm/vrtnieuws/videozone/programmas/journaal/EP_141025_JOL',
  15. 'md5': '4cebde1eb60a53782d4f3992cbd46ec8',
  16. 'info_dict': {
  17. 'id': '2129880',
  18. 'ext': 'flv',
  19. 'title': 'Het journaal L - 25/10/14',
  20. 'description': None,
  21. 'timestamp': 1414271750.949,
  22. 'upload_date': '20141025',
  23. 'duration': 929,
  24. },
  25. 'skip': 'HTTP Error 404: Not Found',
  26. },
  27. # sporza.be
  28. {
  29. 'url': 'http://sporza.be/cm/sporza/videozone/programmas/extratime/EP_141020_Extra_time',
  30. 'md5': '11f53088da9bf8e7cfc42456697953ff',
  31. 'info_dict': {
  32. 'id': '2124639',
  33. 'ext': 'flv',
  34. 'title': 'Bekijk Extra Time van 20 oktober',
  35. 'description': 'md5:83ac5415a4f1816c6a93f8138aef2426',
  36. 'timestamp': 1413835980.560,
  37. 'upload_date': '20141020',
  38. 'duration': 3238,
  39. },
  40. 'skip': 'HTTP Error 404: Not Found',
  41. },
  42. # cobra.be
  43. {
  44. 'url': 'http://cobra.be/cm/cobra/videozone/rubriek/film-videozone/141022-mv-ellis-cafecorsari',
  45. 'md5': '78a2b060a5083c4f055449a72477409d',
  46. 'info_dict': {
  47. 'id': '2126050',
  48. 'ext': 'flv',
  49. 'title': 'Bret Easton Ellis in Café Corsari',
  50. 'description': 'md5:f699986e823f32fd6036c1855a724ee9',
  51. 'timestamp': 1413967500.494,
  52. 'upload_date': '20141022',
  53. 'duration': 661,
  54. },
  55. 'skip': 'HTTP Error 404: Not Found',
  56. },
  57. {
  58. # YouTube video
  59. 'url': 'http://deredactie.be/cm/vrtnieuws/videozone/nieuws/cultuurenmedia/1.2622957',
  60. 'md5': 'b8b93da1df1cea6c8556255a796b7d61',
  61. 'info_dict': {
  62. 'id': 'Wji-BZ0oCwg',
  63. 'ext': 'mp4',
  64. 'title': 'ROGUE ONE: A STAR WARS STORY Official Teaser Trailer',
  65. 'description': 'md5:8e468944dce15567a786a67f74262583',
  66. 'uploader': 'Star Wars',
  67. 'uploader_id': 'starwars',
  68. 'upload_date': '20160407',
  69. },
  70. 'add_ie': ['Youtube'],
  71. },
  72. {
  73. 'url': 'http://cobra.canvas.be/cm/cobra/videozone/rubriek/film-videozone/1.2377055',
  74. 'info_dict': {
  75. 'id': '2377055',
  76. 'ext': 'mp4',
  77. 'title': 'Cafe Derby',
  78. 'description': 'Lenny Van Wesemael debuteert met de langspeelfilm Café Derby. Een waar gebeurd maar ook verzonnen verhaal.',
  79. 'upload_date': '20150626',
  80. 'timestamp': 1435305240.769,
  81. },
  82. 'params': {
  83. # m3u8 download
  84. 'skip_download': True,
  85. }
  86. }
  87. ]
  88. def _real_extract(self, url):
  89. video_id = self._match_id(url)
  90. webpage = self._download_webpage(url, video_id)
  91. video_id = self._search_regex(
  92. r'data-video-id="([^"]+)_[^"]+"', webpage, 'video id', fatal=False)
  93. src = self._search_regex(
  94. r'data-video-src="([^"]+)"', webpage, 'video src', default=None)
  95. video_type = self._search_regex(
  96. r'data-video-type="([^"]+)"', webpage, 'video type', default=None)
  97. if video_type == 'YouTubeVideo':
  98. return self.url_result(src, 'Youtube')
  99. formats = []
  100. mobj = re.search(
  101. r'data-video-iphone-server="(?P<server>[^"]+)"\s+data-video-iphone-path="(?P<path>[^"]+)"',
  102. webpage)
  103. if mobj:
  104. formats.extend(self._extract_m3u8_formats(
  105. '%s/%s' % (mobj.group('server'), mobj.group('path')),
  106. video_id, 'mp4', m3u8_id='hls', fatal=False))
  107. if src:
  108. formats = self._extract_wowza_formats(src, video_id)
  109. if 'data-video-geoblocking="true"' not in webpage:
  110. for f in formats:
  111. if f['url'].startswith('rtsp://'):
  112. http_format = f.copy()
  113. http_format.update({
  114. 'url': f['url'].replace('rtsp://', 'http://').replace('vod.', 'download.').replace('/_definst_/', '/').replace('mp4:', ''),
  115. 'format_id': f['format_id'].replace('rtsp', 'http'),
  116. 'protocol': 'http',
  117. })
  118. formats.append(http_format)
  119. if not formats and 'data-video-geoblocking="true"' in webpage:
  120. self.raise_geo_restricted('This video is only available in Belgium')
  121. self._sort_formats(formats)
  122. title = self._og_search_title(webpage)
  123. description = self._og_search_description(webpage, default=None)
  124. thumbnail = self._og_search_thumbnail(webpage)
  125. timestamp = float_or_none(self._search_regex(
  126. r'data-video-sitestat-pubdate="(\d+)"', webpage, 'timestamp', fatal=False), 1000)
  127. duration = float_or_none(self._search_regex(
  128. r'data-video-duration="(\d+)"', webpage, 'duration', fatal=False), 1000)
  129. return {
  130. 'id': video_id,
  131. 'title': title,
  132. 'description': description,
  133. 'thumbnail': thumbnail,
  134. 'timestamp': timestamp,
  135. 'duration': duration,
  136. 'formats': formats,
  137. }