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.3 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>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. subtitles = self.extract_subtitles(video_id, url)
  83. return {
  84. 'id': video_id,
  85. 'title': title,
  86. 'description': description,
  87. 'thumbnail': thumbnail,
  88. 'uploader': uploader,
  89. 'upload_date': upload_date,
  90. 'duration': duration,
  91. 'formats': formats,
  92. 'subtitles': subtitles,
  93. }
  94. def _get_subtitles(self, video_id, url):
  95. webpage = self._download_webpage(url, video_id)
  96. subtitles = {}
  97. m = re.search(r'<meta name="closedcaption" content="(?P<captions>[^"]+)"', webpage)
  98. if m:
  99. captions = m.group('captions')
  100. STL_EXT = '.stl'
  101. SRT_EXT = '.srt'
  102. if captions.endswith(STL_EXT):
  103. captions = captions[:-len(STL_EXT)] + SRT_EXT
  104. subtitles['it'] = [{
  105. 'ext': 'srt',
  106. 'url': 'http://www.rai.tv%s' % compat_urllib_parse.quote(captions),
  107. }]
  108. return subtitles