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