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.

120 lines
4.5 KiB

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. },
  36. {
  37. 'url': 'http://www.rainews.it/dl/rainews/media/state-of-the-net-Antonella-La-Carpia-regole-virali-7aafdea9-0e5d-49d5-88a6-7e65da67ae13.html',
  38. 'md5': '35cf7c229f22eeef43e48b5cf923bef0',
  39. 'info_dict': {
  40. 'id': '7aafdea9-0e5d-49d5-88a6-7e65da67ae13',
  41. 'ext': 'mp4',
  42. 'title': 'State of the Net, Antonella La Carpia: regole virali',
  43. 'description': 'md5:b0ba04a324126903e3da7763272ae63c',
  44. 'upload_date': '20140613',
  45. },
  46. 'skip': 'Error 404',
  47. },
  48. {
  49. 'url': 'http://www.rai.tv/dl/RaiTV/programmi/media/ContentItem-b4a49761-e0cc-4b14-8736-2729f6f73132-tg2.html',
  50. 'md5': '35694f062977fe6619943f08ed935730',
  51. 'info_dict': {
  52. 'id': 'b4a49761-e0cc-4b14-8736-2729f6f73132',
  53. 'ext': 'mp4',
  54. 'title': 'Alluvione in Sardegna e dissesto idrogeologico',
  55. 'description': 'Edizione delle ore 20:30 ',
  56. }
  57. },
  58. ]
  59. def _real_extract(self, url):
  60. mobj = re.match(self._VALID_URL, url)
  61. video_id = mobj.group('id')
  62. media = self._download_json('%s?json' % mobj.group('url'), video_id, 'Downloading video JSON')
  63. title = media.get('name')
  64. description = media.get('desc')
  65. thumbnail = media.get('image_300') or media.get('image_medium') or media.get('image')
  66. duration = parse_duration(media.get('length'))
  67. uploader = media.get('author')
  68. upload_date = unified_strdate(media.get('date'))
  69. formats = []
  70. for format_id in ['wmv', 'm3u8', 'mediaUri', 'h264']:
  71. media_url = media.get(format_id)
  72. if not media_url:
  73. continue
  74. formats.append({
  75. 'url': media_url,
  76. 'format_id': format_id,
  77. 'ext': 'mp4',
  78. })
  79. if self._downloader.params.get('listsubtitles', False):
  80. page = self._download_webpage(url, video_id)
  81. self._list_available_subtitles(video_id, page)
  82. return
  83. subtitles = {}
  84. if self._have_to_download_any_subtitles:
  85. page = self._download_webpage(url, video_id)
  86. subtitles = self.extract_subtitles(video_id, page)
  87. return {
  88. 'id': video_id,
  89. 'title': title,
  90. 'description': description,
  91. 'thumbnail': thumbnail,
  92. 'uploader': uploader,
  93. 'upload_date': upload_date,
  94. 'duration': duration,
  95. 'formats': formats,
  96. 'subtitles': subtitles,
  97. }
  98. def _get_available_subtitles(self, video_id, webpage):
  99. subtitles = {}
  100. m = re.search(r'<meta name="closedcaption" content="(?P<captions>[^"]+)"', webpage)
  101. if m:
  102. captions = m.group('captions')
  103. STL_EXT = '.stl'
  104. SRT_EXT = '.srt'
  105. if captions.endswith(STL_EXT):
  106. captions = captions[:-len(STL_EXT)] + SRT_EXT
  107. subtitles['it'] = 'http://www.rai.tv%s' % compat_urllib_parse.quote(captions)
  108. return subtitles