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.

226 lines
7.8 KiB

10 years ago
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import base64
  4. import re
  5. import time
  6. from .common import InfoExtractor
  7. from ..compat import compat_urllib_request, compat_urlparse
  8. from ..utils import (
  9. ExtractorError,
  10. float_or_none,
  11. remove_end,
  12. std_headers,
  13. struct_unpack,
  14. )
  15. def _decrypt_url(png):
  16. encrypted_data = base64.b64decode(png.encode('utf-8'))
  17. text_index = encrypted_data.find(b'tEXt')
  18. text_chunk = encrypted_data[text_index - 4:]
  19. length = struct_unpack('!I', text_chunk[:4])[0]
  20. # Use bytearray to get integers when iterating in both python 2.x and 3.x
  21. data = bytearray(text_chunk[8:8 + length])
  22. data = [chr(b) for b in data if b != 0]
  23. hash_index = data.index('#')
  24. alphabet_data = data[:hash_index]
  25. url_data = data[hash_index + 1:]
  26. alphabet = []
  27. e = 0
  28. d = 0
  29. for l in alphabet_data:
  30. if d == 0:
  31. alphabet.append(l)
  32. d = e = (e + 1) % 4
  33. else:
  34. d -= 1
  35. url = ''
  36. f = 0
  37. e = 3
  38. b = 1
  39. for letter in url_data:
  40. if f == 0:
  41. l = int(letter) * 10
  42. f = 1
  43. else:
  44. if e == 0:
  45. l += int(letter)
  46. url += alphabet[l]
  47. e = (b + 3) % 4
  48. f = 0
  49. b += 1
  50. else:
  51. e -= 1
  52. return url
  53. class RTVEALaCartaIE(InfoExtractor):
  54. IE_NAME = 'rtve.es:alacarta'
  55. IE_DESC = 'RTVE a la carta'
  56. _VALID_URL = r'http://www\.rtve\.es/(m/)?alacarta/videos/[^/]+/[^/]+/(?P<id>\d+)'
  57. _TESTS = [{
  58. 'url': 'http://www.rtve.es/alacarta/videos/balonmano/o-swiss-cup-masculina-final-espana-suecia/2491869/',
  59. 'md5': '1d49b7e1ca7a7502c56a4bf1b60f1b43',
  60. 'info_dict': {
  61. 'id': '2491869',
  62. 'ext': 'mp4',
  63. 'title': 'Balonmano - Swiss Cup masculina. Final: España-Suecia',
  64. 'duration': 5024.566,
  65. },
  66. }, {
  67. 'note': 'Live stream',
  68. 'url': 'http://www.rtve.es/alacarta/videos/television/24h-live/1694255/',
  69. 'info_dict': {
  70. 'id': '1694255',
  71. 'ext': 'flv',
  72. 'title': 'TODO',
  73. },
  74. 'skip': 'The f4m manifest can\'t be used yet',
  75. }, {
  76. 'url': 'http://www.rtve.es/m/alacarta/videos/cuentame-como-paso/cuentame-como-paso-t16-ultimo-minuto-nuestra-vida-capitulo-276/2969138/?media=tve',
  77. 'only_matching': True,
  78. }]
  79. def _real_initialize(self):
  80. user_agent_b64 = base64.b64encode(std_headers['User-Agent'].encode('utf-8')).decode('utf-8')
  81. manager_info = self._download_json(
  82. 'http://www.rtve.es/odin/loki/' + user_agent_b64,
  83. None, 'Fetching manager info')
  84. self._manager = manager_info['manager']
  85. def _real_extract(self, url):
  86. mobj = re.match(self._VALID_URL, url)
  87. video_id = mobj.group('id')
  88. info = self._download_json(
  89. 'http://www.rtve.es/api/videos/%s/config/alacarta_videos.json' % video_id,
  90. video_id)['page']['items'][0]
  91. if info['state'] == 'DESPU':
  92. raise ExtractorError('The video is no longer available', expected=True)
  93. png_url = 'http://www.rtve.es/ztnr/movil/thumbnail/%s/videos/%s.png' % (self._manager, video_id)
  94. png_request = compat_urllib_request.Request(png_url)
  95. png_request.add_header('Referer', url)
  96. png = self._download_webpage(png_request, video_id, 'Downloading url information')
  97. video_url = _decrypt_url(png)
  98. if not video_url.endswith('.f4m'):
  99. auth_url = video_url.replace(
  100. 'resources/', 'auth/resources/'
  101. ).replace('.net.rtve', '.multimedia.cdn.rtve')
  102. video_path = self._download_webpage(
  103. auth_url, video_id, 'Getting video url')
  104. # Use mvod1.akcdn instead of flash.akamaihd.multimedia.cdn to get
  105. # the right Content-Length header and the mp4 format
  106. video_url = compat_urlparse.urljoin(
  107. 'http://mvod1.akcdn.rtve.es/', video_path)
  108. subtitles = None
  109. if info.get('sbtFile') is not None:
  110. subtitles = self.extract_subtitles(video_id, info['sbtFile'])
  111. return {
  112. 'id': video_id,
  113. 'title': info['title'],
  114. 'url': video_url,
  115. 'thumbnail': info.get('image'),
  116. 'page_url': url,
  117. 'subtitles': subtitles,
  118. 'duration': float_or_none(info.get('duration'), scale=1000),
  119. }
  120. def _get_subtitles(self, video_id, sub_file):
  121. subs = self._download_json(
  122. sub_file + '.json', video_id,
  123. 'Downloading subtitles info')['page']['items']
  124. return dict(
  125. (s['lang'], [{'ext': 'vtt', 'url': s['src']}])
  126. for s in subs)
  127. class RTVEInfantilIE(InfoExtractor):
  128. IE_NAME = 'rtve.es:infantil'
  129. IE_DESC = 'RTVE infantil'
  130. _VALID_URL = r'https?://(?:www\.)?rtve\.es/infantil/serie/(?P<show>[^/]*)/video/(?P<short_title>[^/]*)/(?P<id>[0-9]+)/'
  131. _TESTS = [{
  132. 'url': 'http://www.rtve.es/infantil/serie/cleo/video/maneras-vivir/3040283/',
  133. 'md5': '915319587b33720b8e0357caaa6617e6',
  134. 'info_dict': {
  135. 'id': '3040283',
  136. 'ext': 'mp4',
  137. 'title': 'Maneras de vivir',
  138. 'thumbnail': 'http://www.rtve.es/resources/jpg/6/5/1426182947956.JPG',
  139. 'duration': 357.958,
  140. },
  141. }]
  142. def _real_extract(self, url):
  143. video_id = self._match_id(url)
  144. info = self._download_json(
  145. 'http://www.rtve.es/api/videos/%s/config/alacarta_videos.json' % video_id,
  146. video_id)['page']['items'][0]
  147. webpage = self._download_webpage(url, video_id)
  148. vidplayer_id = self._search_regex(
  149. r' id="vidplayer([0-9]+)"', webpage, 'internal video ID')
  150. png_url = 'http://www.rtve.es/ztnr/movil/thumbnail/default/videos/%s.png' % vidplayer_id
  151. png = self._download_webpage(png_url, video_id, 'Downloading url information')
  152. video_url = _decrypt_url(png)
  153. return {
  154. 'id': video_id,
  155. 'ext': 'mp4',
  156. 'title': info['title'],
  157. 'url': video_url,
  158. 'thumbnail': info.get('image'),
  159. 'duration': float_or_none(info.get('duration'), scale=1000),
  160. }
  161. class RTVELiveIE(InfoExtractor):
  162. IE_NAME = 'rtve.es:live'
  163. IE_DESC = 'RTVE.es live streams'
  164. _VALID_URL = r'http://www\.rtve\.es/(?:deportes/directo|noticias|television)/(?P<id>[a-zA-Z0-9-]+)'
  165. _TESTS = [{
  166. 'url': 'http://www.rtve.es/noticias/directo-la-1/',
  167. 'info_dict': {
  168. 'id': 'directo-la-1',
  169. 'ext': 'flv',
  170. 'title': 're:^La 1 de TVE [0-9]{4}-[0-9]{2}-[0-9]{2}Z[0-9]{6}$',
  171. },
  172. 'params': {
  173. 'skip_download': 'live stream',
  174. }
  175. }]
  176. def _real_extract(self, url):
  177. mobj = re.match(self._VALID_URL, url)
  178. start_time = time.gmtime()
  179. video_id = mobj.group('id')
  180. webpage = self._download_webpage(url, video_id)
  181. player_url = self._search_regex(
  182. r'<param name="movie" value="([^"]+)"/>', webpage, 'player URL')
  183. title = remove_end(self._og_search_title(webpage), ' en directo')
  184. title += ' ' + time.strftime('%Y-%m-%dZ%H%M%S', start_time)
  185. vidplayer_id = self._search_regex(
  186. r' id="vidplayer([0-9]+)"', webpage, 'internal video ID')
  187. png_url = 'http://www.rtve.es/ztnr/movil/thumbnail/default/videos/%s.png' % vidplayer_id
  188. png = self._download_webpage(png_url, video_id, 'Downloading url information')
  189. video_url = _decrypt_url(png)
  190. return {
  191. 'id': video_id,
  192. 'ext': 'flv',
  193. 'title': title,
  194. 'url': video_url,
  195. 'app': 'rtve-live-live?ovpfv=2.1.2',
  196. 'player_url': player_url,
  197. 'rtmp_live': True,
  198. }