]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/adn.py
[ie/youtube] Suppress "Unavailable videos are hidden" warning (#10159)
[yt-dlp.git] / yt_dlp / extractor / adn.py
CommitLineData
1ea559c4
RA
1import base64
2import binascii
82be732b
RA
3import json
4import os
1ea559c4 5import random
9526b1f1 6import time
82be732b
RA
7
8from .common import InfoExtractor
1d3586d0 9from ..aes import aes_cbc_decrypt_bytes, unpad_pkcs7
3d2623a8 10from ..networking.exceptions import HTTPError
82be732b 11from ..utils import (
e897bd82 12 ExtractorError,
aa7785f8 13 ass_subtitles_timecode,
82be732b 14 bytes_to_intlist,
1ea559c4 15 bytes_to_long,
82be732b 16 float_or_none,
30a074c2 17 int_or_none,
82be732b 18 intlist_to_bytes,
1ea559c4 19 long_to_bytes,
9526b1f1 20 parse_iso8601,
1ea559c4 21 pkcs1pad,
5eb1458b 22 str_or_none,
e897bd82 23 strip_or_none,
30a074c2 24 try_get,
25 unified_strdate,
2181983a 26 urlencode_postdata,
82be732b 27)
5eb1458b 28from ..utils.traversal import traverse_obj
82be732b
RA
29
30
5eb1458b 31class ADNBaseIE(InfoExtractor):
db4678e4 32 IE_DESC = 'Animation Digital Network'
5eb1458b
CS
33 _NETRC_MACHINE = 'animationdigitalnetwork'
34 _BASE = 'animationdigitalnetwork.fr'
35 _API_BASE_URL = f'https://gw.api.{_BASE}/'
36 _PLAYER_BASE_URL = f'{_API_BASE_URL}player/'
37 _HEADERS = {}
38 _LOGIN_ERR_MESSAGE = 'Unable to log in'
39 _RSA_KEY = (0x9B42B08905199A5CCE2026274399CA560ECB209EE9878A708B1C0812E1BB8CB5D1FB7441861147C1A1F2F3A0476DD63A9CAC20D3E983613346850AA6CB38F16DC7D720FD7D86FC6E5B3D5BBC72E14CD0BF9E869F2CEA2CCAD648F1DCE38F1FF916CEFB2D339B64AA0264372344BC775E265E8A852F88144AB0BD9AA06C1A4ABB, 65537)
40 _POS_ALIGN_MAP = {
41 'start': 1,
42 'end': 3,
43 }
44 _LINE_ALIGN_MAP = {
45 'middle': 8,
46 'end': 4,
47 }
48
49
50class ADNIE(ADNBaseIE):
51 _VALID_URL = r'https?://(?:www\.)?(?:animation|anime)digitalnetwork\.(?P<lang>fr|de)/video/[^/?#]+/(?P<id>\d+)'
db4678e4 52 _TESTS = [{
53 'url': 'https://animationdigitalnetwork.fr/video/fruits-basket/9841-episode-1-a-ce-soir',
54 'md5': '1c9ef066ceb302c86f80c2b371615261',
82be732b 55 'info_dict': {
db4678e4 56 'id': '9841',
82be732b 57 'ext': 'mp4',
db4678e4 58 'title': 'Fruits Basket - Episode 1',
59 'description': 'md5:14be2f72c3c96809b0ca424b0097d336',
60 'series': 'Fruits Basket',
61 'duration': 1437,
62 'release_date': '20190405',
30a074c2 63 'comment_count': int,
64 'average_rating': float,
db4678e4 65 'season_number': 1,
66 'episode': 'À ce soir !',
30a074c2 67 'episode_number': 1,
5eb1458b
CS
68 'thumbnail': str,
69 'season': 'Season 1',
db4678e4 70 },
5eb1458b 71 'skip': 'Only available in French and German speaking Europe',
db4678e4 72 }, {
73 'url': 'http://animedigitalnetwork.fr/video/blue-exorcist-kyoto-saga/7778-episode-1-debut-des-hostilites',
74 'only_matching': True,
5eb1458b
CS
75 }, {
76 'url': 'https://animationdigitalnetwork.de/video/the-eminence-in-shadow/23550-folge-1',
77 'md5': '5c5651bf5791fa6fcd7906012b9d94e8',
78 'info_dict': {
79 'id': '23550',
80 'ext': 'mp4',
81 'episode_number': 1,
82 'duration': 1417,
83 'release_date': '20231004',
84 'series': 'The Eminence in Shadow',
85 'season_number': 2,
86 'episode': str,
87 'title': str,
88 'thumbnail': str,
89 'season': 'Season 2',
90 'comment_count': int,
91 'average_rating': float,
92 'description': str,
93 },
94 # 'skip': 'Only available in French and German speaking Europe',
db4678e4 95 }]
30a074c2 96
30a074c2 97 def _get_subtitles(self, sub_url, video_id):
98 if not sub_url:
82be732b
RA
99 return None
100
101 enc_subtitles = self._download_webpage(
30a074c2 102 sub_url, video_id, 'Downloading subtitles location', fatal=False) or '{}'
e6c9ae31
RA
103 subtitle_location = (self._parse_json(enc_subtitles, video_id, fatal=False) or {}).get('location')
104 if subtitle_location:
105 enc_subtitles = self._download_webpage(
30a074c2 106 subtitle_location, video_id, 'Downloading subtitles data',
db4678e4 107 fatal=False, headers={'Origin': 'https://' + self._BASE})
82be732b
RA
108 if not enc_subtitles:
109 return None
110
db4678e4 111 # http://animationdigitalnetwork.fr/components/com_vodvideo/videojs/adn-vjs.min.js
1d3586d0 112 dec_subtitles = unpad_pkcs7(aes_cbc_decrypt_bytes(
add96eb9 113 base64.b64decode(enc_subtitles[24:]),
3358f893 114 binascii.unhexlify(self._K + '7fac1178830cfe0c'),
add96eb9 115 base64.b64decode(enc_subtitles[:24])))
1d3586d0 116 subtitles_json = self._parse_json(dec_subtitles.decode(), None, fatal=False)
82be732b
RA
117 if not subtitles_json:
118 return None
119
120 subtitles = {}
121 for sub_lang, sub in subtitles_json.items():
b966740c
RA
122 ssa = '''[Script Info]
123ScriptType:V4.00
124[V4 Styles]
2bbde1d0
RA
125Format: Name,Fontname,Fontsize,PrimaryColour,SecondaryColour,TertiaryColour,BackColour,Bold,Italic,BorderStyle,Outline,Shadow,Alignment,MarginL,MarginR,MarginV,AlphaLevel,Encoding
126Style: Default,Arial,18,16777215,16777215,16777215,0,-1,0,1,1,0,2,20,20,20,0,0
b966740c 127[Events]
2bbde1d0 128Format: Marked,Start,End,Style,Name,MarginL,MarginR,MarginV,Effect,Text'''
b966740c
RA
129 for current in sub:
130 start, end, text, line_align, position_align = (
82be732b
RA
131 float_or_none(current.get('startTime')),
132 float_or_none(current.get('endTime')),
b966740c
RA
133 current.get('text'), current.get('lineAlign'),
134 current.get('positionAlign'))
82be732b
RA
135 if start is None or end is None or text is None:
136 continue
b966740c 137 alignment = self._POS_ALIGN_MAP.get(position_align, 2) + self._LINE_ALIGN_MAP.get(line_align, 0)
add96eb9 138 ssa += os.linesep + 'Dialogue: Marked=0,{},{},Default,,0,0,0,,{}{}'.format(
aa7785f8 139 ass_subtitles_timecode(start),
140 ass_subtitles_timecode(end),
b966740c
RA
141 '{\\a%d}' % alignment if alignment != 2 else '',
142 text.replace('\n', '\\N').replace('<i>', '{\\i1}').replace('</i>', '{\\i0}'))
82be732b
RA
143
144 if sub_lang == 'vostf':
145 sub_lang = 'fr'
5eb1458b
CS
146 elif sub_lang == 'vostde':
147 sub_lang = 'de'
82be732b
RA
148 subtitles.setdefault(sub_lang, []).extend([{
149 'ext': 'json',
150 'data': json.dumps(sub),
151 }, {
b966740c
RA
152 'ext': 'ssa',
153 'data': ssa,
82be732b
RA
154 }])
155 return subtitles
156
52efa4b3 157 def _perform_login(self, username, password):
2181983a 158 try:
159 access_token = (self._download_json(
160 self._API_BASE_URL + 'authentication/login', None,
161 'Logging in', self._LOGIN_ERR_MESSAGE, fatal=False,
162 data=urlencode_postdata({
163 'password': password,
164 'rememberMe': False,
165 'source': 'Web',
166 'username': username,
167 })) or {}).get('accessToken')
168 if access_token:
169 self._HEADERS = {'authorization': 'Bearer ' + access_token}
170 except ExtractorError as e:
171 message = None
3d2623a8 172 if isinstance(e.cause, HTTPError) and e.cause.status == 401:
2181983a 173 resp = self._parse_json(
3d2623a8 174 e.cause.response.read().decode(), None, fatal=False) or {}
2181983a 175 message = resp.get('message') or resp.get('code')
176 self.report_warning(message or self._LOGIN_ERR_MESSAGE)
177
82be732b 178 def _real_extract(self, url):
5eb1458b 179 lang, video_id = self._match_valid_url(url).group('lang', 'id')
add96eb9 180 video_base_url = self._PLAYER_BASE_URL + f'video/{video_id}/'
30a074c2 181 player = self._download_json(
182 video_base_url + 'configuration', video_id,
2181983a 183 'Downloading player config JSON metadata',
184 headers=self._HEADERS)['player']
30a074c2 185 options = player['options']
186
187 user = options['user']
188 if not user.get('hasAccess'):
9526b1f1
CS
189 start_date = traverse_obj(options, ('video', 'startDate', {str}))
190 if (parse_iso8601(start_date) or 0) > time.time():
191 raise ExtractorError(f'This video is not available yet. Release date: {start_date}', expected=True)
192 self.raise_login_required('This video requires a subscription', method='password')
30a074c2 193
194 token = self._download_json(
195 user.get('refreshTokenUrl') or (self._PLAYER_BASE_URL + 'refresh/token'),
196 video_id, 'Downloading access token', headers={
5eb1458b 197 'X-Player-Refresh-Token': user['refreshToken'],
30a074c2 198 }, data=b'')['token']
199
200 links_url = try_get(options, lambda x: x['video']['url']) or (video_base_url + 'link')
efa944f4 201 self._K = ''.join(random.choices('0123456789abcdef', k=16))
30a074c2 202 message = bytes_to_intlist(json.dumps({
203 'k': self._K,
204 't': token,
205 }))
206
207 # Sometimes authentication fails for no good reason, retry with
208 # a different random padding
209 links_data = None
210 for _ in range(3):
1ea559c4
RA
211 padded_message = intlist_to_bytes(pkcs1pad(message, 128))
212 n, e = self._RSA_KEY
213 encrypted_message = long_to_bytes(pow(bytes_to_long(padded_message), e, n))
214 authorization = base64.b64encode(encrypted_message).decode()
30a074c2 215
216 try:
217 links_data = self._download_json(
218 links_url, video_id, 'Downloading links JSON metadata', headers={
5eb1458b
CS
219 'X-Player-Token': authorization,
220 'X-Target-Distribution': lang,
add96eb9 221 **self._HEADERS,
30a074c2 222 }, query={
223 'freeWithAds': 'true',
224 'adaptive': 'false',
225 'withMetadata': 'true',
add96eb9 226 'source': 'Web',
30a074c2 227 })
228 break
229 except ExtractorError as e:
3d2623a8 230 if not isinstance(e.cause, HTTPError):
30a074c2 231 raise e
232
3d2623a8 233 if e.cause.status == 401:
30a074c2 234 # This usually goes away with a different random pkcs1pad, so retry
235 continue
236
3d2623a8 237 error = self._parse_json(e.cause.response.read(), video_id)
30a074c2 238 message = error.get('message')
239 if e.cause.code == 403 and error.get('code') == 'player-bad-geolocation-country':
240 self.raise_geo_restricted(msg=message)
2181983a 241 raise ExtractorError(message)
30a074c2 242 else:
243 raise ExtractorError('Giving up retrying')
244
245 links = links_data.get('links') or {}
246 metas = links_data.get('metadata') or {}
247 sub_url = (links.get('subtitles') or {}).get('all')
248 video_info = links_data.get('video') or {}
249 title = metas['title']
82be732b
RA
250
251 formats = []
30a074c2 252 for format_id, qualities in (links.get('streaming') or {}).items():
20e2c9de
RA
253 if not isinstance(qualities, dict):
254 continue
b966740c 255 for quality, load_balancer_url in qualities.items():
82be732b 256 load_balancer_data = self._download_json(
b966740c 257 load_balancer_url, video_id,
add96eb9 258 f'Downloading {format_id} {quality} JSON metadata',
b966740c 259 fatal=False) or {}
82be732b
RA
260 m3u8_url = load_balancer_data.get('location')
261 if not m3u8_url:
262 continue
263 m3u8_formats = self._extract_m3u8_formats(
264 m3u8_url, video_id, 'mp4', 'm3u8_native',
265 m3u8_id=format_id, fatal=False)
266 if format_id == 'vf':
267 for f in m3u8_formats:
268 f['language'] = 'fr'
5eb1458b
CS
269 elif format_id == 'vde':
270 for f in m3u8_formats:
271 f['language'] = 'de'
82be732b 272 formats.extend(m3u8_formats)
82be732b 273
9526b1f1
CS
274 if not formats:
275 self.raise_login_required('This video requires a subscription', method='password')
276
30a074c2 277 video = (self._download_json(
add96eb9 278 self._API_BASE_URL + f'video/{video_id}', video_id,
30a074c2 279 'Downloading additional video metadata', fatal=False) or {}).get('video') or {}
280 show = video.get('show') or {}
281
82be732b
RA
282 return {
283 'id': video_id,
284 'title': title,
30a074c2 285 'description': strip_or_none(metas.get('summary') or video.get('summary')),
286 'thumbnail': video_info.get('image') or player.get('image'),
82be732b 287 'formats': formats,
30a074c2 288 'subtitles': self.extract_subtitles(sub_url, video_id),
289 'episode': metas.get('subtitle') or video.get('name'),
290 'episode_number': int_or_none(video.get('shortNumber')),
291 'series': show.get('title'),
292 'season_number': int_or_none(video.get('season')),
293 'duration': int_or_none(video_info.get('duration') or video.get('duration')),
294 'release_date': unified_strdate(video.get('releaseDate')),
295 'average_rating': float_or_none(video.get('rating') or metas.get('rating')),
296 'comment_count': int_or_none(video.get('commentsCount')),
82be732b 297 }
5eb1458b
CS
298
299
300class ADNSeasonIE(ADNBaseIE):
301 _VALID_URL = r'https?://(?:www\.)?(?:animation|anime)digitalnetwork\.(?P<lang>fr|de)/video/(?P<id>[^/?#]+)/?(?:$|[#?])'
302 _TESTS = [{
303 'url': 'https://animationdigitalnetwork.fr/video/tokyo-mew-mew-new',
304 'playlist_count': 12,
305 'info_dict': {
306 'id': '911',
307 'title': 'Tokyo Mew Mew New',
308 },
309 # 'skip': 'Only available in French end German speaking Europe',
310 }]
311
312 def _real_extract(self, url):
313 lang, video_show_slug = self._match_valid_url(url).group('lang', 'id')
314 show = self._download_json(
315 f'{self._API_BASE_URL}show/{video_show_slug}/', video_show_slug,
316 'Downloading show JSON metadata', headers=self._HEADERS)['show']
317 show_id = str(show['id'])
318 episodes = self._download_json(
319 f'{self._API_BASE_URL}video/show/{show_id}', video_show_slug,
320 'Downloading episode list', headers={
321 'X-Target-Distribution': lang,
add96eb9 322 **self._HEADERS,
5eb1458b
CS
323 }, query={
324 'order': 'asc',
325 'limit': '-1',
326 })
327
328 def entries():
329 for episode_id in traverse_obj(episodes, ('videos', ..., 'id', {str_or_none})):
330 yield self.url_result(
331 f'https://animationdigitalnetwork.{lang}/video/{video_show_slug}/{episode_id}',
332 ADNIE, episode_id)
333
334 return self.playlist_result(entries(), show_id, show.get('title'))