]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/adn.py
[ie/youtube] Improve detection of faulty HLS formats (#8646)
[yt-dlp.git] / yt_dlp / extractor / adn.py
CommitLineData
1ea559c4
RA
1import base64
2import binascii
82be732b
RA
3import json
4import os
1ea559c4 5import random
82be732b
RA
6
7from .common import InfoExtractor
1d3586d0 8from ..aes import aes_cbc_decrypt_bytes, unpad_pkcs7
3d2623a8 9from ..compat import compat_b64decode
10from ..networking.exceptions import HTTPError
82be732b 11from ..utils import (
aa7785f8 12 ass_subtitles_timecode,
82be732b 13 bytes_to_intlist,
1ea559c4 14 bytes_to_long,
82be732b
RA
15 ExtractorError,
16 float_or_none,
30a074c2 17 int_or_none,
82be732b 18 intlist_to_bytes,
1ea559c4
RA
19 long_to_bytes,
20 pkcs1pad,
82be732b 21 strip_or_none,
30a074c2 22 try_get,
23 unified_strdate,
2181983a 24 urlencode_postdata,
82be732b
RA
25)
26
27
28class ADNIE(InfoExtractor):
db4678e4 29 IE_DESC = 'Animation Digital Network'
30 _VALID_URL = r'https?://(?:www\.)?(?:animation|anime)digitalnetwork\.fr/video/[^/]+/(?P<id>\d+)'
31 _TESTS = [{
32 'url': 'https://animationdigitalnetwork.fr/video/fruits-basket/9841-episode-1-a-ce-soir',
33 'md5': '1c9ef066ceb302c86f80c2b371615261',
82be732b 34 'info_dict': {
db4678e4 35 'id': '9841',
82be732b 36 'ext': 'mp4',
db4678e4 37 'title': 'Fruits Basket - Episode 1',
38 'description': 'md5:14be2f72c3c96809b0ca424b0097d336',
39 'series': 'Fruits Basket',
40 'duration': 1437,
41 'release_date': '20190405',
30a074c2 42 'comment_count': int,
43 'average_rating': float,
db4678e4 44 'season_number': 1,
45 'episode': 'À ce soir !',
30a074c2 46 'episode_number': 1,
db4678e4 47 },
48 'skip': 'Only available in region (FR, ...)',
49 }, {
50 'url': 'http://animedigitalnetwork.fr/video/blue-exorcist-kyoto-saga/7778-episode-1-debut-des-hostilites',
51 'only_matching': True,
52 }]
30a074c2 53
db4678e4 54 _NETRC_MACHINE = 'animationdigitalnetwork'
55 _BASE = 'animationdigitalnetwork.fr'
56 _API_BASE_URL = 'https://gw.api.' + _BASE + '/'
30a074c2 57 _PLAYER_BASE_URL = _API_BASE_URL + 'player/'
2181983a 58 _HEADERS = {}
59 _LOGIN_ERR_MESSAGE = 'Unable to log in'
30a074c2 60 _RSA_KEY = (0x9B42B08905199A5CCE2026274399CA560ECB209EE9878A708B1C0812E1BB8CB5D1FB7441861147C1A1F2F3A0476DD63A9CAC20D3E983613346850AA6CB38F16DC7D720FD7D86FC6E5B3D5BBC72E14CD0BF9E869F2CEA2CCAD648F1DCE38F1FF916CEFB2D339B64AA0264372344BC775E265E8A852F88144AB0BD9AA06C1A4ABB, 65537)
b966740c
RA
61 _POS_ALIGN_MAP = {
62 'start': 1,
63 'end': 3,
64 }
65 _LINE_ALIGN_MAP = {
66 'middle': 8,
67 'end': 4,
68 }
69
30a074c2 70 def _get_subtitles(self, sub_url, video_id):
71 if not sub_url:
82be732b
RA
72 return None
73
74 enc_subtitles = self._download_webpage(
30a074c2 75 sub_url, video_id, 'Downloading subtitles location', fatal=False) or '{}'
e6c9ae31
RA
76 subtitle_location = (self._parse_json(enc_subtitles, video_id, fatal=False) or {}).get('location')
77 if subtitle_location:
78 enc_subtitles = self._download_webpage(
30a074c2 79 subtitle_location, video_id, 'Downloading subtitles data',
db4678e4 80 fatal=False, headers={'Origin': 'https://' + self._BASE})
82be732b
RA
81 if not enc_subtitles:
82 return None
83
db4678e4 84 # http://animationdigitalnetwork.fr/components/com_vodvideo/videojs/adn-vjs.min.js
1d3586d0 85 dec_subtitles = unpad_pkcs7(aes_cbc_decrypt_bytes(
86 compat_b64decode(enc_subtitles[24:]),
3358f893 87 binascii.unhexlify(self._K + '7fac1178830cfe0c'),
1d3586d0 88 compat_b64decode(enc_subtitles[:24])))
89 subtitles_json = self._parse_json(dec_subtitles.decode(), None, fatal=False)
82be732b
RA
90 if not subtitles_json:
91 return None
92
93 subtitles = {}
94 for sub_lang, sub in subtitles_json.items():
b966740c
RA
95 ssa = '''[Script Info]
96ScriptType:V4.00
97[V4 Styles]
2bbde1d0
RA
98Format: Name,Fontname,Fontsize,PrimaryColour,SecondaryColour,TertiaryColour,BackColour,Bold,Italic,BorderStyle,Outline,Shadow,Alignment,MarginL,MarginR,MarginV,AlphaLevel,Encoding
99Style: Default,Arial,18,16777215,16777215,16777215,0,-1,0,1,1,0,2,20,20,20,0,0
b966740c 100[Events]
2bbde1d0 101Format: Marked,Start,End,Style,Name,MarginL,MarginR,MarginV,Effect,Text'''
b966740c
RA
102 for current in sub:
103 start, end, text, line_align, position_align = (
82be732b
RA
104 float_or_none(current.get('startTime')),
105 float_or_none(current.get('endTime')),
b966740c
RA
106 current.get('text'), current.get('lineAlign'),
107 current.get('positionAlign'))
82be732b
RA
108 if start is None or end is None or text is None:
109 continue
b966740c 110 alignment = self._POS_ALIGN_MAP.get(position_align, 2) + self._LINE_ALIGN_MAP.get(line_align, 0)
2bbde1d0 111 ssa += os.linesep + 'Dialogue: Marked=0,%s,%s,Default,,0,0,0,,%s%s' % (
aa7785f8 112 ass_subtitles_timecode(start),
113 ass_subtitles_timecode(end),
b966740c
RA
114 '{\\a%d}' % alignment if alignment != 2 else '',
115 text.replace('\n', '\\N').replace('<i>', '{\\i1}').replace('</i>', '{\\i0}'))
82be732b
RA
116
117 if sub_lang == 'vostf':
118 sub_lang = 'fr'
119 subtitles.setdefault(sub_lang, []).extend([{
120 'ext': 'json',
121 'data': json.dumps(sub),
122 }, {
b966740c
RA
123 'ext': 'ssa',
124 'data': ssa,
82be732b
RA
125 }])
126 return subtitles
127
52efa4b3 128 def _perform_login(self, username, password):
2181983a 129 try:
130 access_token = (self._download_json(
131 self._API_BASE_URL + 'authentication/login', None,
132 'Logging in', self._LOGIN_ERR_MESSAGE, fatal=False,
133 data=urlencode_postdata({
134 'password': password,
135 'rememberMe': False,
136 'source': 'Web',
137 'username': username,
138 })) or {}).get('accessToken')
139 if access_token:
140 self._HEADERS = {'authorization': 'Bearer ' + access_token}
141 except ExtractorError as e:
142 message = None
3d2623a8 143 if isinstance(e.cause, HTTPError) and e.cause.status == 401:
2181983a 144 resp = self._parse_json(
3d2623a8 145 e.cause.response.read().decode(), None, fatal=False) or {}
2181983a 146 message = resp.get('message') or resp.get('code')
147 self.report_warning(message or self._LOGIN_ERR_MESSAGE)
148
82be732b
RA
149 def _real_extract(self, url):
150 video_id = self._match_id(url)
30a074c2 151 video_base_url = self._PLAYER_BASE_URL + 'video/%s/' % video_id
152 player = self._download_json(
153 video_base_url + 'configuration', video_id,
2181983a 154 'Downloading player config JSON metadata',
155 headers=self._HEADERS)['player']
30a074c2 156 options = player['options']
157
158 user = options['user']
159 if not user.get('hasAccess'):
2181983a 160 self.raise_login_required()
30a074c2 161
162 token = self._download_json(
163 user.get('refreshTokenUrl') or (self._PLAYER_BASE_URL + 'refresh/token'),
164 video_id, 'Downloading access token', headers={
165 'x-player-refresh-token': user['refreshToken']
166 }, data=b'')['token']
167
168 links_url = try_get(options, lambda x: x['video']['url']) or (video_base_url + 'link')
efa944f4 169 self._K = ''.join(random.choices('0123456789abcdef', k=16))
30a074c2 170 message = bytes_to_intlist(json.dumps({
171 'k': self._K,
172 't': token,
173 }))
174
175 # Sometimes authentication fails for no good reason, retry with
176 # a different random padding
177 links_data = None
178 for _ in range(3):
1ea559c4
RA
179 padded_message = intlist_to_bytes(pkcs1pad(message, 128))
180 n, e = self._RSA_KEY
181 encrypted_message = long_to_bytes(pow(bytes_to_long(padded_message), e, n))
182 authorization = base64.b64encode(encrypted_message).decode()
30a074c2 183
184 try:
185 links_data = self._download_json(
186 links_url, video_id, 'Downloading links JSON metadata', headers={
187 'X-Player-Token': authorization
188 }, query={
189 'freeWithAds': 'true',
190 'adaptive': 'false',
191 'withMetadata': 'true',
192 'source': 'Web'
193 })
194 break
195 except ExtractorError as e:
3d2623a8 196 if not isinstance(e.cause, HTTPError):
30a074c2 197 raise e
198
3d2623a8 199 if e.cause.status == 401:
30a074c2 200 # This usually goes away with a different random pkcs1pad, so retry
201 continue
202
3d2623a8 203 error = self._parse_json(e.cause.response.read(), video_id)
30a074c2 204 message = error.get('message')
205 if e.cause.code == 403 and error.get('code') == 'player-bad-geolocation-country':
206 self.raise_geo_restricted(msg=message)
2181983a 207 raise ExtractorError(message)
30a074c2 208 else:
209 raise ExtractorError('Giving up retrying')
210
211 links = links_data.get('links') or {}
212 metas = links_data.get('metadata') or {}
213 sub_url = (links.get('subtitles') or {}).get('all')
214 video_info = links_data.get('video') or {}
215 title = metas['title']
82be732b
RA
216
217 formats = []
30a074c2 218 for format_id, qualities in (links.get('streaming') or {}).items():
20e2c9de
RA
219 if not isinstance(qualities, dict):
220 continue
b966740c 221 for quality, load_balancer_url in qualities.items():
82be732b 222 load_balancer_data = self._download_json(
b966740c
RA
223 load_balancer_url, video_id,
224 'Downloading %s %s JSON metadata' % (format_id, quality),
225 fatal=False) or {}
82be732b
RA
226 m3u8_url = load_balancer_data.get('location')
227 if not m3u8_url:
228 continue
229 m3u8_formats = self._extract_m3u8_formats(
230 m3u8_url, video_id, 'mp4', 'm3u8_native',
231 m3u8_id=format_id, fatal=False)
232 if format_id == 'vf':
233 for f in m3u8_formats:
234 f['language'] = 'fr'
235 formats.extend(m3u8_formats)
82be732b 236
30a074c2 237 video = (self._download_json(
238 self._API_BASE_URL + 'video/%s' % video_id, video_id,
239 'Downloading additional video metadata', fatal=False) or {}).get('video') or {}
240 show = video.get('show') or {}
241
82be732b
RA
242 return {
243 'id': video_id,
244 'title': title,
30a074c2 245 'description': strip_or_none(metas.get('summary') or video.get('summary')),
246 'thumbnail': video_info.get('image') or player.get('image'),
82be732b 247 'formats': formats,
30a074c2 248 'subtitles': self.extract_subtitles(sub_url, video_id),
249 'episode': metas.get('subtitle') or video.get('name'),
250 'episode_number': int_or_none(video.get('shortNumber')),
251 'series': show.get('title'),
252 'season_number': int_or_none(video.get('season')),
253 'duration': int_or_none(video_info.get('duration') or video.get('duration')),
254 'release_date': unified_strdate(video.get('releaseDate')),
255 'average_rating': float_or_none(video.get('rating') or metas.get('rating')),
256 'comment_count': int_or_none(video.get('commentsCount')),
82be732b 257 }