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.

163 lines
6.4 KiB

10 years ago
10 years ago
10 years ago
  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..compat import (
  5. compat_urllib_parse,
  6. )
  7. from ..utils import (
  8. parse_duration,
  9. unified_strdate,
  10. )
  11. class RaiIE(InfoExtractor):
  12. _VALID_URL = r'(?P<url>(?P<host>http://(?:.+?\.)?(?:rai\.it|rai\.tv|rainews\.it))/dl/.+?-(?P<id>[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})(?:-.+?)?\.html)'
  13. _TESTS = [
  14. {
  15. 'url': 'http://www.rai.tv/dl/RaiTV/programmi/media/ContentItem-cb27157f-9dd0-4aee-b788-b1f67643a391.html',
  16. 'md5': 'c064c0b2d09c278fb293116ef5d0a32d',
  17. 'info_dict': {
  18. 'id': 'cb27157f-9dd0-4aee-b788-b1f67643a391',
  19. 'ext': 'mp4',
  20. 'title': 'Report del 07/04/2014',
  21. 'description': 'md5:f27c544694cacb46a078db84ec35d2d9',
  22. 'upload_date': '20140407',
  23. 'duration': 6160,
  24. }
  25. },
  26. {
  27. 'url': 'http://www.raisport.rai.it/dl/raiSport/media/rassegna-stampa-04a9f4bd-b563-40cf-82a6-aad3529cb4a9.html',
  28. 'md5': '8bb9c151924ce241b74dd52ef29ceafa',
  29. 'info_dict': {
  30. 'id': '04a9f4bd-b563-40cf-82a6-aad3529cb4a9',
  31. 'ext': 'mp4',
  32. 'title': 'TG PRIMO TEMPO',
  33. 'description': '',
  34. 'upload_date': '20140612',
  35. 'duration': 1758,
  36. },
  37. 'skip': 'Error 404',
  38. },
  39. {
  40. 'url': 'http://www.rainews.it/dl/rainews/media/state-of-the-net-Antonella-La-Carpia-regole-virali-7aafdea9-0e5d-49d5-88a6-7e65da67ae13.html',
  41. 'md5': '35cf7c229f22eeef43e48b5cf923bef0',
  42. 'info_dict': {
  43. 'id': '7aafdea9-0e5d-49d5-88a6-7e65da67ae13',
  44. 'ext': 'mp4',
  45. 'title': 'State of the Net, Antonella La Carpia: regole virali',
  46. 'description': 'md5:b0ba04a324126903e3da7763272ae63c',
  47. 'upload_date': '20140613',
  48. },
  49. 'skip': 'Error 404',
  50. },
  51. {
  52. 'url': 'http://www.rai.tv/dl/RaiTV/programmi/media/ContentItem-b4a49761-e0cc-4b14-8736-2729f6f73132-tg2.html',
  53. 'md5': '35694f062977fe6619943f08ed935730',
  54. 'info_dict': {
  55. 'id': 'b4a49761-e0cc-4b14-8736-2729f6f73132',
  56. 'ext': 'mp4',
  57. 'title': 'Alluvione in Sardegna e dissesto idrogeologico',
  58. 'description': 'Edizione delle ore 20:30 ',
  59. }
  60. },
  61. {
  62. 'url': 'http://www.ilcandidato.rai.it/dl/ray/media/Il-Candidato---Primo-episodio-Le-Primarie-28e5525a-b495-45e8-a7c3-bc48ba45d2b6.html',
  63. 'md5': '02b64456f7cc09f96ff14e7dd489017e',
  64. 'info_dict': {
  65. 'id': '28e5525a-b495-45e8-a7c3-bc48ba45d2b6',
  66. 'ext': 'flv',
  67. 'title': 'Il Candidato - Primo episodio: "Le Primarie"',
  68. 'description': 'Primo appuntamento con "Il candidato" con Filippo Timi, alias Piero Zucca presidente!',
  69. 'uploader': 'RaiTre',
  70. }
  71. }
  72. ]
  73. def _extract_relinker_url(self, webpage):
  74. return self._proto_relative_url(self._search_regex(
  75. [r'name="videourl" content="([^"]+)"', r'var\s+videoURL(?:_MP4)?\s*=\s*"([^"]+)"'],
  76. webpage, 'relinker url', default=None))
  77. def _real_extract(self, url):
  78. mobj = re.match(self._VALID_URL, url)
  79. video_id = mobj.group('id')
  80. host = mobj.group('host')
  81. webpage = self._download_webpage(url, video_id)
  82. relinker_url = self._extract_relinker_url(webpage)
  83. if not relinker_url:
  84. iframe_path = self._search_regex(
  85. r'<iframe[^>]+src="/?(dl/[^"]+\?iframe\b[^"]*)"',
  86. webpage, 'iframe')
  87. webpage = self._download_webpage(
  88. '%s/%s' % (host, iframe_path), video_id)
  89. relinker_url = self._extract_relinker_url(webpage)
  90. relinker = self._download_json(
  91. '%s&output=47' % relinker_url, video_id)
  92. media_url = relinker['video'][0]
  93. ct = relinker.get('ct')
  94. if ct == 'f4m':
  95. formats = self._extract_f4m_formats(
  96. media_url + '&hdcore=3.7.0&plugin=aasp-3.7.0.39.44', video_id)
  97. else:
  98. formats = [{
  99. 'url': media_url,
  100. 'format_id': ct,
  101. }]
  102. json_link = self._html_search_meta(
  103. 'jsonlink', webpage, 'JSON link', default=None)
  104. if json_link:
  105. media = self._download_json(
  106. host + json_link, video_id, 'Downloading video JSON')
  107. title = media.get('name')
  108. description = media.get('desc')
  109. thumbnail = media.get('image_300') or media.get('image_medium') or media.get('image')
  110. duration = parse_duration(media.get('length'))
  111. uploader = media.get('author')
  112. upload_date = unified_strdate(media.get('date'))
  113. else:
  114. title = (self._search_regex(
  115. r'var\s+videoTitolo\s*=\s*"(.+?)";',
  116. webpage, 'title', default=None) or self._og_search_title(webpage)).replace('\\"', '"')
  117. description = self._og_search_description(webpage)
  118. thumbnail = self._og_search_thumbnail(webpage)
  119. duration = None
  120. uploader = self._html_search_meta('Editore', webpage, 'uploader')
  121. upload_date = unified_strdate(self._html_search_meta(
  122. 'item-date', webpage, 'upload date', default=None))
  123. subtitles = self.extract_subtitles(video_id, webpage)
  124. return {
  125. 'id': video_id,
  126. 'title': title,
  127. 'description': description,
  128. 'thumbnail': thumbnail,
  129. 'uploader': uploader,
  130. 'upload_date': upload_date,
  131. 'duration': duration,
  132. 'formats': formats,
  133. 'subtitles': subtitles,
  134. }
  135. def _get_subtitles(self, video_id, webpage):
  136. subtitles = {}
  137. m = re.search(r'<meta name="closedcaption" content="(?P<captions>[^"]+)"', webpage)
  138. if m:
  139. captions = m.group('captions')
  140. STL_EXT = '.stl'
  141. SRT_EXT = '.srt'
  142. if captions.endswith(STL_EXT):
  143. captions = captions[:-len(STL_EXT)] + SRT_EXT
  144. subtitles['it'] = [{
  145. 'ext': 'srt',
  146. 'url': 'http://www.rai.tv%s' % compat_urllib_parse.quote(captions),
  147. }]
  148. return subtitles