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.

121 lines
4.5 KiB

10 years ago
10 years ago
  1. from __future__ import unicode_literals
  2. import re
  3. from .subtitles import SubtitlesInfoExtractor
  4. from ..utils import (
  5. parse_duration,
  6. unified_strdate,
  7. compat_urllib_parse,
  8. )
  9. class RaiIE(SubtitlesInfoExtractor):
  10. _VALID_URL = r'(?P<url>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)'
  11. _TESTS = [
  12. {
  13. 'url': 'http://www.rai.tv/dl/RaiTV/programmi/media/ContentItem-cb27157f-9dd0-4aee-b788-b1f67643a391.html',
  14. 'md5': 'c064c0b2d09c278fb293116ef5d0a32d',
  15. 'info_dict': {
  16. 'id': 'cb27157f-9dd0-4aee-b788-b1f67643a391',
  17. 'ext': 'mp4',
  18. 'title': 'Report del 07/04/2014',
  19. 'description': 'md5:f27c544694cacb46a078db84ec35d2d9',
  20. 'upload_date': '20140407',
  21. 'duration': 6160,
  22. }
  23. },
  24. {
  25. 'url': 'http://www.raisport.rai.it/dl/raiSport/media/rassegna-stampa-04a9f4bd-b563-40cf-82a6-aad3529cb4a9.html',
  26. 'md5': '8bb9c151924ce241b74dd52ef29ceafa',
  27. 'info_dict': {
  28. 'id': '04a9f4bd-b563-40cf-82a6-aad3529cb4a9',
  29. 'ext': 'mp4',
  30. 'title': 'TG PRIMO TEMPO',
  31. 'description': '',
  32. 'upload_date': '20140612',
  33. 'duration': 1758,
  34. },
  35. 'skip': 'Error 404',
  36. },
  37. {
  38. 'url': 'http://www.rainews.it/dl/rainews/media/state-of-the-net-Antonella-La-Carpia-regole-virali-7aafdea9-0e5d-49d5-88a6-7e65da67ae13.html',
  39. 'md5': '35cf7c229f22eeef43e48b5cf923bef0',
  40. 'info_dict': {
  41. 'id': '7aafdea9-0e5d-49d5-88a6-7e65da67ae13',
  42. 'ext': 'mp4',
  43. 'title': 'State of the Net, Antonella La Carpia: regole virali',
  44. 'description': 'md5:b0ba04a324126903e3da7763272ae63c',
  45. 'upload_date': '20140613',
  46. },
  47. 'skip': 'Error 404',
  48. },
  49. {
  50. 'url': 'http://www.rai.tv/dl/RaiTV/programmi/media/ContentItem-b4a49761-e0cc-4b14-8736-2729f6f73132-tg2.html',
  51. 'md5': '35694f062977fe6619943f08ed935730',
  52. 'info_dict': {
  53. 'id': 'b4a49761-e0cc-4b14-8736-2729f6f73132',
  54. 'ext': 'mp4',
  55. 'title': 'Alluvione in Sardegna e dissesto idrogeologico',
  56. 'description': 'Edizione delle ore 20:30 ',
  57. }
  58. },
  59. ]
  60. def _real_extract(self, url):
  61. mobj = re.match(self._VALID_URL, url)
  62. video_id = mobj.group('id')
  63. media = self._download_json('%s?json' % mobj.group('url'), video_id, 'Downloading video JSON')
  64. title = media.get('name')
  65. description = media.get('desc')
  66. thumbnail = media.get('image_300') or media.get('image_medium') or media.get('image')
  67. duration = parse_duration(media.get('length'))
  68. uploader = media.get('author')
  69. upload_date = unified_strdate(media.get('date'))
  70. formats = []
  71. for format_id in ['wmv', 'm3u8', 'mediaUri', 'h264']:
  72. media_url = media.get(format_id)
  73. if not media_url:
  74. continue
  75. formats.append({
  76. 'url': media_url,
  77. 'format_id': format_id,
  78. 'ext': 'mp4',
  79. })
  80. if self._downloader.params.get('listsubtitles', False):
  81. page = self._download_webpage(url, video_id)
  82. self._list_available_subtitles(video_id, page)
  83. return
  84. subtitles = {}
  85. if self._have_to_download_any_subtitles:
  86. page = self._download_webpage(url, video_id)
  87. subtitles = self.extract_subtitles(video_id, page)
  88. return {
  89. 'id': video_id,
  90. 'title': title,
  91. 'description': description,
  92. 'thumbnail': thumbnail,
  93. 'uploader': uploader,
  94. 'upload_date': upload_date,
  95. 'duration': duration,
  96. 'formats': formats,
  97. 'subtitles': subtitles,
  98. }
  99. def _get_available_subtitles(self, video_id, webpage):
  100. subtitles = {}
  101. m = re.search(r'<meta name="closedcaption" content="(?P<captions>[^"]+)"', webpage)
  102. if m:
  103. captions = m.group('captions')
  104. STL_EXT = '.stl'
  105. SRT_EXT = '.srt'
  106. if captions.endswith(STL_EXT):
  107. captions = captions[:-len(STL_EXT)] + SRT_EXT
  108. subtitles['it'] = 'http://www.rai.tv%s' % compat_urllib_parse.quote(captions)
  109. return subtitles