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.

124 lines
4.5 KiB

10 years ago
10 years ago
10 years ago
  1. from __future__ import unicode_literals
  2. import re
  3. from .subtitles import SubtitlesInfoExtractor
  4. from ..compat import (
  5. compat_urllib_parse,
  6. )
  7. from ..utils import (
  8. parse_duration,
  9. unified_strdate,
  10. )
  11. class RaiIE(SubtitlesInfoExtractor):
  12. _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)'
  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. def _real_extract(self, url):
  63. mobj = re.match(self._VALID_URL, url)
  64. video_id = mobj.group('id')
  65. media = self._download_json('%s?json' % mobj.group('url'), video_id, 'Downloading video JSON')
  66. title = media.get('name')
  67. description = media.get('desc')
  68. thumbnail = media.get('image_300') or media.get('image_medium') or media.get('image')
  69. duration = parse_duration(media.get('length'))
  70. uploader = media.get('author')
  71. upload_date = unified_strdate(media.get('date'))
  72. formats = []
  73. for format_id in ['wmv', 'm3u8', 'mediaUri', 'h264']:
  74. media_url = media.get(format_id)
  75. if not media_url:
  76. continue
  77. formats.append({
  78. 'url': media_url,
  79. 'format_id': format_id,
  80. 'ext': 'mp4',
  81. })
  82. if self._downloader.params.get('listsubtitles', False):
  83. page = self._download_webpage(url, video_id)
  84. self._list_available_subtitles(video_id, page)
  85. return
  86. subtitles = {}
  87. if self._have_to_download_any_subtitles:
  88. page = self._download_webpage(url, video_id)
  89. subtitles = self.extract_subtitles(video_id, page)
  90. return {
  91. 'id': video_id,
  92. 'title': title,
  93. 'description': description,
  94. 'thumbnail': thumbnail,
  95. 'uploader': uploader,
  96. 'upload_date': upload_date,
  97. 'duration': duration,
  98. 'formats': formats,
  99. 'subtitles': subtitles,
  100. }
  101. def _get_available_subtitles(self, video_id, webpage):
  102. subtitles = {}
  103. m = re.search(r'<meta name="closedcaption" content="(?P<captions>[^"]+)"', webpage)
  104. if m:
  105. captions = m.group('captions')
  106. STL_EXT = '.stl'
  107. SRT_EXT = '.srt'
  108. if captions.endswith(STL_EXT):
  109. captions = captions[:-len(STL_EXT)] + SRT_EXT
  110. subtitles['it'] = 'http://www.rai.tv%s' % compat_urllib_parse.quote(captions)
  111. return subtitles