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.

224 lines
7.6 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_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)
  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 = self._download_webpage(png_url, video_id, 'Downloading url information')
  95. video_url = _decrypt_url(png)
  96. if not video_url.endswith('.f4m'):
  97. auth_url = video_url.replace(
  98. 'resources/', 'auth/resources/'
  99. ).replace('.net.rtve', '.multimedia.cdn.rtve')
  100. video_path = self._download_webpage(
  101. auth_url, video_id, 'Getting video url')
  102. # Use mvod1.akcdn instead of flash.akamaihd.multimedia.cdn to get
  103. # the right Content-Length header and the mp4 format
  104. video_url = compat_urlparse.urljoin(
  105. 'http://mvod1.akcdn.rtve.es/', video_path)
  106. subtitles = None
  107. if info.get('sbtFile') is not None:
  108. subtitles = self.extract_subtitles(video_id, info['sbtFile'])
  109. return {
  110. 'id': video_id,
  111. 'title': info['title'],
  112. 'url': video_url,
  113. 'thumbnail': info.get('image'),
  114. 'page_url': url,
  115. 'subtitles': subtitles,
  116. 'duration': float_or_none(info.get('duration'), scale=1000),
  117. }
  118. def _get_subtitles(self, video_id, sub_file):
  119. subs = self._download_json(
  120. sub_file + '.json', video_id,
  121. 'Downloading subtitles info')['page']['items']
  122. return dict(
  123. (s['lang'], [{'ext': 'vtt', 'url': s['src']}])
  124. for s in subs)
  125. class RTVEInfantilIE(InfoExtractor):
  126. IE_NAME = 'rtve.es:infantil'
  127. IE_DESC = 'RTVE infantil'
  128. _VALID_URL = r'https?://(?:www\.)?rtve\.es/infantil/serie/(?P<show>[^/]*)/video/(?P<short_title>[^/]*)/(?P<id>[0-9]+)/'
  129. _TESTS = [{
  130. 'url': 'http://www.rtve.es/infantil/serie/cleo/video/maneras-vivir/3040283/',
  131. 'md5': '915319587b33720b8e0357caaa6617e6',
  132. 'info_dict': {
  133. 'id': '3040283',
  134. 'ext': 'mp4',
  135. 'title': 'Maneras de vivir',
  136. 'thumbnail': 'http://www.rtve.es/resources/jpg/6/5/1426182947956.JPG',
  137. 'duration': 357.958,
  138. },
  139. }]
  140. def _real_extract(self, url):
  141. video_id = self._match_id(url)
  142. info = self._download_json(
  143. 'http://www.rtve.es/api/videos/%s/config/alacarta_videos.json' % video_id,
  144. video_id)['page']['items'][0]
  145. webpage = self._download_webpage(url, video_id)
  146. vidplayer_id = self._search_regex(
  147. r' id="vidplayer([0-9]+)"', webpage, 'internal video ID')
  148. png_url = 'http://www.rtve.es/ztnr/movil/thumbnail/default/videos/%s.png' % vidplayer_id
  149. png = self._download_webpage(png_url, video_id, 'Downloading url information')
  150. video_url = _decrypt_url(png)
  151. return {
  152. 'id': video_id,
  153. 'ext': 'mp4',
  154. 'title': info['title'],
  155. 'url': video_url,
  156. 'thumbnail': info.get('image'),
  157. 'duration': float_or_none(info.get('duration'), scale=1000),
  158. }
  159. class RTVELiveIE(InfoExtractor):
  160. IE_NAME = 'rtve.es:live'
  161. IE_DESC = 'RTVE.es live streams'
  162. _VALID_URL = r'http://www\.rtve\.es/(?:deportes/directo|noticias|television)/(?P<id>[a-zA-Z0-9-]+)'
  163. _TESTS = [{
  164. 'url': 'http://www.rtve.es/noticias/directo-la-1/',
  165. 'info_dict': {
  166. 'id': 'directo-la-1',
  167. 'ext': 'flv',
  168. 'title': 're:^La 1 de TVE [0-9]{4}-[0-9]{2}-[0-9]{2}Z[0-9]{6}$',
  169. },
  170. 'params': {
  171. 'skip_download': 'live stream',
  172. }
  173. }]
  174. def _real_extract(self, url):
  175. mobj = re.match(self._VALID_URL, url)
  176. start_time = time.gmtime()
  177. video_id = mobj.group('id')
  178. webpage = self._download_webpage(url, video_id)
  179. player_url = self._search_regex(
  180. r'<param name="movie" value="([^"]+)"/>', webpage, 'player URL')
  181. title = remove_end(self._og_search_title(webpage), ' en directo')
  182. title += ' ' + time.strftime('%Y-%m-%dZ%H%M%S', start_time)
  183. vidplayer_id = self._search_regex(
  184. r' id="vidplayer([0-9]+)"', webpage, 'internal video ID')
  185. png_url = 'http://www.rtve.es/ztnr/movil/thumbnail/default/videos/%s.png' % vidplayer_id
  186. png = self._download_webpage(png_url, video_id, 'Downloading url information')
  187. video_url = _decrypt_url(png)
  188. return {
  189. 'id': video_id,
  190. 'ext': 'flv',
  191. 'title': title,
  192. 'url': video_url,
  193. 'app': 'rtve-live-live?ovpfv=2.1.2',
  194. 'player_url': player_url,
  195. 'rtmp_live': True,
  196. }