]> jfr.im git - yt-dlp.git/blame_incremental - yt_dlp/extractor/youtube.py
[youtube:search] Support hashtag entries (#3265)
[yt-dlp.git] / yt_dlp / extractor / youtube.py
... / ...
CommitLineData
1# coding: utf-8
2
3from __future__ import unicode_literals
4
5import calendar
6import copy
7import datetime
8import functools
9import hashlib
10import itertools
11import json
12import math
13import os.path
14import random
15import re
16import sys
17import time
18import traceback
19import threading
20
21from .common import InfoExtractor, SearchInfoExtractor
22from ..compat import (
23 compat_chr,
24 compat_HTTPError,
25 compat_parse_qs,
26 compat_str,
27 compat_urllib_parse_unquote_plus,
28 compat_urllib_parse_urlencode,
29 compat_urllib_parse_urlparse,
30 compat_urlparse,
31)
32from ..jsinterp import JSInterpreter
33from ..utils import (
34 bug_reports_message,
35 clean_html,
36 datetime_from_str,
37 dict_get,
38 error_to_compat_str,
39 ExtractorError,
40 float_or_none,
41 format_field,
42 get_first,
43 int_or_none,
44 is_html,
45 join_nonempty,
46 js_to_json,
47 mimetype2ext,
48 network_exceptions,
49 NO_DEFAULT,
50 orderedSet,
51 parse_codecs,
52 parse_count,
53 parse_duration,
54 parse_iso8601,
55 parse_qs,
56 qualities,
57 remove_end,
58 remove_start,
59 smuggle_url,
60 str_or_none,
61 str_to_int,
62 strftime_or_none,
63 traverse_obj,
64 try_get,
65 unescapeHTML,
66 unified_strdate,
67 unified_timestamp,
68 unsmuggle_url,
69 update_url_query,
70 url_or_none,
71 urljoin,
72 variadic,
73)
74
75
76# any clients starting with _ cannot be explicity requested by the user
77INNERTUBE_CLIENTS = {
78 'web': {
79 'INNERTUBE_API_KEY': 'AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8',
80 'INNERTUBE_CONTEXT': {
81 'client': {
82 'clientName': 'WEB',
83 'clientVersion': '2.20211221.00.00',
84 }
85 },
86 'INNERTUBE_CONTEXT_CLIENT_NAME': 1
87 },
88 'web_embedded': {
89 'INNERTUBE_API_KEY': 'AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8',
90 'INNERTUBE_CONTEXT': {
91 'client': {
92 'clientName': 'WEB_EMBEDDED_PLAYER',
93 'clientVersion': '1.20211215.00.01',
94 },
95 },
96 'INNERTUBE_CONTEXT_CLIENT_NAME': 56
97 },
98 'web_music': {
99 'INNERTUBE_API_KEY': 'AIzaSyC9XL3ZjWddXya6X74dJoCTL-WEYFDNX30',
100 'INNERTUBE_HOST': 'music.youtube.com',
101 'INNERTUBE_CONTEXT': {
102 'client': {
103 'clientName': 'WEB_REMIX',
104 'clientVersion': '1.20211213.00.00',
105 }
106 },
107 'INNERTUBE_CONTEXT_CLIENT_NAME': 67,
108 },
109 'web_creator': {
110 'INNERTUBE_API_KEY': 'AIzaSyBUPetSUmoZL-OhlxA7wSac5XinrygCqMo',
111 'INNERTUBE_CONTEXT': {
112 'client': {
113 'clientName': 'WEB_CREATOR',
114 'clientVersion': '1.20211220.02.00',
115 }
116 },
117 'INNERTUBE_CONTEXT_CLIENT_NAME': 62,
118 },
119 'android': {
120 'INNERTUBE_API_KEY': 'AIzaSyA8eiZmM1FaDVjRy-df2KTyQ_vz_yYM39w',
121 'INNERTUBE_CONTEXT': {
122 'client': {
123 'clientName': 'ANDROID',
124 'clientVersion': '16.49',
125 }
126 },
127 'INNERTUBE_CONTEXT_CLIENT_NAME': 3,
128 'REQUIRE_JS_PLAYER': False
129 },
130 'android_embedded': {
131 'INNERTUBE_API_KEY': 'AIzaSyCjc_pVEDi4qsv5MtC2dMXzpIaDoRFLsxw',
132 'INNERTUBE_CONTEXT': {
133 'client': {
134 'clientName': 'ANDROID_EMBEDDED_PLAYER',
135 'clientVersion': '16.49',
136 },
137 },
138 'INNERTUBE_CONTEXT_CLIENT_NAME': 55,
139 'REQUIRE_JS_PLAYER': False
140 },
141 'android_music': {
142 'INNERTUBE_API_KEY': 'AIzaSyAOghZGza2MQSZkY_zfZ370N-PUdXEo8AI',
143 'INNERTUBE_CONTEXT': {
144 'client': {
145 'clientName': 'ANDROID_MUSIC',
146 'clientVersion': '4.57',
147 }
148 },
149 'INNERTUBE_CONTEXT_CLIENT_NAME': 21,
150 'REQUIRE_JS_PLAYER': False
151 },
152 'android_creator': {
153 'INNERTUBE_API_KEY': 'AIzaSyD_qjV8zaaUMehtLkrKFgVeSX_Iqbtyws8',
154 'INNERTUBE_CONTEXT': {
155 'client': {
156 'clientName': 'ANDROID_CREATOR',
157 'clientVersion': '21.47',
158 },
159 },
160 'INNERTUBE_CONTEXT_CLIENT_NAME': 14,
161 'REQUIRE_JS_PLAYER': False
162 },
163 # iOS clients have HLS live streams. Setting device model to get 60fps formats.
164 # See: https://github.com/TeamNewPipe/NewPipeExtractor/issues/680#issuecomment-1002724558
165 'ios': {
166 'INNERTUBE_API_KEY': 'AIzaSyB-63vPrdThhKuerbB2N_l7Kwwcxj6yUAc',
167 'INNERTUBE_CONTEXT': {
168 'client': {
169 'clientName': 'IOS',
170 'clientVersion': '16.46',
171 'deviceModel': 'iPhone14,3',
172 }
173 },
174 'INNERTUBE_CONTEXT_CLIENT_NAME': 5,
175 'REQUIRE_JS_PLAYER': False
176 },
177 'ios_embedded': {
178 'INNERTUBE_CONTEXT': {
179 'client': {
180 'clientName': 'IOS_MESSAGES_EXTENSION',
181 'clientVersion': '16.46',
182 'deviceModel': 'iPhone14,3',
183 },
184 },
185 'INNERTUBE_CONTEXT_CLIENT_NAME': 66,
186 'REQUIRE_JS_PLAYER': False
187 },
188 'ios_music': {
189 'INNERTUBE_API_KEY': 'AIzaSyBAETezhkwP0ZWA02RsqT1zu78Fpt0bC_s',
190 'INNERTUBE_CONTEXT': {
191 'client': {
192 'clientName': 'IOS_MUSIC',
193 'clientVersion': '4.57',
194 },
195 },
196 'INNERTUBE_CONTEXT_CLIENT_NAME': 26,
197 'REQUIRE_JS_PLAYER': False
198 },
199 'ios_creator': {
200 'INNERTUBE_CONTEXT': {
201 'client': {
202 'clientName': 'IOS_CREATOR',
203 'clientVersion': '21.47',
204 },
205 },
206 'INNERTUBE_CONTEXT_CLIENT_NAME': 15,
207 'REQUIRE_JS_PLAYER': False
208 },
209 # mweb has 'ultralow' formats
210 # See: https://github.com/yt-dlp/yt-dlp/pull/557
211 'mweb': {
212 'INNERTUBE_API_KEY': 'AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8',
213 'INNERTUBE_CONTEXT': {
214 'client': {
215 'clientName': 'MWEB',
216 'clientVersion': '2.20211221.01.00',
217 }
218 },
219 'INNERTUBE_CONTEXT_CLIENT_NAME': 2
220 },
221 # This client can access age restricted videos (unless the uploader has disabled the 'allow embedding' option)
222 # See: https://github.com/zerodytrash/YouTube-Internal-Clients
223 'tv_embedded': {
224 'INNERTUBE_API_KEY': 'AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8',
225 'INNERTUBE_CONTEXT': {
226 'client': {
227 'clientName': 'TVHTML5_SIMPLY_EMBEDDED_PLAYER',
228 'clientVersion': '2.0',
229 },
230 },
231 'INNERTUBE_CONTEXT_CLIENT_NAME': 85
232 },
233}
234
235
236def _split_innertube_client(client_name):
237 variant, *base = client_name.rsplit('.', 1)
238 if base:
239 return variant, base[0], variant
240 base, *variant = client_name.split('_', 1)
241 return client_name, base, variant[0] if variant else None
242
243
244def build_innertube_clients():
245 THIRD_PARTY = {
246 'embedUrl': 'https://www.youtube.com/', # Can be any valid URL
247 }
248 BASE_CLIENTS = ('android', 'web', 'tv', 'ios', 'mweb')
249 priority = qualities(BASE_CLIENTS[::-1])
250
251 for client, ytcfg in tuple(INNERTUBE_CLIENTS.items()):
252 ytcfg.setdefault('INNERTUBE_API_KEY', 'AIzaSyDCU8hByM-4DrUqRUYnGn-3llEO78bcxq8')
253 ytcfg.setdefault('INNERTUBE_HOST', 'www.youtube.com')
254 ytcfg.setdefault('REQUIRE_JS_PLAYER', True)
255 ytcfg['INNERTUBE_CONTEXT']['client'].setdefault('hl', 'en')
256
257 _, base_client, variant = _split_innertube_client(client)
258 ytcfg['priority'] = 10 * priority(base_client)
259
260 if not variant:
261 INNERTUBE_CLIENTS[f'{client}_embedscreen'] = embedscreen = copy.deepcopy(ytcfg)
262 embedscreen['INNERTUBE_CONTEXT']['client']['clientScreen'] = 'EMBED'
263 embedscreen['INNERTUBE_CONTEXT']['thirdParty'] = THIRD_PARTY
264 embedscreen['priority'] -= 3
265 elif variant == 'embedded':
266 ytcfg['INNERTUBE_CONTEXT']['thirdParty'] = THIRD_PARTY
267 ytcfg['priority'] -= 2
268 else:
269 ytcfg['priority'] -= 3
270
271
272build_innertube_clients()
273
274
275class YoutubeBaseInfoExtractor(InfoExtractor):
276 """Provide base functions for Youtube extractors"""
277
278 _RESERVED_NAMES = (
279 r'channel|c|user|playlist|watch|w|v|embed|e|watch_popup|clip|'
280 r'shorts|movies|results|search|shared|hashtag|trending|explore|feed|feeds|'
281 r'browse|oembed|get_video_info|iframe_api|s/player|'
282 r'storefront|oops|index|account|reporthistory|t/terms|about|upload|signin|logout')
283
284 _PLAYLIST_ID_RE = r'(?:(?:PL|LL|EC|UU|FL|RD|UL|TL|PU|OLAK5uy_)[0-9A-Za-z-_]{10,}|RDMM|WL|LL|LM)'
285
286 # _NETRC_MACHINE = 'youtube'
287
288 # If True it will raise an error if no login info is provided
289 _LOGIN_REQUIRED = False
290
291 _INVIDIOUS_SITES = (
292 # invidious-redirect websites
293 r'(?:www\.)?redirect\.invidious\.io',
294 r'(?:(?:www|dev)\.)?invidio\.us',
295 # Invidious instances taken from https://github.com/iv-org/documentation/blob/master/Invidious-Instances.md
296 r'(?:www\.)?invidious\.pussthecat\.org',
297 r'(?:www\.)?invidious\.zee\.li',
298 r'(?:www\.)?invidious\.ethibox\.fr',
299 r'(?:www\.)?invidious\.3o7z6yfxhbw7n3za4rss6l434kmv55cgw2vuziwuigpwegswvwzqipyd\.onion',
300 r'(?:www\.)?osbivz6guyeahrwp2lnwyjk2xos342h4ocsxyqrlaopqjuhwn2djiiyd\.onion',
301 r'(?:www\.)?u2cvlit75owumwpy4dj2hsmvkq7nvrclkpht7xgyye2pyoxhpmclkrad\.onion',
302 # youtube-dl invidious instances list
303 r'(?:(?:www|no)\.)?invidiou\.sh',
304 r'(?:(?:www|fi)\.)?invidious\.snopyta\.org',
305 r'(?:www\.)?invidious\.kabi\.tk',
306 r'(?:www\.)?invidious\.mastodon\.host',
307 r'(?:www\.)?invidious\.zapashcanon\.fr',
308 r'(?:www\.)?(?:invidious(?:-us)?|piped)\.kavin\.rocks',
309 r'(?:www\.)?invidious\.tinfoil-hat\.net',
310 r'(?:www\.)?invidious\.himiko\.cloud',
311 r'(?:www\.)?invidious\.reallyancient\.tech',
312 r'(?:www\.)?invidious\.tube',
313 r'(?:www\.)?invidiou\.site',
314 r'(?:www\.)?invidious\.site',
315 r'(?:www\.)?invidious\.xyz',
316 r'(?:www\.)?invidious\.nixnet\.xyz',
317 r'(?:www\.)?invidious\.048596\.xyz',
318 r'(?:www\.)?invidious\.drycat\.fr',
319 r'(?:www\.)?inv\.skyn3t\.in',
320 r'(?:www\.)?tube\.poal\.co',
321 r'(?:www\.)?tube\.connect\.cafe',
322 r'(?:www\.)?vid\.wxzm\.sx',
323 r'(?:www\.)?vid\.mint\.lgbt',
324 r'(?:www\.)?vid\.puffyan\.us',
325 r'(?:www\.)?yewtu\.be',
326 r'(?:www\.)?yt\.elukerio\.org',
327 r'(?:www\.)?yt\.lelux\.fi',
328 r'(?:www\.)?invidious\.ggc-project\.de',
329 r'(?:www\.)?yt\.maisputain\.ovh',
330 r'(?:www\.)?ytprivate\.com',
331 r'(?:www\.)?invidious\.13ad\.de',
332 r'(?:www\.)?invidious\.toot\.koeln',
333 r'(?:www\.)?invidious\.fdn\.fr',
334 r'(?:www\.)?watch\.nettohikari\.com',
335 r'(?:www\.)?invidious\.namazso\.eu',
336 r'(?:www\.)?invidious\.silkky\.cloud',
337 r'(?:www\.)?invidious\.exonip\.de',
338 r'(?:www\.)?invidious\.riverside\.rocks',
339 r'(?:www\.)?invidious\.blamefran\.net',
340 r'(?:www\.)?invidious\.moomoo\.de',
341 r'(?:www\.)?ytb\.trom\.tf',
342 r'(?:www\.)?yt\.cyberhost\.uk',
343 r'(?:www\.)?kgg2m7yk5aybusll\.onion',
344 r'(?:www\.)?qklhadlycap4cnod\.onion',
345 r'(?:www\.)?axqzx4s6s54s32yentfqojs3x5i7faxza6xo3ehd4bzzsg2ii4fv2iid\.onion',
346 r'(?:www\.)?c7hqkpkpemu6e7emz5b4vyz7idjgdvgaaa3dyimmeojqbgpea3xqjoid\.onion',
347 r'(?:www\.)?fz253lmuao3strwbfbmx46yu7acac2jz27iwtorgmbqlkurlclmancad\.onion',
348 r'(?:www\.)?invidious\.l4qlywnpwqsluw65ts7md3khrivpirse744un3x7mlskqauz5pyuzgqd\.onion',
349 r'(?:www\.)?owxfohz4kjyv25fvlqilyxast7inivgiktls3th44jhk3ej3i7ya\.b32\.i2p',
350 r'(?:www\.)?4l2dgddgsrkf2ous66i6seeyi6etzfgrue332grh2n7madpwopotugyd\.onion',
351 r'(?:www\.)?w6ijuptxiku4xpnnaetxvnkc5vqcdu7mgns2u77qefoixi63vbvnpnqd\.onion',
352 r'(?:www\.)?kbjggqkzv65ivcqj6bumvp337z6264huv5kpkwuv6gu5yjiskvan7fad\.onion',
353 r'(?:www\.)?grwp24hodrefzvjjuccrkw3mjq4tzhaaq32amf33dzpmuxe7ilepcmad\.onion',
354 r'(?:www\.)?hpniueoejy4opn7bc4ftgazyqjoeqwlvh2uiku2xqku6zpoa4bf5ruid\.onion',
355 )
356
357 def _initialize_consent(self):
358 cookies = self._get_cookies('https://www.youtube.com/')
359 if cookies.get('__Secure-3PSID'):
360 return
361 consent_id = None
362 consent = cookies.get('CONSENT')
363 if consent:
364 if 'YES' in consent.value:
365 return
366 consent_id = self._search_regex(
367 r'PENDING\+(\d+)', consent.value, 'consent', default=None)
368 if not consent_id:
369 consent_id = random.randint(100, 999)
370 self._set_cookie('.youtube.com', 'CONSENT', 'YES+cb.20210328-17-p0.en+FX+%s' % consent_id)
371
372 def _initialize_pref(self):
373 cookies = self._get_cookies('https://www.youtube.com/')
374 pref_cookie = cookies.get('PREF')
375 pref = {}
376 if pref_cookie:
377 try:
378 pref = dict(compat_urlparse.parse_qsl(pref_cookie.value))
379 except ValueError:
380 self.report_warning('Failed to parse user PREF cookie' + bug_reports_message())
381 pref.update({'hl': 'en', 'tz': 'UTC'})
382 self._set_cookie('.youtube.com', name='PREF', value=compat_urllib_parse_urlencode(pref))
383
384 def _real_initialize(self):
385 self._initialize_pref()
386 self._initialize_consent()
387 if (self._LOGIN_REQUIRED
388 and self.get_param('cookiefile') is None
389 and self.get_param('cookiesfrombrowser') is None):
390 self.raise_login_required('Login details are needed to download this content', method='cookies')
391
392 _YT_INITIAL_DATA_RE = r'(?:window\s*\[\s*["\']ytInitialData["\']\s*\]|ytInitialData)\s*=\s*({.+?})\s*;'
393 _YT_INITIAL_PLAYER_RESPONSE_RE = r'ytInitialPlayerResponse\s*=\s*({.+?})\s*;'
394 _YT_INITIAL_BOUNDARY_RE = r'(?:var\s+meta|</script|\n)'
395
396 def _get_default_ytcfg(self, client='web'):
397 return copy.deepcopy(INNERTUBE_CLIENTS[client])
398
399 def _get_innertube_host(self, client='web'):
400 return INNERTUBE_CLIENTS[client]['INNERTUBE_HOST']
401
402 def _ytcfg_get_safe(self, ytcfg, getter, expected_type=None, default_client='web'):
403 # try_get but with fallback to default ytcfg client values when present
404 _func = lambda y: try_get(y, getter, expected_type)
405 return _func(ytcfg) or _func(self._get_default_ytcfg(default_client))
406
407 def _extract_client_name(self, ytcfg, default_client='web'):
408 return self._ytcfg_get_safe(
409 ytcfg, (lambda x: x['INNERTUBE_CLIENT_NAME'],
410 lambda x: x['INNERTUBE_CONTEXT']['client']['clientName']), compat_str, default_client)
411
412 def _extract_client_version(self, ytcfg, default_client='web'):
413 return self._ytcfg_get_safe(
414 ytcfg, (lambda x: x['INNERTUBE_CLIENT_VERSION'],
415 lambda x: x['INNERTUBE_CONTEXT']['client']['clientVersion']), compat_str, default_client)
416
417 def _extract_api_key(self, ytcfg=None, default_client='web'):
418 return self._ytcfg_get_safe(ytcfg, lambda x: x['INNERTUBE_API_KEY'], compat_str, default_client)
419
420 def _extract_context(self, ytcfg=None, default_client='web'):
421 context = get_first(
422 (ytcfg, self._get_default_ytcfg(default_client)), 'INNERTUBE_CONTEXT', expected_type=dict)
423 # Enforce language and tz for extraction
424 client_context = traverse_obj(context, 'client', expected_type=dict, default={})
425 client_context.update({'hl': 'en', 'timeZone': 'UTC', 'utcOffsetMinutes': 0})
426 return context
427
428 _SAPISID = None
429
430 def _generate_sapisidhash_header(self, origin='https://www.youtube.com'):
431 time_now = round(time.time())
432 if self._SAPISID is None:
433 yt_cookies = self._get_cookies('https://www.youtube.com')
434 # Sometimes SAPISID cookie isn't present but __Secure-3PAPISID is.
435 # See: https://github.com/yt-dlp/yt-dlp/issues/393
436 sapisid_cookie = dict_get(
437 yt_cookies, ('__Secure-3PAPISID', 'SAPISID'))
438 if sapisid_cookie and sapisid_cookie.value:
439 self._SAPISID = sapisid_cookie.value
440 self.write_debug('Extracted SAPISID cookie')
441 # SAPISID cookie is required if not already present
442 if not yt_cookies.get('SAPISID'):
443 self.write_debug('Copying __Secure-3PAPISID cookie to SAPISID cookie')
444 self._set_cookie(
445 '.youtube.com', 'SAPISID', self._SAPISID, secure=True, expire_time=time_now + 3600)
446 else:
447 self._SAPISID = False
448 if not self._SAPISID:
449 return None
450 # SAPISIDHASH algorithm from https://stackoverflow.com/a/32065323
451 sapisidhash = hashlib.sha1(
452 f'{time_now} {self._SAPISID} {origin}'.encode('utf-8')).hexdigest()
453 return f'SAPISIDHASH {time_now}_{sapisidhash}'
454
455 def _call_api(self, ep, query, video_id, fatal=True, headers=None,
456 note='Downloading API JSON', errnote='Unable to download API page',
457 context=None, api_key=None, api_hostname=None, default_client='web'):
458
459 data = {'context': context} if context else {'context': self._extract_context(default_client=default_client)}
460 data.update(query)
461 real_headers = self.generate_api_headers(default_client=default_client)
462 real_headers.update({'content-type': 'application/json'})
463 if headers:
464 real_headers.update(headers)
465 return self._download_json(
466 'https://%s/youtubei/v1/%s' % (api_hostname or self._get_innertube_host(default_client), ep),
467 video_id=video_id, fatal=fatal, note=note, errnote=errnote,
468 data=json.dumps(data).encode('utf8'), headers=real_headers,
469 query={'key': api_key or self._extract_api_key(), 'prettyPrint': 'false'})
470
471 def extract_yt_initial_data(self, item_id, webpage, fatal=True):
472 data = self._search_regex(
473 (r'%s\s*%s' % (self._YT_INITIAL_DATA_RE, self._YT_INITIAL_BOUNDARY_RE),
474 self._YT_INITIAL_DATA_RE), webpage, 'yt initial data', fatal=fatal)
475 if data:
476 return self._parse_json(data, item_id, fatal=fatal)
477
478 @staticmethod
479 def _extract_session_index(*data):
480 """
481 Index of current account in account list.
482 See: https://github.com/yt-dlp/yt-dlp/pull/519
483 """
484 for ytcfg in data:
485 session_index = int_or_none(try_get(ytcfg, lambda x: x['SESSION_INDEX']))
486 if session_index is not None:
487 return session_index
488
489 # Deprecated?
490 def _extract_identity_token(self, ytcfg=None, webpage=None):
491 if ytcfg:
492 token = try_get(ytcfg, lambda x: x['ID_TOKEN'], compat_str)
493 if token:
494 return token
495 if webpage:
496 return self._search_regex(
497 r'\bID_TOKEN["\']\s*:\s*["\'](.+?)["\']', webpage,
498 'identity token', default=None, fatal=False)
499
500 @staticmethod
501 def _extract_account_syncid(*args):
502 """
503 Extract syncId required to download private playlists of secondary channels
504 @params response and/or ytcfg
505 """
506 for data in args:
507 # ytcfg includes channel_syncid if on secondary channel
508 delegated_sid = try_get(data, lambda x: x['DELEGATED_SESSION_ID'], compat_str)
509 if delegated_sid:
510 return delegated_sid
511 sync_ids = (try_get(
512 data, (lambda x: x['responseContext']['mainAppWebResponseContext']['datasyncId'],
513 lambda x: x['DATASYNC_ID']), compat_str) or '').split('||')
514 if len(sync_ids) >= 2 and sync_ids[1]:
515 # datasyncid is of the form "channel_syncid||user_syncid" for secondary channel
516 # and just "user_syncid||" for primary channel. We only want the channel_syncid
517 return sync_ids[0]
518
519 @staticmethod
520 def _extract_visitor_data(*args):
521 """
522 Extracts visitorData from an API response or ytcfg
523 Appears to be used to track session state
524 """
525 return get_first(
526 args, [('VISITOR_DATA', ('INNERTUBE_CONTEXT', 'client', 'visitorData'), ('responseContext', 'visitorData'))],
527 expected_type=str)
528
529 @property
530 def is_authenticated(self):
531 return bool(self._generate_sapisidhash_header())
532
533 def extract_ytcfg(self, video_id, webpage):
534 if not webpage:
535 return {}
536 return self._parse_json(
537 self._search_regex(
538 r'ytcfg\.set\s*\(\s*({.+?})\s*\)\s*;', webpage, 'ytcfg',
539 default='{}'), video_id, fatal=False) or {}
540
541 def generate_api_headers(
542 self, *, ytcfg=None, account_syncid=None, session_index=None,
543 visitor_data=None, identity_token=None, api_hostname=None, default_client='web'):
544
545 origin = 'https://' + (api_hostname if api_hostname else self._get_innertube_host(default_client))
546 headers = {
547 'X-YouTube-Client-Name': compat_str(
548 self._ytcfg_get_safe(ytcfg, lambda x: x['INNERTUBE_CONTEXT_CLIENT_NAME'], default_client=default_client)),
549 'X-YouTube-Client-Version': self._extract_client_version(ytcfg, default_client),
550 'Origin': origin,
551 'X-Youtube-Identity-Token': identity_token or self._extract_identity_token(ytcfg),
552 'X-Goog-PageId': account_syncid or self._extract_account_syncid(ytcfg),
553 'X-Goog-Visitor-Id': visitor_data or self._extract_visitor_data(ytcfg)
554 }
555 if session_index is None:
556 session_index = self._extract_session_index(ytcfg)
557 if account_syncid or session_index is not None:
558 headers['X-Goog-AuthUser'] = session_index if session_index is not None else 0
559
560 auth = self._generate_sapisidhash_header(origin)
561 if auth is not None:
562 headers['Authorization'] = auth
563 headers['X-Origin'] = origin
564 return {h: v for h, v in headers.items() if v is not None}
565
566 @staticmethod
567 def _build_api_continuation_query(continuation, ctp=None):
568 query = {
569 'continuation': continuation
570 }
571 # TODO: Inconsistency with clickTrackingParams.
572 # Currently we have a fixed ctp contained within context (from ytcfg)
573 # and a ctp in root query for continuation.
574 if ctp:
575 query['clickTracking'] = {'clickTrackingParams': ctp}
576 return query
577
578 @classmethod
579 def _extract_next_continuation_data(cls, renderer):
580 next_continuation = try_get(
581 renderer, (lambda x: x['continuations'][0]['nextContinuationData'],
582 lambda x: x['continuation']['reloadContinuationData']), dict)
583 if not next_continuation:
584 return
585 continuation = next_continuation.get('continuation')
586 if not continuation:
587 return
588 ctp = next_continuation.get('clickTrackingParams')
589 return cls._build_api_continuation_query(continuation, ctp)
590
591 @classmethod
592 def _extract_continuation_ep_data(cls, continuation_ep: dict):
593 if isinstance(continuation_ep, dict):
594 continuation = try_get(
595 continuation_ep, lambda x: x['continuationCommand']['token'], compat_str)
596 if not continuation:
597 return
598 ctp = continuation_ep.get('clickTrackingParams')
599 return cls._build_api_continuation_query(continuation, ctp)
600
601 @classmethod
602 def _extract_continuation(cls, renderer):
603 next_continuation = cls._extract_next_continuation_data(renderer)
604 if next_continuation:
605 return next_continuation
606
607 contents = []
608 for key in ('contents', 'items'):
609 contents.extend(try_get(renderer, lambda x: x[key], list) or [])
610
611 for content in contents:
612 if not isinstance(content, dict):
613 continue
614 continuation_ep = try_get(
615 content, (lambda x: x['continuationItemRenderer']['continuationEndpoint'],
616 lambda x: x['continuationItemRenderer']['button']['buttonRenderer']['command']),
617 dict)
618 continuation = cls._extract_continuation_ep_data(continuation_ep)
619 if continuation:
620 return continuation
621
622 @classmethod
623 def _extract_alerts(cls, data):
624 for alert_dict in try_get(data, lambda x: x['alerts'], list) or []:
625 if not isinstance(alert_dict, dict):
626 continue
627 for alert in alert_dict.values():
628 alert_type = alert.get('type')
629 if not alert_type:
630 continue
631 message = cls._get_text(alert, 'text')
632 if message:
633 yield alert_type, message
634
635 def _report_alerts(self, alerts, expected=True, fatal=True, only_once=False):
636 errors = []
637 warnings = []
638 for alert_type, alert_message in alerts:
639 if alert_type.lower() == 'error' and fatal:
640 errors.append([alert_type, alert_message])
641 else:
642 warnings.append([alert_type, alert_message])
643
644 for alert_type, alert_message in (warnings + errors[:-1]):
645 self.report_warning('YouTube said: %s - %s' % (alert_type, alert_message), only_once=only_once)
646 if errors:
647 raise ExtractorError('YouTube said: %s' % errors[-1][1], expected=expected)
648
649 def _extract_and_report_alerts(self, data, *args, **kwargs):
650 return self._report_alerts(self._extract_alerts(data), *args, **kwargs)
651
652 def _extract_badges(self, renderer: dict):
653 badges = set()
654 for badge in try_get(renderer, lambda x: x['badges'], list) or []:
655 label = try_get(badge, lambda x: x['metadataBadgeRenderer']['label'], compat_str)
656 if label:
657 badges.add(label.lower())
658 return badges
659
660 @staticmethod
661 def _get_text(data, *path_list, max_runs=None):
662 for path in path_list or [None]:
663 if path is None:
664 obj = [data]
665 else:
666 obj = traverse_obj(data, path, default=[])
667 if not any(key is ... or isinstance(key, (list, tuple)) for key in variadic(path)):
668 obj = [obj]
669 for item in obj:
670 text = try_get(item, lambda x: x['simpleText'], compat_str)
671 if text:
672 return text
673 runs = try_get(item, lambda x: x['runs'], list) or []
674 if not runs and isinstance(item, list):
675 runs = item
676
677 runs = runs[:min(len(runs), max_runs or len(runs))]
678 text = ''.join(traverse_obj(runs, (..., 'text'), expected_type=str, default=[]))
679 if text:
680 return text
681
682 def _get_count(self, data, *path_list):
683 count_text = self._get_text(data, *path_list) or ''
684 count = parse_count(count_text)
685 if count is None:
686 count = str_to_int(
687 self._search_regex(r'^([\d,]+)', re.sub(r'\s', '', count_text), 'count', default=None))
688 return count
689
690 @staticmethod
691 def _extract_thumbnails(data, *path_list):
692 """
693 Extract thumbnails from thumbnails dict
694 @param path_list: path list to level that contains 'thumbnails' key
695 """
696 thumbnails = []
697 for path in path_list or [()]:
698 for thumbnail in traverse_obj(data, (*variadic(path), 'thumbnails', ...), default=[]):
699 thumbnail_url = url_or_none(thumbnail.get('url'))
700 if not thumbnail_url:
701 continue
702 # Sometimes youtube gives a wrong thumbnail URL. See:
703 # https://github.com/yt-dlp/yt-dlp/issues/233
704 # https://github.com/ytdl-org/youtube-dl/issues/28023
705 if 'maxresdefault' in thumbnail_url:
706 thumbnail_url = thumbnail_url.split('?')[0]
707 thumbnails.append({
708 'url': thumbnail_url,
709 'height': int_or_none(thumbnail.get('height')),
710 'width': int_or_none(thumbnail.get('width')),
711 })
712 return thumbnails
713
714 @staticmethod
715 def extract_relative_time(relative_time_text):
716 """
717 Extracts a relative time from string and converts to dt object
718 e.g. 'streamed 6 days ago', '5 seconds ago (edited)', 'updated today'
719 """
720 mobj = re.search(r'(?P<start>today|yesterday|now)|(?P<time>\d+)\s*(?P<unit>microsecond|second|minute|hour|day|week|month|year)s?\s*ago', relative_time_text)
721 if mobj:
722 start = mobj.group('start')
723 if start:
724 return datetime_from_str(start)
725 try:
726 return datetime_from_str('now-%s%s' % (mobj.group('time'), mobj.group('unit')))
727 except ValueError:
728 return None
729
730 def _extract_time_text(self, renderer, *path_list):
731 text = self._get_text(renderer, *path_list) or ''
732 dt = self.extract_relative_time(text)
733 timestamp = None
734 if isinstance(dt, datetime.datetime):
735 timestamp = calendar.timegm(dt.timetuple())
736
737 if timestamp is None:
738 timestamp = (
739 unified_timestamp(text) or unified_timestamp(
740 self._search_regex(
741 (r'([a-z]+\s*\d{1,2},?\s*20\d{2})', r'(?:.+|^)(?:live|premieres|ed|ing)(?:\s*(?:on|for))?\s*(.+\d)'),
742 text.lower(), 'time text', default=None)))
743
744 if text and timestamp is None:
745 self.report_warning(f"Cannot parse localized time text '{text}'" + bug_reports_message(), only_once=True)
746 return timestamp, text
747
748 def _extract_response(self, item_id, query, note='Downloading API JSON', headers=None,
749 ytcfg=None, check_get_keys=None, ep='browse', fatal=True, api_hostname=None,
750 default_client='web'):
751 response = None
752 last_error = None
753 count = -1
754 retries = self.get_param('extractor_retries', 3)
755 if check_get_keys is None:
756 check_get_keys = []
757 while count < retries:
758 count += 1
759 if last_error:
760 self.report_warning('%s. Retrying ...' % remove_end(last_error, '.'))
761 try:
762 response = self._call_api(
763 ep=ep, fatal=True, headers=headers,
764 video_id=item_id, query=query,
765 context=self._extract_context(ytcfg, default_client),
766 api_key=self._extract_api_key(ytcfg, default_client),
767 api_hostname=api_hostname, default_client=default_client,
768 note='%s%s' % (note, ' (retry #%d)' % count if count else ''))
769 except ExtractorError as e:
770 if isinstance(e.cause, network_exceptions):
771 if isinstance(e.cause, compat_HTTPError):
772 first_bytes = e.cause.read(512)
773 if not is_html(first_bytes):
774 yt_error = try_get(
775 self._parse_json(
776 self._webpage_read_content(e.cause, None, item_id, prefix=first_bytes) or '{}', item_id, fatal=False),
777 lambda x: x['error']['message'], compat_str)
778 if yt_error:
779 self._report_alerts([('ERROR', yt_error)], fatal=False)
780 # Downloading page may result in intermittent 5xx HTTP error
781 # Sometimes a 404 is also recieved. See: https://github.com/ytdl-org/youtube-dl/issues/28289
782 # We also want to catch all other network exceptions since errors in later pages can be troublesome
783 # See https://github.com/yt-dlp/yt-dlp/issues/507#issuecomment-880188210
784 if not isinstance(e.cause, compat_HTTPError) or e.cause.code not in (403, 429):
785 last_error = error_to_compat_str(e.cause or e.msg)
786 if count < retries:
787 continue
788 if fatal:
789 raise
790 else:
791 self.report_warning(error_to_compat_str(e))
792 return
793
794 else:
795 try:
796 self._extract_and_report_alerts(response, only_once=True)
797 except ExtractorError as e:
798 # YouTube servers may return errors we want to retry on in a 200 OK response
799 # See: https://github.com/yt-dlp/yt-dlp/issues/839
800 if 'unknown error' in e.msg.lower():
801 last_error = e.msg
802 continue
803 if fatal:
804 raise
805 self.report_warning(error_to_compat_str(e))
806 return
807 if not check_get_keys or dict_get(response, check_get_keys):
808 break
809 # Youtube sometimes sends incomplete data
810 # See: https://github.com/ytdl-org/youtube-dl/issues/28194
811 last_error = 'Incomplete data received'
812 if count >= retries:
813 if fatal:
814 raise ExtractorError(last_error)
815 else:
816 self.report_warning(last_error)
817 return
818 return response
819
820 @staticmethod
821 def is_music_url(url):
822 return re.match(r'https?://music\.youtube\.com/', url) is not None
823
824 def _extract_video(self, renderer):
825 video_id = renderer.get('videoId')
826 title = self._get_text(renderer, 'title')
827 description = self._get_text(renderer, 'descriptionSnippet')
828 duration = parse_duration(self._get_text(
829 renderer, 'lengthText', ('thumbnailOverlays', ..., 'thumbnailOverlayTimeStatusRenderer', 'text')))
830 if duration is None:
831 duration = parse_duration(self._search_regex(
832 r'(?i)(ago)(?!.*\1)\s+(?P<duration>[a-z0-9 ,]+?)(?:\s+[\d,]+\s+views)?(?:\s+-\s+play\s+short)?$',
833 traverse_obj(renderer, ('title', 'accessibility', 'accessibilityData', 'label'), default='', expected_type=str),
834 video_id, default=None, group='duration'))
835
836 view_count = self._get_count(renderer, 'viewCountText')
837
838 uploader = self._get_text(renderer, 'ownerText', 'shortBylineText')
839 channel_id = traverse_obj(
840 renderer, ('shortBylineText', 'runs', ..., 'navigationEndpoint', 'browseEndpoint', 'browseId'), expected_type=str, get_all=False)
841 timestamp, time_text = self._extract_time_text(renderer, 'publishedTimeText')
842 scheduled_timestamp = str_to_int(traverse_obj(renderer, ('upcomingEventData', 'startTime'), get_all=False))
843 overlay_style = traverse_obj(
844 renderer, ('thumbnailOverlays', ..., 'thumbnailOverlayTimeStatusRenderer', 'style'), get_all=False, expected_type=str)
845 badges = self._extract_badges(renderer)
846 thumbnails = self._extract_thumbnails(renderer, 'thumbnail')
847 navigation_url = urljoin('https://www.youtube.com/', traverse_obj(
848 renderer, ('navigationEndpoint', 'commandMetadata', 'webCommandMetadata', 'url'), expected_type=str))
849 url = f'https://www.youtube.com/watch?v={video_id}'
850 if overlay_style == 'SHORTS' or (navigation_url and '/shorts/' in navigation_url):
851 url = f'https://www.youtube.com/shorts/{video_id}'
852
853 return {
854 '_type': 'url',
855 'ie_key': YoutubeIE.ie_key(),
856 'id': video_id,
857 'url': url,
858 'title': title,
859 'description': description,
860 'duration': duration,
861 'view_count': view_count,
862 'uploader': uploader,
863 'channel_id': channel_id,
864 'thumbnails': thumbnails,
865 'upload_date': strftime_or_none(timestamp, '%Y%m%d') if self._configuration_arg('approximate_date', ie_key='youtubetab') else None,
866 'live_status': ('is_upcoming' if scheduled_timestamp is not None
867 else 'was_live' if 'streamed' in time_text.lower()
868 else 'is_live' if overlay_style is not None and overlay_style == 'LIVE' or 'live now' in badges
869 else None),
870 'release_timestamp': scheduled_timestamp,
871 'availability': self._availability(needs_premium='premium' in badges, needs_subscription='members only' in badges)
872 }
873
874
875class YoutubeIE(YoutubeBaseInfoExtractor):
876 IE_DESC = 'YouTube'
877 _VALID_URL = r"""(?x)^
878 (
879 (?:https?://|//) # http(s):// or protocol-independent URL
880 (?:(?:(?:(?:\w+\.)?[yY][oO][uU][tT][uU][bB][eE](?:-nocookie|kids)?\.com|
881 (?:www\.)?deturl\.com/www\.youtube\.com|
882 (?:www\.)?pwnyoutube\.com|
883 (?:www\.)?hooktube\.com|
884 (?:www\.)?yourepeat\.com|
885 tube\.majestyc\.net|
886 %(invidious)s|
887 youtube\.googleapis\.com)/ # the various hostnames, with wildcard subdomains
888 (?:.*?\#/)? # handle anchor (#/) redirect urls
889 (?: # the various things that can precede the ID:
890 (?:(?:v|embed|e|shorts)/(?!videoseries|live_stream)) # v/ or embed/ or e/ or shorts/
891 |(?: # or the v= param in all its forms
892 (?:(?:watch|movie)(?:_popup)?(?:\.php)?/?)? # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
893 (?:\?|\#!?) # the params delimiter ? or # or #!
894 (?:.*?[&;])?? # any other preceding param (like /?s=tuff&v=xxxx or ?s=tuff&amp;v=V36LpHqtcDY)
895 v=
896 )
897 ))
898 |(?:
899 youtu\.be| # just youtu.be/xxxx
900 vid\.plus| # or vid.plus/xxxx
901 zwearz\.com/watch| # or zwearz.com/watch/xxxx
902 %(invidious)s
903 )/
904 |(?:www\.)?cleanvideosearch\.com/media/action/yt/watch\?videoId=
905 )
906 )? # all until now is optional -> you can pass the naked ID
907 (?P<id>[0-9A-Za-z_-]{11}) # here is it! the YouTube video ID
908 (?(1).+)? # if we found the ID, everything can follow
909 (?:\#|$)""" % {
910 'invidious': '|'.join(YoutubeBaseInfoExtractor._INVIDIOUS_SITES),
911 }
912 _PLAYER_INFO_RE = (
913 r'/s/player/(?P<id>[a-zA-Z0-9_-]{8,})/player',
914 r'/(?P<id>[a-zA-Z0-9_-]{8,})/player(?:_ias\.vflset(?:/[a-zA-Z]{2,3}_[a-zA-Z]{2,3})?|-plasma-ias-(?:phone|tablet)-[a-z]{2}_[A-Z]{2}\.vflset)/base\.js$',
915 r'\b(?P<id>vfl[a-zA-Z0-9_-]+)\b.*?\.js$',
916 )
917 _formats = {
918 '5': {'ext': 'flv', 'width': 400, 'height': 240, 'acodec': 'mp3', 'abr': 64, 'vcodec': 'h263'},
919 '6': {'ext': 'flv', 'width': 450, 'height': 270, 'acodec': 'mp3', 'abr': 64, 'vcodec': 'h263'},
920 '13': {'ext': '3gp', 'acodec': 'aac', 'vcodec': 'mp4v'},
921 '17': {'ext': '3gp', 'width': 176, 'height': 144, 'acodec': 'aac', 'abr': 24, 'vcodec': 'mp4v'},
922 '18': {'ext': 'mp4', 'width': 640, 'height': 360, 'acodec': 'aac', 'abr': 96, 'vcodec': 'h264'},
923 '22': {'ext': 'mp4', 'width': 1280, 'height': 720, 'acodec': 'aac', 'abr': 192, 'vcodec': 'h264'},
924 '34': {'ext': 'flv', 'width': 640, 'height': 360, 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264'},
925 '35': {'ext': 'flv', 'width': 854, 'height': 480, 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264'},
926 # itag 36 videos are either 320x180 (BaW_jenozKc) or 320x240 (__2ABJjxzNo), abr varies as well
927 '36': {'ext': '3gp', 'width': 320, 'acodec': 'aac', 'vcodec': 'mp4v'},
928 '37': {'ext': 'mp4', 'width': 1920, 'height': 1080, 'acodec': 'aac', 'abr': 192, 'vcodec': 'h264'},
929 '38': {'ext': 'mp4', 'width': 4096, 'height': 3072, 'acodec': 'aac', 'abr': 192, 'vcodec': 'h264'},
930 '43': {'ext': 'webm', 'width': 640, 'height': 360, 'acodec': 'vorbis', 'abr': 128, 'vcodec': 'vp8'},
931 '44': {'ext': 'webm', 'width': 854, 'height': 480, 'acodec': 'vorbis', 'abr': 128, 'vcodec': 'vp8'},
932 '45': {'ext': 'webm', 'width': 1280, 'height': 720, 'acodec': 'vorbis', 'abr': 192, 'vcodec': 'vp8'},
933 '46': {'ext': 'webm', 'width': 1920, 'height': 1080, 'acodec': 'vorbis', 'abr': 192, 'vcodec': 'vp8'},
934 '59': {'ext': 'mp4', 'width': 854, 'height': 480, 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264'},
935 '78': {'ext': 'mp4', 'width': 854, 'height': 480, 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264'},
936
937
938 # 3D videos
939 '82': {'ext': 'mp4', 'height': 360, 'format_note': '3D', 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264', 'preference': -20},
940 '83': {'ext': 'mp4', 'height': 480, 'format_note': '3D', 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264', 'preference': -20},
941 '84': {'ext': 'mp4', 'height': 720, 'format_note': '3D', 'acodec': 'aac', 'abr': 192, 'vcodec': 'h264', 'preference': -20},
942 '85': {'ext': 'mp4', 'height': 1080, 'format_note': '3D', 'acodec': 'aac', 'abr': 192, 'vcodec': 'h264', 'preference': -20},
943 '100': {'ext': 'webm', 'height': 360, 'format_note': '3D', 'acodec': 'vorbis', 'abr': 128, 'vcodec': 'vp8', 'preference': -20},
944 '101': {'ext': 'webm', 'height': 480, 'format_note': '3D', 'acodec': 'vorbis', 'abr': 192, 'vcodec': 'vp8', 'preference': -20},
945 '102': {'ext': 'webm', 'height': 720, 'format_note': '3D', 'acodec': 'vorbis', 'abr': 192, 'vcodec': 'vp8', 'preference': -20},
946
947 # Apple HTTP Live Streaming
948 '91': {'ext': 'mp4', 'height': 144, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 48, 'vcodec': 'h264', 'preference': -10},
949 '92': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 48, 'vcodec': 'h264', 'preference': -10},
950 '93': {'ext': 'mp4', 'height': 360, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264', 'preference': -10},
951 '94': {'ext': 'mp4', 'height': 480, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264', 'preference': -10},
952 '95': {'ext': 'mp4', 'height': 720, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 256, 'vcodec': 'h264', 'preference': -10},
953 '96': {'ext': 'mp4', 'height': 1080, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 256, 'vcodec': 'h264', 'preference': -10},
954 '132': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 48, 'vcodec': 'h264', 'preference': -10},
955 '151': {'ext': 'mp4', 'height': 72, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 24, 'vcodec': 'h264', 'preference': -10},
956
957 # DASH mp4 video
958 '133': {'ext': 'mp4', 'height': 240, 'format_note': 'DASH video', 'vcodec': 'h264'},
959 '134': {'ext': 'mp4', 'height': 360, 'format_note': 'DASH video', 'vcodec': 'h264'},
960 '135': {'ext': 'mp4', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'h264'},
961 '136': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'vcodec': 'h264'},
962 '137': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'vcodec': 'h264'},
963 '138': {'ext': 'mp4', 'format_note': 'DASH video', 'vcodec': 'h264'}, # Height can vary (https://github.com/ytdl-org/youtube-dl/issues/4559)
964 '160': {'ext': 'mp4', 'height': 144, 'format_note': 'DASH video', 'vcodec': 'h264'},
965 '212': {'ext': 'mp4', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'h264'},
966 '264': {'ext': 'mp4', 'height': 1440, 'format_note': 'DASH video', 'vcodec': 'h264'},
967 '298': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'vcodec': 'h264', 'fps': 60},
968 '299': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'vcodec': 'h264', 'fps': 60},
969 '266': {'ext': 'mp4', 'height': 2160, 'format_note': 'DASH video', 'vcodec': 'h264'},
970
971 # Dash mp4 audio
972 '139': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'abr': 48, 'container': 'm4a_dash'},
973 '140': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'abr': 128, 'container': 'm4a_dash'},
974 '141': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'abr': 256, 'container': 'm4a_dash'},
975 '256': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'container': 'm4a_dash'},
976 '258': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'container': 'm4a_dash'},
977 '325': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'dtse', 'container': 'm4a_dash'},
978 '328': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'ec-3', 'container': 'm4a_dash'},
979
980 # Dash webm
981 '167': {'ext': 'webm', 'height': 360, 'width': 640, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
982 '168': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
983 '169': {'ext': 'webm', 'height': 720, 'width': 1280, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
984 '170': {'ext': 'webm', 'height': 1080, 'width': 1920, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
985 '218': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
986 '219': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
987 '278': {'ext': 'webm', 'height': 144, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp9'},
988 '242': {'ext': 'webm', 'height': 240, 'format_note': 'DASH video', 'vcodec': 'vp9'},
989 '243': {'ext': 'webm', 'height': 360, 'format_note': 'DASH video', 'vcodec': 'vp9'},
990 '244': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'vp9'},
991 '245': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'vp9'},
992 '246': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'vp9'},
993 '247': {'ext': 'webm', 'height': 720, 'format_note': 'DASH video', 'vcodec': 'vp9'},
994 '248': {'ext': 'webm', 'height': 1080, 'format_note': 'DASH video', 'vcodec': 'vp9'},
995 '271': {'ext': 'webm', 'height': 1440, 'format_note': 'DASH video', 'vcodec': 'vp9'},
996 # itag 272 videos are either 3840x2160 (e.g. RtoitU2A-3E) or 7680x4320 (sLprVF6d7Ug)
997 '272': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'vcodec': 'vp9'},
998 '302': {'ext': 'webm', 'height': 720, 'format_note': 'DASH video', 'vcodec': 'vp9', 'fps': 60},
999 '303': {'ext': 'webm', 'height': 1080, 'format_note': 'DASH video', 'vcodec': 'vp9', 'fps': 60},
1000 '308': {'ext': 'webm', 'height': 1440, 'format_note': 'DASH video', 'vcodec': 'vp9', 'fps': 60},
1001 '313': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'vcodec': 'vp9'},
1002 '315': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'vcodec': 'vp9', 'fps': 60},
1003
1004 # Dash webm audio
1005 '171': {'ext': 'webm', 'acodec': 'vorbis', 'format_note': 'DASH audio', 'abr': 128},
1006 '172': {'ext': 'webm', 'acodec': 'vorbis', 'format_note': 'DASH audio', 'abr': 256},
1007
1008 # Dash webm audio with opus inside
1009 '249': {'ext': 'webm', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 50},
1010 '250': {'ext': 'webm', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 70},
1011 '251': {'ext': 'webm', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 160},
1012
1013 # RTMP (unnamed)
1014 '_rtmp': {'protocol': 'rtmp'},
1015
1016 # av01 video only formats sometimes served with "unknown" codecs
1017 '394': {'ext': 'mp4', 'height': 144, 'format_note': 'DASH video', 'vcodec': 'av01.0.00M.08'},
1018 '395': {'ext': 'mp4', 'height': 240, 'format_note': 'DASH video', 'vcodec': 'av01.0.00M.08'},
1019 '396': {'ext': 'mp4', 'height': 360, 'format_note': 'DASH video', 'vcodec': 'av01.0.01M.08'},
1020 '397': {'ext': 'mp4', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'av01.0.04M.08'},
1021 '398': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'vcodec': 'av01.0.05M.08'},
1022 '399': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'vcodec': 'av01.0.08M.08'},
1023 '400': {'ext': 'mp4', 'height': 1440, 'format_note': 'DASH video', 'vcodec': 'av01.0.12M.08'},
1024 '401': {'ext': 'mp4', 'height': 2160, 'format_note': 'DASH video', 'vcodec': 'av01.0.12M.08'},
1025 }
1026 _SUBTITLE_FORMATS = ('json3', 'srv1', 'srv2', 'srv3', 'ttml', 'vtt')
1027
1028 _GEO_BYPASS = False
1029
1030 IE_NAME = 'youtube'
1031 _TESTS = [
1032 {
1033 'url': 'https://www.youtube.com/watch?v=BaW_jenozKc&t=1s&end=9',
1034 'info_dict': {
1035 'id': 'BaW_jenozKc',
1036 'ext': 'mp4',
1037 'title': 'youtube-dl test video "\'/\\ä↭𝕐',
1038 'uploader': 'Philipp Hagemeister',
1039 'uploader_id': 'phihag',
1040 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/phihag',
1041 'channel': 'Philipp Hagemeister',
1042 'channel_id': 'UCLqxVugv74EIW3VWh2NOa3Q',
1043 'channel_url': r're:https?://(?:www\.)?youtube\.com/channel/UCLqxVugv74EIW3VWh2NOa3Q',
1044 'upload_date': '20121002',
1045 'description': 'md5:8fb536f4877b8a7455c2ec23794dbc22',
1046 'categories': ['Science & Technology'],
1047 'tags': ['youtube-dl'],
1048 'duration': 10,
1049 'view_count': int,
1050 'like_count': int,
1051 'availability': 'public',
1052 'playable_in_embed': True,
1053 'thumbnail': 'https://i.ytimg.com/vi/BaW_jenozKc/maxresdefault.jpg',
1054 'live_status': 'not_live',
1055 'age_limit': 0,
1056 'start_time': 1,
1057 'end_time': 9,
1058 'channel_follower_count': int
1059 }
1060 },
1061 {
1062 'url': '//www.YouTube.com/watch?v=yZIXLfi8CZQ',
1063 'note': 'Embed-only video (#1746)',
1064 'info_dict': {
1065 'id': 'yZIXLfi8CZQ',
1066 'ext': 'mp4',
1067 'upload_date': '20120608',
1068 'title': 'Principal Sexually Assaults A Teacher - Episode 117 - 8th June 2012',
1069 'description': 'md5:09b78bd971f1e3e289601dfba15ca4f7',
1070 'uploader': 'SET India',
1071 'uploader_id': 'setindia',
1072 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/setindia',
1073 'age_limit': 18,
1074 },
1075 'skip': 'Private video',
1076 },
1077 {
1078 'url': 'https://www.youtube.com/watch?v=BaW_jenozKc&v=yZIXLfi8CZQ',
1079 'note': 'Use the first video ID in the URL',
1080 'info_dict': {
1081 'id': 'BaW_jenozKc',
1082 'ext': 'mp4',
1083 'title': 'youtube-dl test video "\'/\\ä↭𝕐',
1084 'uploader': 'Philipp Hagemeister',
1085 'uploader_id': 'phihag',
1086 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/phihag',
1087 'channel': 'Philipp Hagemeister',
1088 'channel_id': 'UCLqxVugv74EIW3VWh2NOa3Q',
1089 'channel_url': r're:https?://(?:www\.)?youtube\.com/channel/UCLqxVugv74EIW3VWh2NOa3Q',
1090 'upload_date': '20121002',
1091 'description': 'md5:8fb536f4877b8a7455c2ec23794dbc22',
1092 'categories': ['Science & Technology'],
1093 'tags': ['youtube-dl'],
1094 'duration': 10,
1095 'view_count': int,
1096 'like_count': int,
1097 'availability': 'public',
1098 'playable_in_embed': True,
1099 'thumbnail': 'https://i.ytimg.com/vi/BaW_jenozKc/maxresdefault.jpg',
1100 'live_status': 'not_live',
1101 'age_limit': 0,
1102 'channel_follower_count': int
1103 },
1104 'params': {
1105 'skip_download': True,
1106 },
1107 },
1108 {
1109 'url': 'https://www.youtube.com/watch?v=a9LDPn-MO4I',
1110 'note': '256k DASH audio (format 141) via DASH manifest',
1111 'info_dict': {
1112 'id': 'a9LDPn-MO4I',
1113 'ext': 'm4a',
1114 'upload_date': '20121002',
1115 'uploader_id': '8KVIDEO',
1116 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/8KVIDEO',
1117 'description': '',
1118 'uploader': '8KVIDEO',
1119 'title': 'UHDTV TEST 8K VIDEO.mp4'
1120 },
1121 'params': {
1122 'youtube_include_dash_manifest': True,
1123 'format': '141',
1124 },
1125 'skip': 'format 141 not served anymore',
1126 },
1127 # DASH manifest with encrypted signature
1128 {
1129 'url': 'https://www.youtube.com/watch?v=IB3lcPjvWLA',
1130 'info_dict': {
1131 'id': 'IB3lcPjvWLA',
1132 'ext': 'm4a',
1133 'title': 'Afrojack, Spree Wilson - The Spark (Official Music Video) ft. Spree Wilson',
1134 'description': 'md5:8f5e2b82460520b619ccac1f509d43bf',
1135 'duration': 244,
1136 'uploader': 'AfrojackVEVO',
1137 'uploader_id': 'AfrojackVEVO',
1138 'upload_date': '20131011',
1139 'abr': 129.495,
1140 'like_count': int,
1141 'channel_id': 'UChuZAo1RKL85gev3Eal9_zg',
1142 'playable_in_embed': True,
1143 'channel_url': 'https://www.youtube.com/channel/UChuZAo1RKL85gev3Eal9_zg',
1144 'view_count': int,
1145 'track': 'The Spark',
1146 'live_status': 'not_live',
1147 'thumbnail': 'https://i.ytimg.com/vi_webp/IB3lcPjvWLA/maxresdefault.webp',
1148 'channel': 'Afrojack',
1149 'uploader_url': 'http://www.youtube.com/user/AfrojackVEVO',
1150 'tags': 'count:19',
1151 'availability': 'public',
1152 'categories': ['Music'],
1153 'age_limit': 0,
1154 'alt_title': 'The Spark',
1155 'channel_follower_count': int
1156 },
1157 'params': {
1158 'youtube_include_dash_manifest': True,
1159 'format': '141/bestaudio[ext=m4a]',
1160 },
1161 },
1162 # Age-gate videos. See https://github.com/yt-dlp/yt-dlp/pull/575#issuecomment-888837000
1163 {
1164 'note': 'Embed allowed age-gate video',
1165 'url': 'https://youtube.com/watch?v=HtVdAasjOgU',
1166 'info_dict': {
1167 'id': 'HtVdAasjOgU',
1168 'ext': 'mp4',
1169 'title': 'The Witcher 3: Wild Hunt - The Sword Of Destiny Trailer',
1170 'description': r're:(?s).{100,}About the Game\n.*?The Witcher 3: Wild Hunt.{100,}',
1171 'duration': 142,
1172 'uploader': 'The Witcher',
1173 'uploader_id': 'WitcherGame',
1174 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/WitcherGame',
1175 'upload_date': '20140605',
1176 'age_limit': 18,
1177 'categories': ['Gaming'],
1178 'thumbnail': 'https://i.ytimg.com/vi_webp/HtVdAasjOgU/maxresdefault.webp',
1179 'availability': 'needs_auth',
1180 'channel_url': 'https://www.youtube.com/channel/UCzybXLxv08IApdjdN0mJhEg',
1181 'like_count': int,
1182 'channel': 'The Witcher',
1183 'live_status': 'not_live',
1184 'tags': 'count:17',
1185 'channel_id': 'UCzybXLxv08IApdjdN0mJhEg',
1186 'playable_in_embed': True,
1187 'view_count': int,
1188 'channel_follower_count': int
1189 },
1190 },
1191 {
1192 'note': 'Age-gate video with embed allowed in public site',
1193 'url': 'https://youtube.com/watch?v=HsUATh_Nc2U',
1194 'info_dict': {
1195 'id': 'HsUATh_Nc2U',
1196 'ext': 'mp4',
1197 'title': 'Godzilla 2 (Official Video)',
1198 'description': 'md5:bf77e03fcae5529475e500129b05668a',
1199 'upload_date': '20200408',
1200 'uploader_id': 'FlyingKitty900',
1201 'uploader': 'FlyingKitty',
1202 'age_limit': 18,
1203 'availability': 'needs_auth',
1204 'channel_id': 'UCYQT13AtrJC0gsM1far_zJg',
1205 'uploader_url': 'http://www.youtube.com/user/FlyingKitty900',
1206 'channel': 'FlyingKitty',
1207 'channel_url': 'https://www.youtube.com/channel/UCYQT13AtrJC0gsM1far_zJg',
1208 'view_count': int,
1209 'categories': ['Entertainment'],
1210 'live_status': 'not_live',
1211 'tags': ['Flyingkitty', 'godzilla 2'],
1212 'thumbnail': 'https://i.ytimg.com/vi/HsUATh_Nc2U/maxresdefault.jpg',
1213 'like_count': int,
1214 'duration': 177,
1215 'playable_in_embed': True,
1216 'channel_follower_count': int
1217 },
1218 },
1219 {
1220 'note': 'Age-gate video embedable only with clientScreen=EMBED',
1221 'url': 'https://youtube.com/watch?v=Tq92D6wQ1mg',
1222 'info_dict': {
1223 'id': 'Tq92D6wQ1mg',
1224 'title': '[MMD] Adios - EVERGLOW [+Motion DL]',
1225 'ext': 'mp4',
1226 'upload_date': '20191228',
1227 'uploader_id': 'UC1yoRdFoFJaCY-AGfD9W0wQ',
1228 'uploader': 'Projekt Melody',
1229 'description': 'md5:17eccca93a786d51bc67646756894066',
1230 'age_limit': 18,
1231 'like_count': int,
1232 'availability': 'needs_auth',
1233 'uploader_url': 'http://www.youtube.com/channel/UC1yoRdFoFJaCY-AGfD9W0wQ',
1234 'channel_id': 'UC1yoRdFoFJaCY-AGfD9W0wQ',
1235 'view_count': int,
1236 'thumbnail': 'https://i.ytimg.com/vi_webp/Tq92D6wQ1mg/sddefault.webp',
1237 'channel': 'Projekt Melody',
1238 'live_status': 'not_live',
1239 'tags': ['mmd', 'dance', 'mikumikudance', 'kpop', 'vtuber'],
1240 'playable_in_embed': True,
1241 'categories': ['Entertainment'],
1242 'duration': 106,
1243 'channel_url': 'https://www.youtube.com/channel/UC1yoRdFoFJaCY-AGfD9W0wQ',
1244 'channel_follower_count': int
1245 },
1246 },
1247 {
1248 'note': 'Non-Agegated non-embeddable video',
1249 'url': 'https://youtube.com/watch?v=MeJVWBSsPAY',
1250 'info_dict': {
1251 'id': 'MeJVWBSsPAY',
1252 'ext': 'mp4',
1253 'title': 'OOMPH! - Such Mich Find Mich (Lyrics)',
1254 'uploader': 'Herr Lurik',
1255 'uploader_id': 'st3in234',
1256 'description': 'Fan Video. Music & Lyrics by OOMPH!.',
1257 'upload_date': '20130730',
1258 'track': 'Such mich find mich',
1259 'age_limit': 0,
1260 'tags': ['oomph', 'such mich find mich', 'lyrics', 'german industrial', 'musica industrial'],
1261 'like_count': int,
1262 'playable_in_embed': False,
1263 'creator': 'OOMPH!',
1264 'thumbnail': 'https://i.ytimg.com/vi/MeJVWBSsPAY/sddefault.jpg',
1265 'view_count': int,
1266 'alt_title': 'Such mich find mich',
1267 'duration': 210,
1268 'channel': 'Herr Lurik',
1269 'channel_id': 'UCdR3RSDPqub28LjZx0v9-aA',
1270 'categories': ['Music'],
1271 'availability': 'public',
1272 'uploader_url': 'http://www.youtube.com/user/st3in234',
1273 'channel_url': 'https://www.youtube.com/channel/UCdR3RSDPqub28LjZx0v9-aA',
1274 'live_status': 'not_live',
1275 'artist': 'OOMPH!',
1276 'channel_follower_count': int
1277 },
1278 },
1279 {
1280 'note': 'Non-bypassable age-gated video',
1281 'url': 'https://youtube.com/watch?v=Cr381pDsSsA',
1282 'only_matching': True,
1283 },
1284 # video_info is None (https://github.com/ytdl-org/youtube-dl/issues/4421)
1285 # YouTube Red ad is not captured for creator
1286 {
1287 'url': '__2ABJjxzNo',
1288 'info_dict': {
1289 'id': '__2ABJjxzNo',
1290 'ext': 'mp4',
1291 'duration': 266,
1292 'upload_date': '20100430',
1293 'uploader_id': 'deadmau5',
1294 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/deadmau5',
1295 'creator': 'deadmau5',
1296 'description': 'md5:6cbcd3a92ce1bc676fc4d6ab4ace2336',
1297 'uploader': 'deadmau5',
1298 'title': 'Deadmau5 - Some Chords (HD)',
1299 'alt_title': 'Some Chords',
1300 'availability': 'public',
1301 'tags': 'count:14',
1302 'channel_id': 'UCYEK6xds6eo-3tr4xRdflmQ',
1303 'view_count': int,
1304 'live_status': 'not_live',
1305 'channel': 'deadmau5',
1306 'thumbnail': 'https://i.ytimg.com/vi_webp/__2ABJjxzNo/maxresdefault.webp',
1307 'like_count': int,
1308 'track': 'Some Chords',
1309 'artist': 'deadmau5',
1310 'playable_in_embed': True,
1311 'age_limit': 0,
1312 'channel_url': 'https://www.youtube.com/channel/UCYEK6xds6eo-3tr4xRdflmQ',
1313 'categories': ['Music'],
1314 'album': 'Some Chords',
1315 'channel_follower_count': int
1316 },
1317 'expected_warnings': [
1318 'DASH manifest missing',
1319 ]
1320 },
1321 # Olympics (https://github.com/ytdl-org/youtube-dl/issues/4431)
1322 {
1323 'url': 'lqQg6PlCWgI',
1324 'info_dict': {
1325 'id': 'lqQg6PlCWgI',
1326 'ext': 'mp4',
1327 'duration': 6085,
1328 'upload_date': '20150827',
1329 'uploader_id': 'olympic',
1330 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/olympic',
1331 'description': 'HO09 - Women - GER-AUS - Hockey - 31 July 2012 - London 2012 Olympic Games',
1332 'uploader': 'Olympics',
1333 'title': 'Hockey - Women - GER-AUS - London 2012 Olympic Games',
1334 'like_count': int,
1335 'release_timestamp': 1343767800,
1336 'playable_in_embed': True,
1337 'categories': ['Sports'],
1338 'release_date': '20120731',
1339 'channel': 'Olympics',
1340 'tags': ['Hockey', '2012-07-31', '31 July 2012', 'Riverbank Arena', 'Session', 'Olympics', 'Olympic Games', 'London 2012', '2012 Summer Olympics', 'Summer Games'],
1341 'channel_id': 'UCTl3QQTvqHFjurroKxexy2Q',
1342 'thumbnail': 'https://i.ytimg.com/vi/lqQg6PlCWgI/maxresdefault.jpg',
1343 'age_limit': 0,
1344 'availability': 'public',
1345 'live_status': 'was_live',
1346 'view_count': int,
1347 'channel_url': 'https://www.youtube.com/channel/UCTl3QQTvqHFjurroKxexy2Q',
1348 'channel_follower_count': int
1349 },
1350 'params': {
1351 'skip_download': 'requires avconv',
1352 }
1353 },
1354 # Non-square pixels
1355 {
1356 'url': 'https://www.youtube.com/watch?v=_b-2C3KPAM0',
1357 'info_dict': {
1358 'id': '_b-2C3KPAM0',
1359 'ext': 'mp4',
1360 'stretched_ratio': 16 / 9.,
1361 'duration': 85,
1362 'upload_date': '20110310',
1363 'uploader_id': 'AllenMeow',
1364 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/AllenMeow',
1365 'description': 'made by Wacom from Korea | 字幕&加油添醋 by TY\'s Allen | 感謝heylisa00cavey1001同學熱情提供梗及翻譯',
1366 'uploader': '孫ᄋᄅ',
1367 'title': '[A-made] 變態妍字幕版 太妍 我就是這樣的人',
1368 'playable_in_embed': True,
1369 'channel': '孫ᄋᄅ',
1370 'age_limit': 0,
1371 'tags': 'count:11',
1372 'channel_url': 'https://www.youtube.com/channel/UCS-xxCmRaA6BFdmgDPA_BIw',
1373 'channel_id': 'UCS-xxCmRaA6BFdmgDPA_BIw',
1374 'thumbnail': 'https://i.ytimg.com/vi/_b-2C3KPAM0/maxresdefault.jpg',
1375 'view_count': int,
1376 'categories': ['People & Blogs'],
1377 'like_count': int,
1378 'live_status': 'not_live',
1379 'availability': 'unlisted',
1380 'channel_follower_count': int
1381 },
1382 },
1383 # url_encoded_fmt_stream_map is empty string
1384 {
1385 'url': 'qEJwOuvDf7I',
1386 'info_dict': {
1387 'id': 'qEJwOuvDf7I',
1388 'ext': 'webm',
1389 'title': 'Обсуждение судебной практики по выборам 14 сентября 2014 года в Санкт-Петербурге',
1390 'description': '',
1391 'upload_date': '20150404',
1392 'uploader_id': 'spbelect',
1393 'uploader': 'Наблюдатели Петербурга',
1394 },
1395 'params': {
1396 'skip_download': 'requires avconv',
1397 },
1398 'skip': 'This live event has ended.',
1399 },
1400 # Extraction from multiple DASH manifests (https://github.com/ytdl-org/youtube-dl/pull/6097)
1401 {
1402 'url': 'https://www.youtube.com/watch?v=FIl7x6_3R5Y',
1403 'info_dict': {
1404 'id': 'FIl7x6_3R5Y',
1405 'ext': 'webm',
1406 'title': 'md5:7b81415841e02ecd4313668cde88737a',
1407 'description': 'md5:116377fd2963b81ec4ce64b542173306',
1408 'duration': 220,
1409 'upload_date': '20150625',
1410 'uploader_id': 'dorappi2000',
1411 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/dorappi2000',
1412 'uploader': 'dorappi2000',
1413 'formats': 'mincount:31',
1414 },
1415 'skip': 'not actual anymore',
1416 },
1417 # DASH manifest with segment_list
1418 {
1419 'url': 'https://www.youtube.com/embed/CsmdDsKjzN8',
1420 'md5': '8ce563a1d667b599d21064e982ab9e31',
1421 'info_dict': {
1422 'id': 'CsmdDsKjzN8',
1423 'ext': 'mp4',
1424 'upload_date': '20150501', # According to '<meta itemprop="datePublished"', but in other places it's 20150510
1425 'uploader': 'Airtek',
1426 'description': 'Retransmisión en directo de la XVIII media maratón de Zaragoza.',
1427 'uploader_id': 'UCzTzUmjXxxacNnL8I3m4LnQ',
1428 'title': 'Retransmisión XVIII Media maratón Zaragoza 2015',
1429 },
1430 'params': {
1431 'youtube_include_dash_manifest': True,
1432 'format': '135', # bestvideo
1433 },
1434 'skip': 'This live event has ended.',
1435 },
1436 {
1437 # Multifeed videos (multiple cameras), URL is for Main Camera
1438 'url': 'https://www.youtube.com/watch?v=jvGDaLqkpTg',
1439 'info_dict': {
1440 'id': 'jvGDaLqkpTg',
1441 'title': 'Tom Clancy Free Weekend Rainbow Whatever',
1442 'description': 'md5:e03b909557865076822aa169218d6a5d',
1443 },
1444 'playlist': [{
1445 'info_dict': {
1446 'id': 'jvGDaLqkpTg',
1447 'ext': 'mp4',
1448 'title': 'Tom Clancy Free Weekend Rainbow Whatever (Main Camera)',
1449 'description': 'md5:e03b909557865076822aa169218d6a5d',
1450 'duration': 10643,
1451 'upload_date': '20161111',
1452 'uploader': 'Team PGP',
1453 'uploader_id': 'UChORY56LMMETTuGjXaJXvLg',
1454 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UChORY56LMMETTuGjXaJXvLg',
1455 },
1456 }, {
1457 'info_dict': {
1458 'id': '3AKt1R1aDnw',
1459 'ext': 'mp4',
1460 'title': 'Tom Clancy Free Weekend Rainbow Whatever (Camera 2)',
1461 'description': 'md5:e03b909557865076822aa169218d6a5d',
1462 'duration': 10991,
1463 'upload_date': '20161111',
1464 'uploader': 'Team PGP',
1465 'uploader_id': 'UChORY56LMMETTuGjXaJXvLg',
1466 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UChORY56LMMETTuGjXaJXvLg',
1467 },
1468 }, {
1469 'info_dict': {
1470 'id': 'RtAMM00gpVc',
1471 'ext': 'mp4',
1472 'title': 'Tom Clancy Free Weekend Rainbow Whatever (Camera 3)',
1473 'description': 'md5:e03b909557865076822aa169218d6a5d',
1474 'duration': 10995,
1475 'upload_date': '20161111',
1476 'uploader': 'Team PGP',
1477 'uploader_id': 'UChORY56LMMETTuGjXaJXvLg',
1478 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UChORY56LMMETTuGjXaJXvLg',
1479 },
1480 }, {
1481 'info_dict': {
1482 'id': '6N2fdlP3C5U',
1483 'ext': 'mp4',
1484 'title': 'Tom Clancy Free Weekend Rainbow Whatever (Camera 4)',
1485 'description': 'md5:e03b909557865076822aa169218d6a5d',
1486 'duration': 10990,
1487 'upload_date': '20161111',
1488 'uploader': 'Team PGP',
1489 'uploader_id': 'UChORY56LMMETTuGjXaJXvLg',
1490 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UChORY56LMMETTuGjXaJXvLg',
1491 },
1492 }],
1493 'params': {
1494 'skip_download': True,
1495 },
1496 'skip': 'Not multifeed anymore',
1497 },
1498 {
1499 # Multifeed video with comma in title (see https://github.com/ytdl-org/youtube-dl/issues/8536)
1500 'url': 'https://www.youtube.com/watch?v=gVfLd0zydlo',
1501 'info_dict': {
1502 'id': 'gVfLd0zydlo',
1503 'title': 'DevConf.cz 2016 Day 2 Workshops 1 14:00 - 15:30',
1504 },
1505 'playlist_count': 2,
1506 'skip': 'Not multifeed anymore',
1507 },
1508 {
1509 'url': 'https://vid.plus/FlRa-iH7PGw',
1510 'only_matching': True,
1511 },
1512 {
1513 'url': 'https://zwearz.com/watch/9lWxNJF-ufM/electra-woman-dyna-girl-official-trailer-grace-helbig.html',
1514 'only_matching': True,
1515 },
1516 {
1517 # Title with JS-like syntax "};" (see https://github.com/ytdl-org/youtube-dl/issues/7468)
1518 # Also tests cut-off URL expansion in video description (see
1519 # https://github.com/ytdl-org/youtube-dl/issues/1892,
1520 # https://github.com/ytdl-org/youtube-dl/issues/8164)
1521 'url': 'https://www.youtube.com/watch?v=lsguqyKfVQg',
1522 'info_dict': {
1523 'id': 'lsguqyKfVQg',
1524 'ext': 'mp4',
1525 'title': '{dark walk}; Loki/AC/Dishonored; collab w/Elflover21',
1526 'alt_title': 'Dark Walk',
1527 'description': 'md5:8085699c11dc3f597ce0410b0dcbb34a',
1528 'duration': 133,
1529 'upload_date': '20151119',
1530 'uploader_id': 'IronSoulElf',
1531 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/IronSoulElf',
1532 'uploader': 'IronSoulElf',
1533 'creator': 'Todd Haberman;\nDaniel Law Heath and Aaron Kaplan',
1534 'track': 'Dark Walk',
1535 'artist': 'Todd Haberman;\nDaniel Law Heath and Aaron Kaplan',
1536 'album': 'Position Music - Production Music Vol. 143 - Dark Walk',
1537 'thumbnail': 'https://i.ytimg.com/vi_webp/lsguqyKfVQg/maxresdefault.webp',
1538 'categories': ['Film & Animation'],
1539 'view_count': int,
1540 'live_status': 'not_live',
1541 'channel_url': 'https://www.youtube.com/channel/UCTSRgz5jylBvFt_S7wnsqLQ',
1542 'channel_id': 'UCTSRgz5jylBvFt_S7wnsqLQ',
1543 'tags': 'count:13',
1544 'availability': 'public',
1545 'channel': 'IronSoulElf',
1546 'playable_in_embed': True,
1547 'like_count': int,
1548 'age_limit': 0,
1549 'channel_follower_count': int
1550 },
1551 'params': {
1552 'skip_download': True,
1553 },
1554 },
1555 {
1556 # Tags with '};' (see https://github.com/ytdl-org/youtube-dl/issues/7468)
1557 'url': 'https://www.youtube.com/watch?v=Ms7iBXnlUO8',
1558 'only_matching': True,
1559 },
1560 {
1561 # Video with yt:stretch=17:0
1562 'url': 'https://www.youtube.com/watch?v=Q39EVAstoRM',
1563 'info_dict': {
1564 'id': 'Q39EVAstoRM',
1565 'ext': 'mp4',
1566 'title': 'Clash Of Clans#14 Dicas De Ataque Para CV 4',
1567 'description': 'md5:ee18a25c350637c8faff806845bddee9',
1568 'upload_date': '20151107',
1569 'uploader_id': 'UCCr7TALkRbo3EtFzETQF1LA',
1570 'uploader': 'CH GAMER DROID',
1571 },
1572 'params': {
1573 'skip_download': True,
1574 },
1575 'skip': 'This video does not exist.',
1576 },
1577 {
1578 # Video with incomplete 'yt:stretch=16:'
1579 'url': 'https://www.youtube.com/watch?v=FRhJzUSJbGI',
1580 'only_matching': True,
1581 },
1582 {
1583 # Video licensed under Creative Commons
1584 'url': 'https://www.youtube.com/watch?v=M4gD1WSo5mA',
1585 'info_dict': {
1586 'id': 'M4gD1WSo5mA',
1587 'ext': 'mp4',
1588 'title': 'md5:e41008789470fc2533a3252216f1c1d1',
1589 'description': 'md5:a677553cf0840649b731a3024aeff4cc',
1590 'duration': 721,
1591 'upload_date': '20150128',
1592 'uploader_id': 'BerkmanCenter',
1593 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/BerkmanCenter',
1594 'uploader': 'The Berkman Klein Center for Internet & Society',
1595 'license': 'Creative Commons Attribution license (reuse allowed)',
1596 'channel_id': 'UCuLGmD72gJDBwmLw06X58SA',
1597 'channel_url': 'https://www.youtube.com/channel/UCuLGmD72gJDBwmLw06X58SA',
1598 'like_count': int,
1599 'age_limit': 0,
1600 'tags': ['Copyright (Legal Subject)', 'Law (Industry)', 'William W. Fisher (Author)'],
1601 'channel': 'The Berkman Klein Center for Internet & Society',
1602 'availability': 'public',
1603 'view_count': int,
1604 'categories': ['Education'],
1605 'thumbnail': 'https://i.ytimg.com/vi_webp/M4gD1WSo5mA/maxresdefault.webp',
1606 'live_status': 'not_live',
1607 'playable_in_embed': True,
1608 'channel_follower_count': int
1609 },
1610 'params': {
1611 'skip_download': True,
1612 },
1613 },
1614 {
1615 # Channel-like uploader_url
1616 'url': 'https://www.youtube.com/watch?v=eQcmzGIKrzg',
1617 'info_dict': {
1618 'id': 'eQcmzGIKrzg',
1619 'ext': 'mp4',
1620 'title': 'Democratic Socialism and Foreign Policy | Bernie Sanders',
1621 'description': 'md5:13a2503d7b5904ef4b223aa101628f39',
1622 'duration': 4060,
1623 'upload_date': '20151120',
1624 'uploader': 'Bernie Sanders',
1625 'uploader_id': 'UCH1dpzjCEiGAt8CXkryhkZg',
1626 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UCH1dpzjCEiGAt8CXkryhkZg',
1627 'license': 'Creative Commons Attribution license (reuse allowed)',
1628 'playable_in_embed': True,
1629 'tags': 'count:12',
1630 'like_count': int,
1631 'channel_id': 'UCH1dpzjCEiGAt8CXkryhkZg',
1632 'age_limit': 0,
1633 'availability': 'public',
1634 'categories': ['News & Politics'],
1635 'channel': 'Bernie Sanders',
1636 'thumbnail': 'https://i.ytimg.com/vi_webp/eQcmzGIKrzg/maxresdefault.webp',
1637 'view_count': int,
1638 'live_status': 'not_live',
1639 'channel_url': 'https://www.youtube.com/channel/UCH1dpzjCEiGAt8CXkryhkZg',
1640 'channel_follower_count': int
1641 },
1642 'params': {
1643 'skip_download': True,
1644 },
1645 },
1646 {
1647 'url': 'https://www.youtube.com/watch?feature=player_embedded&amp;amp;v=V36LpHqtcDY',
1648 'only_matching': True,
1649 },
1650 {
1651 # YouTube Red paid video (https://github.com/ytdl-org/youtube-dl/issues/10059)
1652 'url': 'https://www.youtube.com/watch?v=i1Ko8UG-Tdo',
1653 'only_matching': True,
1654 },
1655 {
1656 # Rental video preview
1657 'url': 'https://www.youtube.com/watch?v=yYr8q0y5Jfg',
1658 'info_dict': {
1659 'id': 'uGpuVWrhIzE',
1660 'ext': 'mp4',
1661 'title': 'Piku - Trailer',
1662 'description': 'md5:c36bd60c3fd6f1954086c083c72092eb',
1663 'upload_date': '20150811',
1664 'uploader': 'FlixMatrix',
1665 'uploader_id': 'FlixMatrixKaravan',
1666 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/FlixMatrixKaravan',
1667 'license': 'Standard YouTube License',
1668 },
1669 'params': {
1670 'skip_download': True,
1671 },
1672 'skip': 'This video is not available.',
1673 },
1674 {
1675 # YouTube Red video with episode data
1676 'url': 'https://www.youtube.com/watch?v=iqKdEhx-dD4',
1677 'info_dict': {
1678 'id': 'iqKdEhx-dD4',
1679 'ext': 'mp4',
1680 'title': 'Isolation - Mind Field (Ep 1)',
1681 'description': 'md5:f540112edec5d09fc8cc752d3d4ba3cd',
1682 'duration': 2085,
1683 'upload_date': '20170118',
1684 'uploader': 'Vsauce',
1685 'uploader_id': 'Vsauce',
1686 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/Vsauce',
1687 'series': 'Mind Field',
1688 'season_number': 1,
1689 'episode_number': 1,
1690 'thumbnail': 'https://i.ytimg.com/vi_webp/iqKdEhx-dD4/maxresdefault.webp',
1691 'tags': 'count:12',
1692 'view_count': int,
1693 'availability': 'public',
1694 'age_limit': 0,
1695 'channel': 'Vsauce',
1696 'episode': 'Episode 1',
1697 'categories': ['Entertainment'],
1698 'season': 'Season 1',
1699 'channel_id': 'UC6nSFpj9HTCZ5t-N3Rm3-HA',
1700 'channel_url': 'https://www.youtube.com/channel/UC6nSFpj9HTCZ5t-N3Rm3-HA',
1701 'like_count': int,
1702 'playable_in_embed': True,
1703 'live_status': 'not_live',
1704 'channel_follower_count': int
1705 },
1706 'params': {
1707 'skip_download': True,
1708 },
1709 'expected_warnings': [
1710 'Skipping DASH manifest',
1711 ],
1712 },
1713 {
1714 # The following content has been identified by the YouTube community
1715 # as inappropriate or offensive to some audiences.
1716 'url': 'https://www.youtube.com/watch?v=6SJNVb0GnPI',
1717 'info_dict': {
1718 'id': '6SJNVb0GnPI',
1719 'ext': 'mp4',
1720 'title': 'Race Differences in Intelligence',
1721 'description': 'md5:5d161533167390427a1f8ee89a1fc6f1',
1722 'duration': 965,
1723 'upload_date': '20140124',
1724 'uploader': 'New Century Foundation',
1725 'uploader_id': 'UCEJYpZGqgUob0zVVEaLhvVg',
1726 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UCEJYpZGqgUob0zVVEaLhvVg',
1727 },
1728 'params': {
1729 'skip_download': True,
1730 },
1731 'skip': 'This video has been removed for violating YouTube\'s policy on hate speech.',
1732 },
1733 {
1734 # itag 212
1735 'url': '1t24XAntNCY',
1736 'only_matching': True,
1737 },
1738 {
1739 # geo restricted to JP
1740 'url': 'sJL6WA-aGkQ',
1741 'only_matching': True,
1742 },
1743 {
1744 'url': 'https://invidio.us/watch?v=BaW_jenozKc',
1745 'only_matching': True,
1746 },
1747 {
1748 'url': 'https://redirect.invidious.io/watch?v=BaW_jenozKc',
1749 'only_matching': True,
1750 },
1751 {
1752 # from https://nitter.pussthecat.org/YouTube/status/1360363141947944964#m
1753 'url': 'https://redirect.invidious.io/Yh0AhrY9GjA',
1754 'only_matching': True,
1755 },
1756 {
1757 # DRM protected
1758 'url': 'https://www.youtube.com/watch?v=s7_qI6_mIXc',
1759 'only_matching': True,
1760 },
1761 {
1762 # Video with unsupported adaptive stream type formats
1763 'url': 'https://www.youtube.com/watch?v=Z4Vy8R84T1U',
1764 'info_dict': {
1765 'id': 'Z4Vy8R84T1U',
1766 'ext': 'mp4',
1767 'title': 'saman SMAN 53 Jakarta(Sancety) opening COFFEE4th at SMAN 53 Jakarta',
1768 'description': 'md5:d41d8cd98f00b204e9800998ecf8427e',
1769 'duration': 433,
1770 'upload_date': '20130923',
1771 'uploader': 'Amelia Putri Harwita',
1772 'uploader_id': 'UCpOxM49HJxmC1qCalXyB3_Q',
1773 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UCpOxM49HJxmC1qCalXyB3_Q',
1774 'formats': 'maxcount:10',
1775 },
1776 'params': {
1777 'skip_download': True,
1778 'youtube_include_dash_manifest': False,
1779 },
1780 'skip': 'not actual anymore',
1781 },
1782 {
1783 # Youtube Music Auto-generated description
1784 'url': 'https://music.youtube.com/watch?v=MgNrAu2pzNs',
1785 'info_dict': {
1786 'id': 'MgNrAu2pzNs',
1787 'ext': 'mp4',
1788 'title': 'Voyeur Girl',
1789 'description': 'md5:7ae382a65843d6df2685993e90a8628f',
1790 'upload_date': '20190312',
1791 'uploader': 'Stephen - Topic',
1792 'uploader_id': 'UC-pWHpBjdGG69N9mM2auIAA',
1793 'artist': 'Stephen',
1794 'track': 'Voyeur Girl',
1795 'album': 'it\'s too much love to know my dear',
1796 'release_date': '20190313',
1797 'release_year': 2019,
1798 'alt_title': 'Voyeur Girl',
1799 'view_count': int,
1800 'uploader_url': 'http://www.youtube.com/channel/UC-pWHpBjdGG69N9mM2auIAA',
1801 'playable_in_embed': True,
1802 'like_count': int,
1803 'categories': ['Music'],
1804 'channel_url': 'https://www.youtube.com/channel/UC-pWHpBjdGG69N9mM2auIAA',
1805 'channel': 'Stephen',
1806 'availability': 'public',
1807 'creator': 'Stephen',
1808 'duration': 169,
1809 'thumbnail': 'https://i.ytimg.com/vi_webp/MgNrAu2pzNs/maxresdefault.webp',
1810 'age_limit': 0,
1811 'channel_id': 'UC-pWHpBjdGG69N9mM2auIAA',
1812 'tags': 'count:11',
1813 'live_status': 'not_live',
1814 'channel_follower_count': int
1815 },
1816 'params': {
1817 'skip_download': True,
1818 },
1819 },
1820 {
1821 'url': 'https://www.youtubekids.com/watch?v=3b8nCWDgZ6Q',
1822 'only_matching': True,
1823 },
1824 {
1825 # invalid -> valid video id redirection
1826 'url': 'DJztXj2GPfl',
1827 'info_dict': {
1828 'id': 'DJztXj2GPfk',
1829 'ext': 'mp4',
1830 'title': 'Panjabi MC - Mundian To Bach Ke (The Dictator Soundtrack)',
1831 'description': 'md5:bf577a41da97918e94fa9798d9228825',
1832 'upload_date': '20090125',
1833 'uploader': 'Prochorowka',
1834 'uploader_id': 'Prochorowka',
1835 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/Prochorowka',
1836 'artist': 'Panjabi MC',
1837 'track': 'Beware of the Boys (Mundian to Bach Ke) - Motivo Hi-Lectro Remix',
1838 'album': 'Beware of the Boys (Mundian To Bach Ke)',
1839 },
1840 'params': {
1841 'skip_download': True,
1842 },
1843 'skip': 'Video unavailable',
1844 },
1845 {
1846 # empty description results in an empty string
1847 'url': 'https://www.youtube.com/watch?v=x41yOUIvK2k',
1848 'info_dict': {
1849 'id': 'x41yOUIvK2k',
1850 'ext': 'mp4',
1851 'title': 'IMG 3456',
1852 'description': '',
1853 'upload_date': '20170613',
1854 'uploader_id': 'ElevageOrVert',
1855 'uploader': 'ElevageOrVert',
1856 'view_count': int,
1857 'thumbnail': 'https://i.ytimg.com/vi_webp/x41yOUIvK2k/maxresdefault.webp',
1858 'uploader_url': 'http://www.youtube.com/user/ElevageOrVert',
1859 'like_count': int,
1860 'channel_id': 'UCo03ZQPBW5U4UC3regpt1nw',
1861 'tags': [],
1862 'channel_url': 'https://www.youtube.com/channel/UCo03ZQPBW5U4UC3regpt1nw',
1863 'availability': 'public',
1864 'age_limit': 0,
1865 'categories': ['Pets & Animals'],
1866 'duration': 7,
1867 'playable_in_embed': True,
1868 'live_status': 'not_live',
1869 'channel': 'ElevageOrVert',
1870 'channel_follower_count': int
1871 },
1872 'params': {
1873 'skip_download': True,
1874 },
1875 },
1876 {
1877 # with '};' inside yt initial data (see [1])
1878 # see [2] for an example with '};' inside ytInitialPlayerResponse
1879 # 1. https://github.com/ytdl-org/youtube-dl/issues/27093
1880 # 2. https://github.com/ytdl-org/youtube-dl/issues/27216
1881 'url': 'https://www.youtube.com/watch?v=CHqg6qOn4no',
1882 'info_dict': {
1883 'id': 'CHqg6qOn4no',
1884 'ext': 'mp4',
1885 'title': 'Part 77 Sort a list of simple types in c#',
1886 'description': 'md5:b8746fa52e10cdbf47997903f13b20dc',
1887 'upload_date': '20130831',
1888 'uploader_id': 'kudvenkat',
1889 'uploader': 'kudvenkat',
1890 'channel_id': 'UCCTVrRB5KpIiK6V2GGVsR1Q',
1891 'like_count': int,
1892 'uploader_url': 'http://www.youtube.com/user/kudvenkat',
1893 'channel_url': 'https://www.youtube.com/channel/UCCTVrRB5KpIiK6V2GGVsR1Q',
1894 'live_status': 'not_live',
1895 'categories': ['Education'],
1896 'availability': 'public',
1897 'thumbnail': 'https://i.ytimg.com/vi/CHqg6qOn4no/sddefault.jpg',
1898 'tags': 'count:12',
1899 'playable_in_embed': True,
1900 'age_limit': 0,
1901 'view_count': int,
1902 'duration': 522,
1903 'channel': 'kudvenkat',
1904 'channel_follower_count': int
1905 },
1906 'params': {
1907 'skip_download': True,
1908 },
1909 },
1910 {
1911 # another example of '};' in ytInitialData
1912 'url': 'https://www.youtube.com/watch?v=gVfgbahppCY',
1913 'only_matching': True,
1914 },
1915 {
1916 'url': 'https://www.youtube.com/watch_popup?v=63RmMXCd_bQ',
1917 'only_matching': True,
1918 },
1919 {
1920 # https://github.com/ytdl-org/youtube-dl/pull/28094
1921 'url': 'OtqTfy26tG0',
1922 'info_dict': {
1923 'id': 'OtqTfy26tG0',
1924 'ext': 'mp4',
1925 'title': 'Burn Out',
1926 'description': 'md5:8d07b84dcbcbfb34bc12a56d968b6131',
1927 'upload_date': '20141120',
1928 'uploader': 'The Cinematic Orchestra - Topic',
1929 'uploader_id': 'UCIzsJBIyo8hhpFm1NK0uLgw',
1930 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UCIzsJBIyo8hhpFm1NK0uLgw',
1931 'artist': 'The Cinematic Orchestra',
1932 'track': 'Burn Out',
1933 'album': 'Every Day',
1934 'like_count': int,
1935 'live_status': 'not_live',
1936 'alt_title': 'Burn Out',
1937 'duration': 614,
1938 'age_limit': 0,
1939 'view_count': int,
1940 'channel_url': 'https://www.youtube.com/channel/UCIzsJBIyo8hhpFm1NK0uLgw',
1941 'creator': 'The Cinematic Orchestra',
1942 'channel': 'The Cinematic Orchestra',
1943 'tags': ['The Cinematic Orchestra', 'Every Day', 'Burn Out'],
1944 'channel_id': 'UCIzsJBIyo8hhpFm1NK0uLgw',
1945 'availability': 'public',
1946 'thumbnail': 'https://i.ytimg.com/vi/OtqTfy26tG0/maxresdefault.jpg',
1947 'categories': ['Music'],
1948 'playable_in_embed': True,
1949 'channel_follower_count': int
1950 },
1951 'params': {
1952 'skip_download': True,
1953 },
1954 },
1955 {
1956 # controversial video, only works with bpctr when authenticated with cookies
1957 'url': 'https://www.youtube.com/watch?v=nGC3D_FkCmg',
1958 'only_matching': True,
1959 },
1960 {
1961 # controversial video, requires bpctr/contentCheckOk
1962 'url': 'https://www.youtube.com/watch?v=SZJvDhaSDnc',
1963 'info_dict': {
1964 'id': 'SZJvDhaSDnc',
1965 'ext': 'mp4',
1966 'title': 'San Diego teen commits suicide after bullying over embarrassing video',
1967 'channel_id': 'UC-SJ6nODDmufqBzPBwCvYvQ',
1968 'uploader': 'CBS Mornings',
1969 'uploader_id': 'CBSThisMorning',
1970 'upload_date': '20140716',
1971 'description': 'md5:acde3a73d3f133fc97e837a9f76b53b7',
1972 'duration': 170,
1973 'categories': ['News & Politics'],
1974 'uploader_url': 'http://www.youtube.com/user/CBSThisMorning',
1975 'view_count': int,
1976 'channel': 'CBS Mornings',
1977 'tags': ['suicide', 'bullying', 'video', 'cbs', 'news'],
1978 'thumbnail': 'https://i.ytimg.com/vi/SZJvDhaSDnc/hqdefault.jpg',
1979 'age_limit': 18,
1980 'availability': 'needs_auth',
1981 'channel_url': 'https://www.youtube.com/channel/UC-SJ6nODDmufqBzPBwCvYvQ',
1982 'like_count': int,
1983 'live_status': 'not_live',
1984 'playable_in_embed': True,
1985 'channel_follower_count': int
1986 }
1987 },
1988 {
1989 # restricted location, https://github.com/ytdl-org/youtube-dl/issues/28685
1990 'url': 'cBvYw8_A0vQ',
1991 'info_dict': {
1992 'id': 'cBvYw8_A0vQ',
1993 'ext': 'mp4',
1994 'title': '4K Ueno Okachimachi Street Scenes 上野御徒町歩き',
1995 'description': 'md5:ea770e474b7cd6722b4c95b833c03630',
1996 'upload_date': '20201120',
1997 'uploader': 'Walk around Japan',
1998 'uploader_id': 'UC3o_t8PzBmXf5S9b7GLx1Mw',
1999 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UC3o_t8PzBmXf5S9b7GLx1Mw',
2000 'duration': 1456,
2001 'categories': ['Travel & Events'],
2002 'channel_id': 'UC3o_t8PzBmXf5S9b7GLx1Mw',
2003 'view_count': int,
2004 'channel': 'Walk around Japan',
2005 'tags': ['Ueno Tokyo', 'Okachimachi Tokyo', 'Ameyoko Street', 'Tokyo attraction', 'Travel in Tokyo'],
2006 'thumbnail': 'https://i.ytimg.com/vi_webp/cBvYw8_A0vQ/hqdefault.webp',
2007 'age_limit': 0,
2008 'availability': 'public',
2009 'channel_url': 'https://www.youtube.com/channel/UC3o_t8PzBmXf5S9b7GLx1Mw',
2010 'live_status': 'not_live',
2011 'playable_in_embed': True,
2012 'channel_follower_count': int
2013 },
2014 'params': {
2015 'skip_download': True,
2016 },
2017 }, {
2018 # Has multiple audio streams
2019 'url': 'WaOKSUlf4TM',
2020 'only_matching': True
2021 }, {
2022 # Requires Premium: has format 141 when requested using YTM url
2023 'url': 'https://music.youtube.com/watch?v=XclachpHxis',
2024 'only_matching': True
2025 }, {
2026 # multiple subtitles with same lang_code
2027 'url': 'https://www.youtube.com/watch?v=wsQiKKfKxug',
2028 'only_matching': True,
2029 }, {
2030 # Force use android client fallback
2031 'url': 'https://www.youtube.com/watch?v=YOelRv7fMxY',
2032 'info_dict': {
2033 'id': 'YOelRv7fMxY',
2034 'title': 'DIGGING A SECRET TUNNEL Part 1',
2035 'ext': '3gp',
2036 'upload_date': '20210624',
2037 'channel_id': 'UCp68_FLety0O-n9QU6phsgw',
2038 'uploader': 'colinfurze',
2039 'uploader_id': 'colinfurze',
2040 'channel_url': r're:https?://(?:www\.)?youtube\.com/channel/UCp68_FLety0O-n9QU6phsgw',
2041 'description': 'md5:5d5991195d599b56cd0c4148907eec50',
2042 'duration': 596,
2043 'categories': ['Entertainment'],
2044 'uploader_url': 'http://www.youtube.com/user/colinfurze',
2045 'view_count': int,
2046 'channel': 'colinfurze',
2047 'tags': ['Colin', 'furze', 'Terry', 'tunnel', 'underground', 'bunker'],
2048 'thumbnail': 'https://i.ytimg.com/vi/YOelRv7fMxY/maxresdefault.jpg',
2049 'age_limit': 0,
2050 'availability': 'public',
2051 'like_count': int,
2052 'live_status': 'not_live',
2053 'playable_in_embed': True,
2054 'channel_follower_count': int
2055 },
2056 'params': {
2057 'format': '17', # 3gp format available on android
2058 'extractor_args': {'youtube': {'player_client': ['android']}},
2059 },
2060 },
2061 {
2062 # Skip download of additional client configs (remix client config in this case)
2063 'url': 'https://music.youtube.com/watch?v=MgNrAu2pzNs',
2064 'only_matching': True,
2065 'params': {
2066 'extractor_args': {'youtube': {'player_skip': ['configs']}},
2067 },
2068 }, {
2069 # shorts
2070 'url': 'https://www.youtube.com/shorts/BGQWPY4IigY',
2071 'only_matching': True,
2072 }, {
2073 'note': 'Storyboards',
2074 'url': 'https://www.youtube.com/watch?v=5KLPxDtMqe8',
2075 'info_dict': {
2076 'id': '5KLPxDtMqe8',
2077 'ext': 'mhtml',
2078 'format_id': 'sb0',
2079 'title': 'Your Brain is Plastic',
2080 'uploader_id': 'scishow',
2081 'description': 'md5:89cd86034bdb5466cd87c6ba206cd2bc',
2082 'upload_date': '20140324',
2083 'uploader': 'SciShow',
2084 'like_count': int,
2085 'channel_id': 'UCZYTClx2T1of7BRZ86-8fow',
2086 'channel_url': 'https://www.youtube.com/channel/UCZYTClx2T1of7BRZ86-8fow',
2087 'view_count': int,
2088 'thumbnail': 'https://i.ytimg.com/vi/5KLPxDtMqe8/maxresdefault.jpg',
2089 'playable_in_embed': True,
2090 'tags': 'count:12',
2091 'uploader_url': 'http://www.youtube.com/user/scishow',
2092 'availability': 'public',
2093 'channel': 'SciShow',
2094 'live_status': 'not_live',
2095 'duration': 248,
2096 'categories': ['Education'],
2097 'age_limit': 0,
2098 'channel_follower_count': int
2099 }, 'params': {'format': 'mhtml', 'skip_download': True}
2100 }, {
2101 # Ensure video upload_date is in UTC timezone (video was uploaded 1641170939)
2102 'url': 'https://www.youtube.com/watch?v=2NUZ8W2llS4',
2103 'info_dict': {
2104 'id': '2NUZ8W2llS4',
2105 'ext': 'mp4',
2106 'title': 'The NP that test your phone performance 🙂',
2107 'description': 'md5:144494b24d4f9dfacb97c1bbef5de84d',
2108 'uploader': 'Leon Nguyen',
2109 'uploader_id': 'VNSXIII',
2110 'uploader_url': 'http://www.youtube.com/user/VNSXIII',
2111 'channel_id': 'UCRqNBSOHgilHfAczlUmlWHA',
2112 'channel_url': 'https://www.youtube.com/channel/UCRqNBSOHgilHfAczlUmlWHA',
2113 'duration': 21,
2114 'view_count': int,
2115 'age_limit': 0,
2116 'categories': ['Gaming'],
2117 'tags': 'count:23',
2118 'playable_in_embed': True,
2119 'live_status': 'not_live',
2120 'upload_date': '20220103',
2121 'like_count': int,
2122 'availability': 'public',
2123 'channel': 'Leon Nguyen',
2124 'thumbnail': 'https://i.ytimg.com/vi_webp/2NUZ8W2llS4/maxresdefault.webp',
2125 'channel_follower_count': int
2126 }
2127 }, {
2128 # date text is premiered video, ensure upload date in UTC (published 1641172509)
2129 'url': 'https://www.youtube.com/watch?v=mzZzzBU6lrM',
2130 'info_dict': {
2131 'id': 'mzZzzBU6lrM',
2132 'ext': 'mp4',
2133 'title': 'I Met GeorgeNotFound In Real Life...',
2134 'description': 'md5:cca98a355c7184e750f711f3a1b22c84',
2135 'uploader': 'Quackity',
2136 'uploader_id': 'QuackityHQ',
2137 'uploader_url': 'http://www.youtube.com/user/QuackityHQ',
2138 'channel_id': 'UC_8NknAFiyhOUaZqHR3lq3Q',
2139 'channel_url': 'https://www.youtube.com/channel/UC_8NknAFiyhOUaZqHR3lq3Q',
2140 'duration': 955,
2141 'view_count': int,
2142 'age_limit': 0,
2143 'categories': ['Entertainment'],
2144 'tags': 'count:26',
2145 'playable_in_embed': True,
2146 'live_status': 'not_live',
2147 'release_timestamp': 1641172509,
2148 'release_date': '20220103',
2149 'upload_date': '20220103',
2150 'like_count': int,
2151 'availability': 'public',
2152 'channel': 'Quackity',
2153 'thumbnail': 'https://i.ytimg.com/vi/mzZzzBU6lrM/maxresdefault.jpg',
2154 'channel_follower_count': int
2155 }
2156 },
2157 { # continuous livestream. Microformat upload date should be preferred.
2158 # Upload date was 2021-06-19 (not UTC), while stream start is 2021-11-27
2159 'url': 'https://www.youtube.com/watch?v=kgx4WGK0oNU',
2160 'info_dict': {
2161 'id': 'kgx4WGK0oNU',
2162 'title': r're:jazz\/lofi hip hop radio🌱chill beats to relax\/study to \[LIVE 24\/7\] \d{4}-\d{2}-\d{2} \d{2}:\d{2}',
2163 'ext': 'mp4',
2164 'channel_id': 'UC84whx2xxsiA1gXHXXqKGOA',
2165 'availability': 'public',
2166 'age_limit': 0,
2167 'release_timestamp': 1637975704,
2168 'upload_date': '20210619',
2169 'channel_url': 'https://www.youtube.com/channel/UC84whx2xxsiA1gXHXXqKGOA',
2170 'live_status': 'is_live',
2171 'thumbnail': 'https://i.ytimg.com/vi/kgx4WGK0oNU/maxresdefault.jpg',
2172 'uploader': '阿鲍Abao',
2173 'uploader_url': 'http://www.youtube.com/channel/UC84whx2xxsiA1gXHXXqKGOA',
2174 'channel': 'Abao in Tokyo',
2175 'channel_follower_count': int,
2176 'release_date': '20211127',
2177 'tags': 'count:39',
2178 'categories': ['People & Blogs'],
2179 'like_count': int,
2180 'uploader_id': 'UC84whx2xxsiA1gXHXXqKGOA',
2181 'view_count': int,
2182 'playable_in_embed': True,
2183 'description': 'md5:2ef1d002cad520f65825346e2084e49d',
2184 },
2185 'params': {'skip_download': True}
2186 },
2187 ]
2188
2189 @classmethod
2190 def suitable(cls, url):
2191 from ..utils import parse_qs
2192
2193 qs = parse_qs(url)
2194 if qs.get('list', [None])[0]:
2195 return False
2196 return super(YoutubeIE, cls).suitable(url)
2197
2198 def __init__(self, *args, **kwargs):
2199 super(YoutubeIE, self).__init__(*args, **kwargs)
2200 self._code_cache = {}
2201 self._player_cache = {}
2202
2203 def _prepare_live_from_start_formats(self, formats, video_id, live_start_time, url, webpage_url, smuggled_data):
2204 lock = threading.Lock()
2205
2206 is_live = True
2207 start_time = time.time()
2208 formats = [f for f in formats if f.get('is_from_start')]
2209
2210 def refetch_manifest(format_id, delay):
2211 nonlocal formats, start_time, is_live
2212 if time.time() <= start_time + delay:
2213 return
2214
2215 _, _, prs, player_url = self._download_player_responses(url, smuggled_data, video_id, webpage_url)
2216 video_details = traverse_obj(
2217 prs, (..., 'videoDetails'), expected_type=dict, default=[])
2218 microformats = traverse_obj(
2219 prs, (..., 'microformat', 'playerMicroformatRenderer'),
2220 expected_type=dict, default=[])
2221 _, is_live, _, formats = self._list_formats(video_id, microformats, video_details, prs, player_url)
2222 start_time = time.time()
2223
2224 def mpd_feed(format_id, delay):
2225 """
2226 @returns (manifest_url, manifest_stream_number, is_live) or None
2227 """
2228 with lock:
2229 refetch_manifest(format_id, delay)
2230
2231 f = next((f for f in formats if f['format_id'] == format_id), None)
2232 if not f:
2233 if not is_live:
2234 self.to_screen(f'{video_id}: Video is no longer live')
2235 else:
2236 self.report_warning(
2237 f'Cannot find refreshed manifest for format {format_id}{bug_reports_message()}')
2238 return None
2239 return f['manifest_url'], f['manifest_stream_number'], is_live
2240
2241 for f in formats:
2242 f['is_live'] = True
2243 f['protocol'] = 'http_dash_segments_generator'
2244 f['fragments'] = functools.partial(
2245 self._live_dash_fragments, f['format_id'], live_start_time, mpd_feed)
2246
2247 def _live_dash_fragments(self, format_id, live_start_time, mpd_feed, ctx):
2248 FETCH_SPAN, MAX_DURATION = 5, 432000
2249
2250 mpd_url, stream_number, is_live = None, None, True
2251
2252 begin_index = 0
2253 download_start_time = ctx.get('start') or time.time()
2254
2255 lack_early_segments = download_start_time - (live_start_time or download_start_time) > MAX_DURATION
2256 if lack_early_segments:
2257 self.report_warning(bug_reports_message(
2258 'Starting download from the last 120 hours of the live stream since '
2259 'YouTube does not have data before that. If you think this is wrong,'), only_once=True)
2260 lack_early_segments = True
2261
2262 known_idx, no_fragment_score, last_segment_url = begin_index, 0, None
2263 fragments, fragment_base_url = None, None
2264
2265 def _extract_sequence_from_mpd(refresh_sequence, immediate):
2266 nonlocal mpd_url, stream_number, is_live, no_fragment_score, fragments, fragment_base_url
2267 # Obtain from MPD's maximum seq value
2268 old_mpd_url = mpd_url
2269 last_error = ctx.pop('last_error', None)
2270 expire_fast = immediate or last_error and isinstance(last_error, compat_HTTPError) and last_error.code == 403
2271 mpd_url, stream_number, is_live = (mpd_feed(format_id, 5 if expire_fast else 18000)
2272 or (mpd_url, stream_number, False))
2273 if not refresh_sequence:
2274 if expire_fast and not is_live:
2275 return False, last_seq
2276 elif old_mpd_url == mpd_url:
2277 return True, last_seq
2278 try:
2279 fmts, _ = self._extract_mpd_formats_and_subtitles(
2280 mpd_url, None, note=False, errnote=False, fatal=False)
2281 except ExtractorError:
2282 fmts = None
2283 if not fmts:
2284 no_fragment_score += 2
2285 return False, last_seq
2286 fmt_info = next(x for x in fmts if x['manifest_stream_number'] == stream_number)
2287 fragments = fmt_info['fragments']
2288 fragment_base_url = fmt_info['fragment_base_url']
2289 assert fragment_base_url
2290
2291 _last_seq = int(re.search(r'(?:/|^)sq/(\d+)', fragments[-1]['path']).group(1))
2292 return True, _last_seq
2293
2294 while is_live:
2295 fetch_time = time.time()
2296 if no_fragment_score > 30:
2297 return
2298 if last_segment_url:
2299 # Obtain from "X-Head-Seqnum" header value from each segment
2300 try:
2301 urlh = self._request_webpage(
2302 last_segment_url, None, note=False, errnote=False, fatal=False)
2303 except ExtractorError:
2304 urlh = None
2305 last_seq = try_get(urlh, lambda x: int_or_none(x.headers['X-Head-Seqnum']))
2306 if last_seq is None:
2307 no_fragment_score += 2
2308 last_segment_url = None
2309 continue
2310 else:
2311 should_continue, last_seq = _extract_sequence_from_mpd(True, no_fragment_score > 15)
2312 no_fragment_score += 2
2313 if not should_continue:
2314 continue
2315
2316 if known_idx > last_seq:
2317 last_segment_url = None
2318 continue
2319
2320 last_seq += 1
2321
2322 if begin_index < 0 and known_idx < 0:
2323 # skip from the start when it's negative value
2324 known_idx = last_seq + begin_index
2325 if lack_early_segments:
2326 known_idx = max(known_idx, last_seq - int(MAX_DURATION // fragments[-1]['duration']))
2327 try:
2328 for idx in range(known_idx, last_seq):
2329 # do not update sequence here or you'll get skipped some part of it
2330 should_continue, _ = _extract_sequence_from_mpd(False, False)
2331 if not should_continue:
2332 known_idx = idx - 1
2333 raise ExtractorError('breaking out of outer loop')
2334 last_segment_url = urljoin(fragment_base_url, 'sq/%d' % idx)
2335 yield {
2336 'url': last_segment_url,
2337 }
2338 if known_idx == last_seq:
2339 no_fragment_score += 5
2340 else:
2341 no_fragment_score = 0
2342 known_idx = last_seq
2343 except ExtractorError:
2344 continue
2345
2346 time.sleep(max(0, FETCH_SPAN + fetch_time - time.time()))
2347
2348 def _extract_player_url(self, *ytcfgs, webpage=None):
2349 player_url = traverse_obj(
2350 ytcfgs, (..., 'PLAYER_JS_URL'), (..., 'WEB_PLAYER_CONTEXT_CONFIGS', ..., 'jsUrl'),
2351 get_all=False, expected_type=compat_str)
2352 if not player_url:
2353 return
2354 return urljoin('https://www.youtube.com', player_url)
2355
2356 def _download_player_url(self, video_id, fatal=False):
2357 res = self._download_webpage(
2358 'https://www.youtube.com/iframe_api',
2359 note='Downloading iframe API JS', video_id=video_id, fatal=fatal)
2360 if res:
2361 player_version = self._search_regex(
2362 r'player\\?/([0-9a-fA-F]{8})\\?/', res, 'player version', fatal=fatal)
2363 if player_version:
2364 return f'https://www.youtube.com/s/player/{player_version}/player_ias.vflset/en_US/base.js'
2365
2366 def _signature_cache_id(self, example_sig):
2367 """ Return a string representation of a signature """
2368 return '.'.join(compat_str(len(part)) for part in example_sig.split('.'))
2369
2370 @classmethod
2371 def _extract_player_info(cls, player_url):
2372 for player_re in cls._PLAYER_INFO_RE:
2373 id_m = re.search(player_re, player_url)
2374 if id_m:
2375 break
2376 else:
2377 raise ExtractorError('Cannot identify player %r' % player_url)
2378 return id_m.group('id')
2379
2380 def _load_player(self, video_id, player_url, fatal=True):
2381 player_id = self._extract_player_info(player_url)
2382 if player_id not in self._code_cache:
2383 code = self._download_webpage(
2384 player_url, video_id, fatal=fatal,
2385 note='Downloading player ' + player_id,
2386 errnote='Download of %s failed' % player_url)
2387 if code:
2388 self._code_cache[player_id] = code
2389 return self._code_cache.get(player_id)
2390
2391 def _extract_signature_function(self, video_id, player_url, example_sig):
2392 player_id = self._extract_player_info(player_url)
2393
2394 # Read from filesystem cache
2395 func_id = 'js_%s_%s' % (
2396 player_id, self._signature_cache_id(example_sig))
2397 assert os.path.basename(func_id) == func_id
2398
2399 cache_spec = self._downloader.cache.load('youtube-sigfuncs', func_id)
2400 if cache_spec is not None:
2401 return lambda s: ''.join(s[i] for i in cache_spec)
2402
2403 code = self._load_player(video_id, player_url)
2404 if code:
2405 res = self._parse_sig_js(code)
2406
2407 test_string = ''.join(map(compat_chr, range(len(example_sig))))
2408 cache_res = res(test_string)
2409 cache_spec = [ord(c) for c in cache_res]
2410
2411 self._downloader.cache.store('youtube-sigfuncs', func_id, cache_spec)
2412 return res
2413
2414 def _print_sig_code(self, func, example_sig):
2415 if not self.get_param('youtube_print_sig_code'):
2416 return
2417
2418 def gen_sig_code(idxs):
2419 def _genslice(start, end, step):
2420 starts = '' if start == 0 else str(start)
2421 ends = (':%d' % (end + step)) if end + step >= 0 else ':'
2422 steps = '' if step == 1 else (':%d' % step)
2423 return 's[%s%s%s]' % (starts, ends, steps)
2424
2425 step = None
2426 # Quelch pyflakes warnings - start will be set when step is set
2427 start = '(Never used)'
2428 for i, prev in zip(idxs[1:], idxs[:-1]):
2429 if step is not None:
2430 if i - prev == step:
2431 continue
2432 yield _genslice(start, prev, step)
2433 step = None
2434 continue
2435 if i - prev in [-1, 1]:
2436 step = i - prev
2437 start = prev
2438 continue
2439 else:
2440 yield 's[%d]' % prev
2441 if step is None:
2442 yield 's[%d]' % i
2443 else:
2444 yield _genslice(start, i, step)
2445
2446 test_string = ''.join(map(compat_chr, range(len(example_sig))))
2447 cache_res = func(test_string)
2448 cache_spec = [ord(c) for c in cache_res]
2449 expr_code = ' + '.join(gen_sig_code(cache_spec))
2450 signature_id_tuple = '(%s)' % (
2451 ', '.join(compat_str(len(p)) for p in example_sig.split('.')))
2452 code = ('if tuple(len(p) for p in s.split(\'.\')) == %s:\n'
2453 ' return %s\n') % (signature_id_tuple, expr_code)
2454 self.to_screen('Extracted signature function:\n' + code)
2455
2456 def _parse_sig_js(self, jscode):
2457 funcname = self._search_regex(
2458 (r'\b[cs]\s*&&\s*[adf]\.set\([^,]+\s*,\s*encodeURIComponent\s*\(\s*(?P<sig>[a-zA-Z0-9$]+)\(',
2459 r'\b[a-zA-Z0-9]+\s*&&\s*[a-zA-Z0-9]+\.set\([^,]+\s*,\s*encodeURIComponent\s*\(\s*(?P<sig>[a-zA-Z0-9$]+)\(',
2460 r'\bm=(?P<sig>[a-zA-Z0-9$]{2,})\(decodeURIComponent\(h\.s\)\)',
2461 r'\bc&&\(c=(?P<sig>[a-zA-Z0-9$]{2,})\(decodeURIComponent\(c\)\)',
2462 r'(?:\b|[^a-zA-Z0-9$])(?P<sig>[a-zA-Z0-9$]{2,})\s*=\s*function\(\s*a\s*\)\s*{\s*a\s*=\s*a\.split\(\s*""\s*\);[a-zA-Z0-9$]{2}\.[a-zA-Z0-9$]{2}\(a,\d+\)',
2463 r'(?:\b|[^a-zA-Z0-9$])(?P<sig>[a-zA-Z0-9$]{2,})\s*=\s*function\(\s*a\s*\)\s*{\s*a\s*=\s*a\.split\(\s*""\s*\)',
2464 r'(?P<sig>[a-zA-Z0-9$]+)\s*=\s*function\(\s*a\s*\)\s*{\s*a\s*=\s*a\.split\(\s*""\s*\)',
2465 # Obsolete patterns
2466 r'(["\'])signature\1\s*,\s*(?P<sig>[a-zA-Z0-9$]+)\(',
2467 r'\.sig\|\|(?P<sig>[a-zA-Z0-9$]+)\(',
2468 r'yt\.akamaized\.net/\)\s*\|\|\s*.*?\s*[cs]\s*&&\s*[adf]\.set\([^,]+\s*,\s*(?:encodeURIComponent\s*\()?\s*(?P<sig>[a-zA-Z0-9$]+)\(',
2469 r'\b[cs]\s*&&\s*[adf]\.set\([^,]+\s*,\s*(?P<sig>[a-zA-Z0-9$]+)\(',
2470 r'\b[a-zA-Z0-9]+\s*&&\s*[a-zA-Z0-9]+\.set\([^,]+\s*,\s*(?P<sig>[a-zA-Z0-9$]+)\(',
2471 r'\bc\s*&&\s*a\.set\([^,]+\s*,\s*\([^)]*\)\s*\(\s*(?P<sig>[a-zA-Z0-9$]+)\(',
2472 r'\bc\s*&&\s*[a-zA-Z0-9]+\.set\([^,]+\s*,\s*\([^)]*\)\s*\(\s*(?P<sig>[a-zA-Z0-9$]+)\(',
2473 r'\bc\s*&&\s*[a-zA-Z0-9]+\.set\([^,]+\s*,\s*\([^)]*\)\s*\(\s*(?P<sig>[a-zA-Z0-9$]+)\('),
2474 jscode, 'Initial JS player signature function name', group='sig')
2475
2476 jsi = JSInterpreter(jscode)
2477 initial_function = jsi.extract_function(funcname)
2478 return lambda s: initial_function([s])
2479
2480 def _decrypt_signature(self, s, video_id, player_url):
2481 """Turn the encrypted s field into a working signature"""
2482
2483 if player_url is None:
2484 raise ExtractorError('Cannot decrypt signature without player_url')
2485
2486 try:
2487 player_id = (player_url, self._signature_cache_id(s))
2488 if player_id not in self._player_cache:
2489 func = self._extract_signature_function(
2490 video_id, player_url, s
2491 )
2492 self._player_cache[player_id] = func
2493 func = self._player_cache[player_id]
2494 self._print_sig_code(func, s)
2495 return func(s)
2496 except Exception as e:
2497 raise ExtractorError('Signature extraction failed: ' + traceback.format_exc(), cause=e)
2498
2499 def _decrypt_nsig(self, s, video_id, player_url):
2500 """Turn the encrypted n field into a working signature"""
2501 if player_url is None:
2502 raise ExtractorError('Cannot decrypt nsig without player_url')
2503 player_url = urljoin('https://www.youtube.com', player_url)
2504
2505 sig_id = ('nsig_value', s)
2506 if sig_id in self._player_cache:
2507 return self._player_cache[sig_id]
2508
2509 try:
2510 player_id = ('nsig', player_url)
2511 if player_id not in self._player_cache:
2512 self._player_cache[player_id] = self._extract_n_function(video_id, player_url)
2513 func = self._player_cache[player_id]
2514 self._player_cache[sig_id] = func(s)
2515 self.write_debug(f'Decrypted nsig {s} => {self._player_cache[sig_id]}')
2516 return self._player_cache[sig_id]
2517 except Exception as e:
2518 raise ExtractorError(traceback.format_exc(), cause=e, video_id=video_id)
2519
2520 def _extract_n_function_name(self, jscode):
2521 nfunc, idx = self._search_regex(
2522 r'\.get\("n"\)\)&&\(b=(?P<nfunc>[a-zA-Z0-9$]+)(?:\[(?P<idx>\d+)\])?\([a-zA-Z0-9]\)',
2523 jscode, 'Initial JS player n function name', group=('nfunc', 'idx'))
2524 if not idx:
2525 return nfunc
2526 return json.loads(js_to_json(self._search_regex(
2527 rf'var {re.escape(nfunc)}\s*=\s*(\[.+?\]);', jscode,
2528 f'Initial JS player n function list ({nfunc}.{idx})')))[int(idx)]
2529
2530 def _extract_n_function(self, video_id, player_url):
2531 player_id = self._extract_player_info(player_url)
2532 func_code = self._downloader.cache.load('youtube-nsig', player_id)
2533
2534 if func_code:
2535 jsi = JSInterpreter(func_code)
2536 else:
2537 jscode = self._load_player(video_id, player_url)
2538 funcname = self._extract_n_function_name(jscode)
2539 jsi = JSInterpreter(jscode)
2540 func_code = jsi.extract_function_code(funcname)
2541 self._downloader.cache.store('youtube-nsig', player_id, func_code)
2542
2543 if self.get_param('youtube_print_sig_code'):
2544 self.to_screen(f'Extracted nsig function from {player_id}:\n{func_code[1]}\n')
2545
2546 return lambda s: jsi.extract_function_from_code(*func_code)([s])
2547
2548 def _extract_signature_timestamp(self, video_id, player_url, ytcfg=None, fatal=False):
2549 """
2550 Extract signatureTimestamp (sts)
2551 Required to tell API what sig/player version is in use.
2552 """
2553 sts = None
2554 if isinstance(ytcfg, dict):
2555 sts = int_or_none(ytcfg.get('STS'))
2556
2557 if not sts:
2558 # Attempt to extract from player
2559 if player_url is None:
2560 error_msg = 'Cannot extract signature timestamp without player_url.'
2561 if fatal:
2562 raise ExtractorError(error_msg)
2563 self.report_warning(error_msg)
2564 return
2565 code = self._load_player(video_id, player_url, fatal=fatal)
2566 if code:
2567 sts = int_or_none(self._search_regex(
2568 r'(?:signatureTimestamp|sts)\s*:\s*(?P<sts>[0-9]{5})', code,
2569 'JS player signature timestamp', group='sts', fatal=fatal))
2570 return sts
2571
2572 def _mark_watched(self, video_id, player_responses):
2573 playback_url = get_first(
2574 player_responses, ('playbackTracking', 'videostatsPlaybackUrl', 'baseUrl'),
2575 expected_type=url_or_none)
2576 if not playback_url:
2577 self.report_warning('Unable to mark watched')
2578 return
2579 parsed_playback_url = compat_urlparse.urlparse(playback_url)
2580 qs = compat_urlparse.parse_qs(parsed_playback_url.query)
2581
2582 # cpn generation algorithm is reverse engineered from base.js.
2583 # In fact it works even with dummy cpn.
2584 CPN_ALPHABET = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_'
2585 cpn = ''.join((CPN_ALPHABET[random.randint(0, 256) & 63] for _ in range(0, 16)))
2586
2587 qs.update({
2588 'ver': ['2'],
2589 'cpn': [cpn],
2590 })
2591 playback_url = compat_urlparse.urlunparse(
2592 parsed_playback_url._replace(query=compat_urllib_parse_urlencode(qs, True)))
2593
2594 self._download_webpage(
2595 playback_url, video_id, 'Marking watched',
2596 'Unable to mark watched', fatal=False)
2597
2598 @staticmethod
2599 def _extract_urls(webpage):
2600 # Embedded YouTube player
2601 entries = [
2602 unescapeHTML(mobj.group('url'))
2603 for mobj in re.finditer(r'''(?x)
2604 (?:
2605 <iframe[^>]+?src=|
2606 data-video-url=|
2607 <embed[^>]+?src=|
2608 embedSWF\(?:\s*|
2609 <object[^>]+data=|
2610 new\s+SWFObject\(
2611 )
2612 (["\'])
2613 (?P<url>(?:https?:)?//(?:www\.)?youtube(?:-nocookie)?\.com/
2614 (?:embed|v|p)/[0-9A-Za-z_-]{11}.*?)
2615 \1''', webpage)]
2616
2617 # lazyYT YouTube embed
2618 entries.extend(list(map(
2619 unescapeHTML,
2620 re.findall(r'class="lazyYT" data-youtube-id="([^"]+)"', webpage))))
2621
2622 # Wordpress "YouTube Video Importer" plugin
2623 matches = re.findall(r'''(?x)<div[^>]+
2624 class=(?P<q1>[\'"])[^\'"]*\byvii_single_video_player\b[^\'"]*(?P=q1)[^>]+
2625 data-video_id=(?P<q2>[\'"])([^\'"]+)(?P=q2)''', webpage)
2626 entries.extend(m[-1] for m in matches)
2627
2628 return entries
2629
2630 @staticmethod
2631 def _extract_url(webpage):
2632 urls = YoutubeIE._extract_urls(webpage)
2633 return urls[0] if urls else None
2634
2635 @classmethod
2636 def extract_id(cls, url):
2637 mobj = re.match(cls._VALID_URL, url, re.VERBOSE)
2638 if mobj is None:
2639 raise ExtractorError('Invalid URL: %s' % url)
2640 return mobj.group('id')
2641
2642 def _extract_chapters_from_json(self, data, duration):
2643 chapter_list = traverse_obj(
2644 data, (
2645 'playerOverlays', 'playerOverlayRenderer', 'decoratedPlayerBarRenderer',
2646 'decoratedPlayerBarRenderer', 'playerBar', 'chapteredPlayerBarRenderer', 'chapters'
2647 ), expected_type=list)
2648
2649 return self._extract_chapters(
2650 chapter_list,
2651 chapter_time=lambda chapter: float_or_none(
2652 traverse_obj(chapter, ('chapterRenderer', 'timeRangeStartMillis')), scale=1000),
2653 chapter_title=lambda chapter: traverse_obj(
2654 chapter, ('chapterRenderer', 'title', 'simpleText'), expected_type=str),
2655 duration=duration)
2656
2657 def _extract_chapters_from_engagement_panel(self, data, duration):
2658 content_list = traverse_obj(
2659 data,
2660 ('engagementPanels', ..., 'engagementPanelSectionListRenderer', 'content', 'macroMarkersListRenderer', 'contents'),
2661 expected_type=list, default=[])
2662 chapter_time = lambda chapter: parse_duration(self._get_text(chapter, 'timeDescription'))
2663 chapter_title = lambda chapter: self._get_text(chapter, 'title')
2664
2665 return next((
2666 filter(None, (
2667 self._extract_chapters(
2668 traverse_obj(contents, (..., 'macroMarkersListItemRenderer')),
2669 chapter_time, chapter_title, duration)
2670 for contents in content_list
2671 ))), [])
2672
2673 def _extract_chapters(self, chapter_list, chapter_time, chapter_title, duration):
2674 chapters = []
2675 last_chapter = {'start_time': 0}
2676 for idx, chapter in enumerate(chapter_list or []):
2677 title = chapter_title(chapter)
2678 start_time = chapter_time(chapter)
2679 if start_time is None:
2680 continue
2681 last_chapter['end_time'] = start_time
2682 if start_time < last_chapter['start_time']:
2683 if idx == 1:
2684 chapters.pop()
2685 self.report_warning('Invalid start time for chapter "%s"' % last_chapter['title'])
2686 else:
2687 self.report_warning(f'Invalid start time for chapter "{title}"')
2688 continue
2689 last_chapter = {'start_time': start_time, 'title': title}
2690 chapters.append(last_chapter)
2691 last_chapter['end_time'] = duration
2692 return chapters
2693
2694 def _extract_yt_initial_variable(self, webpage, regex, video_id, name):
2695 return self._parse_json(self._search_regex(
2696 (r'%s\s*%s' % (regex, self._YT_INITIAL_BOUNDARY_RE),
2697 regex), webpage, name, default='{}'), video_id, fatal=False)
2698
2699 def _extract_comment(self, comment_renderer, parent=None):
2700 comment_id = comment_renderer.get('commentId')
2701 if not comment_id:
2702 return
2703
2704 text = self._get_text(comment_renderer, 'contentText')
2705
2706 # note: timestamp is an estimate calculated from the current time and time_text
2707 timestamp, time_text = self._extract_time_text(comment_renderer, 'publishedTimeText')
2708 author = self._get_text(comment_renderer, 'authorText')
2709 author_id = try_get(comment_renderer,
2710 lambda x: x['authorEndpoint']['browseEndpoint']['browseId'], compat_str)
2711
2712 votes = parse_count(try_get(comment_renderer, (lambda x: x['voteCount']['simpleText'],
2713 lambda x: x['likeCount']), compat_str)) or 0
2714 author_thumbnail = try_get(comment_renderer,
2715 lambda x: x['authorThumbnail']['thumbnails'][-1]['url'], compat_str)
2716
2717 author_is_uploader = try_get(comment_renderer, lambda x: x['authorIsChannelOwner'], bool)
2718 is_favorited = 'creatorHeart' in (try_get(
2719 comment_renderer, lambda x: x['actionButtons']['commentActionButtonsRenderer'], dict) or {})
2720 return {
2721 'id': comment_id,
2722 'text': text,
2723 'timestamp': timestamp,
2724 'time_text': time_text,
2725 'like_count': votes,
2726 'is_favorited': is_favorited,
2727 'author': author,
2728 'author_id': author_id,
2729 'author_thumbnail': author_thumbnail,
2730 'author_is_uploader': author_is_uploader,
2731 'parent': parent or 'root'
2732 }
2733
2734 def _comment_entries(self, root_continuation_data, ytcfg, video_id, parent=None, tracker=None):
2735
2736 get_single_config_arg = lambda c: self._configuration_arg(c, [''])[0]
2737
2738 def extract_header(contents):
2739 _continuation = None
2740 for content in contents:
2741 comments_header_renderer = traverse_obj(content, 'commentsHeaderRenderer')
2742 expected_comment_count = self._get_count(
2743 comments_header_renderer, 'countText', 'commentsCount')
2744
2745 if expected_comment_count:
2746 tracker['est_total'] = expected_comment_count
2747 self.to_screen(f'Downloading ~{expected_comment_count} comments')
2748 comment_sort_index = int(get_single_config_arg('comment_sort') != 'top') # 1 = new, 0 = top
2749
2750 sort_menu_item = try_get(
2751 comments_header_renderer,
2752 lambda x: x['sortMenu']['sortFilterSubMenuRenderer']['subMenuItems'][comment_sort_index], dict) or {}
2753 sort_continuation_ep = sort_menu_item.get('serviceEndpoint') or {}
2754
2755 _continuation = self._extract_continuation_ep_data(sort_continuation_ep) or self._extract_continuation(sort_menu_item)
2756 if not _continuation:
2757 continue
2758
2759 sort_text = str_or_none(sort_menu_item.get('title'))
2760 if not sort_text:
2761 sort_text = 'top comments' if comment_sort_index == 0 else 'newest first'
2762 self.to_screen('Sorting comments by %s' % sort_text.lower())
2763 break
2764 return _continuation
2765
2766 def extract_thread(contents):
2767 if not parent:
2768 tracker['current_page_thread'] = 0
2769 for content in contents:
2770 if not parent and tracker['total_parent_comments'] >= max_parents:
2771 yield
2772 comment_thread_renderer = try_get(content, lambda x: x['commentThreadRenderer'])
2773 comment_renderer = get_first(
2774 (comment_thread_renderer, content), [['commentRenderer', ('comment', 'commentRenderer')]],
2775 expected_type=dict, default={})
2776
2777 comment = self._extract_comment(comment_renderer, parent)
2778 if not comment:
2779 continue
2780
2781 tracker['running_total'] += 1
2782 tracker['total_reply_comments' if parent else 'total_parent_comments'] += 1
2783 yield comment
2784
2785 # Attempt to get the replies
2786 comment_replies_renderer = try_get(
2787 comment_thread_renderer, lambda x: x['replies']['commentRepliesRenderer'], dict)
2788
2789 if comment_replies_renderer:
2790 tracker['current_page_thread'] += 1
2791 comment_entries_iter = self._comment_entries(
2792 comment_replies_renderer, ytcfg, video_id,
2793 parent=comment.get('id'), tracker=tracker)
2794 for reply_comment in itertools.islice(comment_entries_iter, min(max_replies_per_thread, max(0, max_replies - tracker['total_reply_comments']))):
2795 yield reply_comment
2796
2797 # Keeps track of counts across recursive calls
2798 if not tracker:
2799 tracker = dict(
2800 running_total=0,
2801 est_total=0,
2802 current_page_thread=0,
2803 total_parent_comments=0,
2804 total_reply_comments=0)
2805
2806 # TODO: Deprecated
2807 # YouTube comments have a max depth of 2
2808 max_depth = int_or_none(get_single_config_arg('max_comment_depth'))
2809 if max_depth:
2810 self._downloader.deprecation_warning(
2811 '[youtube] max_comment_depth extractor argument is deprecated. Set max replies in the max-comments extractor argument instead.')
2812 if max_depth == 1 and parent:
2813 return
2814
2815 max_comments, max_parents, max_replies, max_replies_per_thread, *_ = map(
2816 lambda p: int_or_none(p, default=sys.maxsize), self._configuration_arg('max_comments', ) + [''] * 4)
2817
2818 continuation = self._extract_continuation(root_continuation_data)
2819 message = self._get_text(root_continuation_data, ('contents', ..., 'messageRenderer', 'text'), max_runs=1)
2820 if message and not parent:
2821 self.report_warning(message, video_id=video_id)
2822
2823 response = None
2824 is_first_continuation = parent is None
2825
2826 for page_num in itertools.count(0):
2827 if not continuation:
2828 break
2829 headers = self.generate_api_headers(ytcfg=ytcfg, visitor_data=self._extract_visitor_data(response))
2830 comment_prog_str = f"({tracker['running_total']}/{tracker['est_total']})"
2831 if page_num == 0:
2832 if is_first_continuation:
2833 note_prefix = 'Downloading comment section API JSON'
2834 else:
2835 note_prefix = ' Downloading comment API JSON reply thread %d %s' % (
2836 tracker['current_page_thread'], comment_prog_str)
2837 else:
2838 note_prefix = '%sDownloading comment%s API JSON page %d %s' % (
2839 ' ' if parent else '', ' replies' if parent else '',
2840 page_num, comment_prog_str)
2841
2842 response = self._extract_response(
2843 item_id=None, query=continuation,
2844 ep='next', ytcfg=ytcfg, headers=headers, note=note_prefix,
2845 check_get_keys='onResponseReceivedEndpoints')
2846
2847 continuation_contents = traverse_obj(
2848 response, 'onResponseReceivedEndpoints', expected_type=list, default=[])
2849
2850 continuation = None
2851 for continuation_section in continuation_contents:
2852 continuation_items = traverse_obj(
2853 continuation_section,
2854 (('reloadContinuationItemsCommand', 'appendContinuationItemsAction'), 'continuationItems'),
2855 get_all=False, expected_type=list) or []
2856 if is_first_continuation:
2857 continuation = extract_header(continuation_items)
2858 is_first_continuation = False
2859 if continuation:
2860 break
2861 continue
2862
2863 for entry in extract_thread(continuation_items):
2864 if not entry:
2865 return
2866 yield entry
2867 continuation = self._extract_continuation({'contents': continuation_items})
2868 if continuation:
2869 break
2870
2871 def _get_comments(self, ytcfg, video_id, contents, webpage):
2872 """Entry for comment extraction"""
2873 def _real_comment_extract(contents):
2874 renderer = next((
2875 item for item in traverse_obj(contents, (..., 'itemSectionRenderer'), default={})
2876 if item.get('sectionIdentifier') == 'comment-item-section'), None)
2877 yield from self._comment_entries(renderer, ytcfg, video_id)
2878
2879 max_comments = int_or_none(self._configuration_arg('max_comments', [''])[0])
2880 return itertools.islice(_real_comment_extract(contents), 0, max_comments)
2881
2882 @staticmethod
2883 def _get_checkok_params():
2884 return {'contentCheckOk': True, 'racyCheckOk': True}
2885
2886 @classmethod
2887 def _generate_player_context(cls, sts=None):
2888 context = {
2889 'html5Preference': 'HTML5_PREF_WANTS',
2890 }
2891 if sts is not None:
2892 context['signatureTimestamp'] = sts
2893 return {
2894 'playbackContext': {
2895 'contentPlaybackContext': context
2896 },
2897 **cls._get_checkok_params()
2898 }
2899
2900 @staticmethod
2901 def _is_agegated(player_response):
2902 if traverse_obj(player_response, ('playabilityStatus', 'desktopLegacyAgeGateReason')):
2903 return True
2904
2905 reasons = traverse_obj(player_response, ('playabilityStatus', ('status', 'reason')), default=[])
2906 AGE_GATE_REASONS = (
2907 'confirm your age', 'age-restricted', 'inappropriate', # reason
2908 'age_verification_required', 'age_check_required', # status
2909 )
2910 return any(expected in reason for expected in AGE_GATE_REASONS for reason in reasons)
2911
2912 @staticmethod
2913 def _is_unplayable(player_response):
2914 return traverse_obj(player_response, ('playabilityStatus', 'status')) == 'UNPLAYABLE'
2915
2916 def _extract_player_response(self, client, video_id, master_ytcfg, player_ytcfg, player_url, initial_pr):
2917
2918 session_index = self._extract_session_index(player_ytcfg, master_ytcfg)
2919 syncid = self._extract_account_syncid(player_ytcfg, master_ytcfg, initial_pr)
2920 sts = self._extract_signature_timestamp(video_id, player_url, master_ytcfg, fatal=False) if player_url else None
2921 headers = self.generate_api_headers(
2922 ytcfg=player_ytcfg, account_syncid=syncid, session_index=session_index, default_client=client)
2923
2924 yt_query = {'videoId': video_id}
2925 yt_query.update(self._generate_player_context(sts))
2926 return self._extract_response(
2927 item_id=video_id, ep='player', query=yt_query,
2928 ytcfg=player_ytcfg, headers=headers, fatal=True,
2929 default_client=client,
2930 note='Downloading %s player API JSON' % client.replace('_', ' ').strip()
2931 ) or None
2932
2933 def _get_requested_clients(self, url, smuggled_data):
2934 requested_clients = []
2935 default = ['android', 'web']
2936 allowed_clients = sorted(
2937 [client for client in INNERTUBE_CLIENTS.keys() if client[:1] != '_'],
2938 key=lambda client: INNERTUBE_CLIENTS[client]['priority'], reverse=True)
2939 for client in self._configuration_arg('player_client'):
2940 if client in allowed_clients:
2941 requested_clients.append(client)
2942 elif client == 'default':
2943 requested_clients.extend(default)
2944 elif client == 'all':
2945 requested_clients.extend(allowed_clients)
2946 else:
2947 self.report_warning(f'Skipping unsupported client {client}')
2948 if not requested_clients:
2949 requested_clients = default
2950
2951 if smuggled_data.get('is_music_url') or self.is_music_url(url):
2952 requested_clients.extend(
2953 f'{client}_music' for client in requested_clients if f'{client}_music' in INNERTUBE_CLIENTS)
2954
2955 return orderedSet(requested_clients)
2956
2957 def _extract_player_ytcfg(self, client, video_id):
2958 url = {
2959 'web_music': 'https://music.youtube.com',
2960 'web_embedded': f'https://www.youtube.com/embed/{video_id}?html5=1'
2961 }.get(client)
2962 if not url:
2963 return {}
2964 webpage = self._download_webpage(url, video_id, fatal=False, note='Downloading %s config' % client.replace('_', ' ').strip())
2965 return self.extract_ytcfg(video_id, webpage) or {}
2966
2967 def _extract_player_responses(self, clients, video_id, webpage, master_ytcfg):
2968 initial_pr = None
2969 if webpage:
2970 initial_pr = self._extract_yt_initial_variable(
2971 webpage, self._YT_INITIAL_PLAYER_RESPONSE_RE,
2972 video_id, 'initial player response')
2973
2974 all_clients = set(clients)
2975 clients = clients[::-1]
2976 prs = []
2977
2978 def append_client(*client_names):
2979 """ Append the first client name that exists but not already used """
2980 for client_name in client_names:
2981 actual_client = _split_innertube_client(client_name)[0]
2982 if actual_client in INNERTUBE_CLIENTS:
2983 if actual_client not in all_clients:
2984 clients.append(client_name)
2985 all_clients.add(actual_client)
2986 return
2987
2988 # Android player_response does not have microFormats which are needed for
2989 # extraction of some data. So we return the initial_pr with formats
2990 # stripped out even if not requested by the user
2991 # See: https://github.com/yt-dlp/yt-dlp/issues/501
2992 if initial_pr:
2993 pr = dict(initial_pr)
2994 pr['streamingData'] = None
2995 prs.append(pr)
2996
2997 last_error = None
2998 tried_iframe_fallback = False
2999 player_url = None
3000 while clients:
3001 client, base_client, variant = _split_innertube_client(clients.pop())
3002 player_ytcfg = master_ytcfg if client == 'web' else {}
3003 if 'configs' not in self._configuration_arg('player_skip'):
3004 player_ytcfg = self._extract_player_ytcfg(client, video_id) or player_ytcfg
3005
3006 player_url = player_url or self._extract_player_url(master_ytcfg, player_ytcfg, webpage=webpage)
3007 require_js_player = self._get_default_ytcfg(client).get('REQUIRE_JS_PLAYER')
3008 if 'js' in self._configuration_arg('player_skip'):
3009 require_js_player = False
3010 player_url = None
3011
3012 if not player_url and not tried_iframe_fallback and require_js_player:
3013 player_url = self._download_player_url(video_id)
3014 tried_iframe_fallback = True
3015
3016 try:
3017 pr = initial_pr if client == 'web' and initial_pr else self._extract_player_response(
3018 client, video_id, player_ytcfg or master_ytcfg, player_ytcfg, player_url if require_js_player else None, initial_pr)
3019 except ExtractorError as e:
3020 if last_error:
3021 self.report_warning(last_error)
3022 last_error = e
3023 continue
3024
3025 if pr:
3026 prs.append(pr)
3027
3028 # creator clients can bypass AGE_VERIFICATION_REQUIRED if logged in
3029 if variant == 'embedded' and self._is_unplayable(pr) and self.is_authenticated:
3030 append_client(f'{base_client}_creator')
3031 elif self._is_agegated(pr):
3032 if variant == 'tv_embedded':
3033 append_client(f'{base_client}_embedded')
3034 elif not variant:
3035 append_client(f'tv_embedded.{base_client}', f'{base_client}_embedded')
3036
3037 if last_error:
3038 if not len(prs):
3039 raise last_error
3040 self.report_warning(last_error)
3041 return prs, player_url
3042
3043 def _extract_formats(self, streaming_data, video_id, player_url, is_live, duration):
3044 itags, stream_ids = {}, []
3045 itag_qualities, res_qualities = {}, {}
3046 q = qualities([
3047 # Normally tiny is the smallest video-only formats. But
3048 # audio-only formats with unknown quality may get tagged as tiny
3049 'tiny',
3050 'audio_quality_ultralow', 'audio_quality_low', 'audio_quality_medium', 'audio_quality_high', # Audio only formats
3051 'small', 'medium', 'large', 'hd720', 'hd1080', 'hd1440', 'hd2160', 'hd2880', 'highres'
3052 ])
3053 streaming_formats = traverse_obj(streaming_data, (..., ('formats', 'adaptiveFormats'), ...), default=[])
3054
3055 for fmt in streaming_formats:
3056 if fmt.get('targetDurationSec'):
3057 continue
3058
3059 itag = str_or_none(fmt.get('itag'))
3060 audio_track = fmt.get('audioTrack') or {}
3061 stream_id = '%s.%s' % (itag or '', audio_track.get('id', ''))
3062 if stream_id in stream_ids:
3063 continue
3064
3065 quality = fmt.get('quality')
3066 height = int_or_none(fmt.get('height'))
3067 if quality == 'tiny' or not quality:
3068 quality = fmt.get('audioQuality', '').lower() or quality
3069 # The 3gp format (17) in android client has a quality of "small",
3070 # but is actually worse than other formats
3071 if itag == '17':
3072 quality = 'tiny'
3073 if quality:
3074 if itag:
3075 itag_qualities[itag] = quality
3076 if height:
3077 res_qualities[height] = quality
3078 # FORMAT_STREAM_TYPE_OTF(otf=1) requires downloading the init fragment
3079 # (adding `&sq=0` to the URL) and parsing emsg box to determine the
3080 # number of fragment that would subsequently requested with (`&sq=N`)
3081 if fmt.get('type') == 'FORMAT_STREAM_TYPE_OTF':
3082 continue
3083
3084 fmt_url = fmt.get('url')
3085 if not fmt_url:
3086 sc = compat_parse_qs(fmt.get('signatureCipher'))
3087 fmt_url = url_or_none(try_get(sc, lambda x: x['url'][0]))
3088 encrypted_sig = try_get(sc, lambda x: x['s'][0])
3089 if not (sc and fmt_url and encrypted_sig):
3090 continue
3091 if not player_url:
3092 continue
3093 signature = self._decrypt_signature(sc['s'][0], video_id, player_url)
3094 sp = try_get(sc, lambda x: x['sp'][0]) or 'signature'
3095 fmt_url += '&' + sp + '=' + signature
3096
3097 query = parse_qs(fmt_url)
3098 throttled = False
3099 if query.get('n'):
3100 try:
3101 fmt_url = update_url_query(fmt_url, {
3102 'n': self._decrypt_nsig(query['n'][0], video_id, player_url)})
3103 except ExtractorError as e:
3104 self.report_warning(
3105 f'nsig extraction failed: You may experience throttling for some formats\n'
3106 f'n = {query["n"][0]} ; player = {player_url}\n{e}', only_once=True)
3107 throttled = True
3108
3109 if itag:
3110 itags[itag] = 'https'
3111 stream_ids.append(stream_id)
3112
3113 tbr = float_or_none(fmt.get('averageBitrate') or fmt.get('bitrate'), 1000)
3114 language_preference = (
3115 10 if audio_track.get('audioIsDefault') and 10
3116 else -10 if 'descriptive' in (audio_track.get('displayName') or '').lower() and -10
3117 else -1)
3118 # Some formats may have much smaller duration than others (possibly damaged during encoding)
3119 # Eg: 2-nOtRESiUc Ref: https://github.com/yt-dlp/yt-dlp/issues/2823
3120 # Make sure to avoid false positives with small duration differences.
3121 # Eg: __2ABJjxzNo, ySuUZEjARPY
3122 is_damaged = try_get(fmt, lambda x: float(x['approxDurationMs']) / duration < 500)
3123 if is_damaged:
3124 self.report_warning(f'{video_id}: Some formats are possibly damaged. They will be deprioritized', only_once=True)
3125 dct = {
3126 'asr': int_or_none(fmt.get('audioSampleRate')),
3127 'filesize': int_or_none(fmt.get('contentLength')),
3128 'format_id': itag,
3129 'format_note': join_nonempty(
3130 '%s%s' % (audio_track.get('displayName') or '',
3131 ' (default)' if language_preference > 0 else ''),
3132 fmt.get('qualityLabel') or quality.replace('audio_quality_', ''),
3133 throttled and 'THROTTLED', is_damaged and 'DAMAGED', delim=', '),
3134 'source_preference': -10 if throttled else -1,
3135 'fps': int_or_none(fmt.get('fps')) or None,
3136 'height': height,
3137 'quality': q(quality),
3138 'has_drm': bool(fmt.get('drmFamilies')),
3139 'tbr': tbr,
3140 'url': fmt_url,
3141 'width': int_or_none(fmt.get('width')),
3142 'language': join_nonempty(audio_track.get('id', '').split('.')[0],
3143 'desc' if language_preference < -1 else ''),
3144 'language_preference': language_preference,
3145 # Strictly de-prioritize damaged and 3gp formats
3146 'preference': -10 if is_damaged else -2 if itag == '17' else None,
3147 }
3148 mime_mobj = re.match(
3149 r'((?:[^/]+)/(?:[^;]+))(?:;\s*codecs="([^"]+)")?', fmt.get('mimeType') or '')
3150 if mime_mobj:
3151 dct['ext'] = mimetype2ext(mime_mobj.group(1))
3152 dct.update(parse_codecs(mime_mobj.group(2)))
3153 no_audio = dct.get('acodec') == 'none'
3154 no_video = dct.get('vcodec') == 'none'
3155 if no_audio:
3156 dct['vbr'] = tbr
3157 if no_video:
3158 dct['abr'] = tbr
3159 if no_audio or no_video:
3160 dct['downloader_options'] = {
3161 # Youtube throttles chunks >~10M
3162 'http_chunk_size': 10485760,
3163 }
3164 if dct.get('ext'):
3165 dct['container'] = dct['ext'] + '_dash'
3166 yield dct
3167
3168 live_from_start = is_live and self.get_param('live_from_start')
3169 skip_manifests = self._configuration_arg('skip')
3170 if not self.get_param('youtube_include_hls_manifest', True):
3171 skip_manifests.append('hls')
3172 get_dash = 'dash' not in skip_manifests and (
3173 not is_live or live_from_start or self._configuration_arg('include_live_dash'))
3174 get_hls = not live_from_start and 'hls' not in skip_manifests
3175
3176 def process_manifest_format(f, proto, itag):
3177 if itag in itags:
3178 if itags[itag] == proto or f'{itag}-{proto}' in itags:
3179 return False
3180 itag = f'{itag}-{proto}'
3181 if itag:
3182 f['format_id'] = itag
3183 itags[itag] = proto
3184
3185 f['quality'] = next((
3186 q(qdict[val])
3187 for val, qdict in ((f.get('format_id', '').split('-')[0], itag_qualities), (f.get('height'), res_qualities))
3188 if val in qdict), -1)
3189 return True
3190
3191 for sd in streaming_data:
3192 hls_manifest_url = get_hls and sd.get('hlsManifestUrl')
3193 if hls_manifest_url:
3194 for f in self._extract_m3u8_formats(hls_manifest_url, video_id, 'mp4', fatal=False):
3195 if process_manifest_format(f, 'hls', self._search_regex(
3196 r'/itag/(\d+)', f['url'], 'itag', default=None)):
3197 yield f
3198
3199 dash_manifest_url = get_dash and sd.get('dashManifestUrl')
3200 if dash_manifest_url:
3201 for f in self._extract_mpd_formats(dash_manifest_url, video_id, fatal=False):
3202 if process_manifest_format(f, 'dash', f['format_id']):
3203 f['filesize'] = int_or_none(self._search_regex(
3204 r'/clen/(\d+)', f.get('fragment_base_url') or f['url'], 'file size', default=None))
3205 if live_from_start:
3206 f['is_from_start'] = True
3207
3208 yield f
3209
3210 def _extract_storyboard(self, player_responses, duration):
3211 spec = get_first(
3212 player_responses, ('storyboards', 'playerStoryboardSpecRenderer', 'spec'), default='').split('|')[::-1]
3213 base_url = url_or_none(urljoin('https://i.ytimg.com/', spec.pop() or None))
3214 if not base_url:
3215 return
3216 L = len(spec) - 1
3217 for i, args in enumerate(spec):
3218 args = args.split('#')
3219 counts = list(map(int_or_none, args[:5]))
3220 if len(args) != 8 or not all(counts):
3221 self.report_warning(f'Malformed storyboard {i}: {"#".join(args)}{bug_reports_message()}')
3222 continue
3223 width, height, frame_count, cols, rows = counts
3224 N, sigh = args[6:]
3225
3226 url = base_url.replace('$L', str(L - i)).replace('$N', N) + f'&sigh={sigh}'
3227 fragment_count = frame_count / (cols * rows)
3228 fragment_duration = duration / fragment_count
3229 yield {
3230 'format_id': f'sb{i}',
3231 'format_note': 'storyboard',
3232 'ext': 'mhtml',
3233 'protocol': 'mhtml',
3234 'acodec': 'none',
3235 'vcodec': 'none',
3236 'url': url,
3237 'width': width,
3238 'height': height,
3239 'fragments': [{
3240 'url': url.replace('$M', str(j)),
3241 'duration': min(fragment_duration, duration - (j * fragment_duration)),
3242 } for j in range(math.ceil(fragment_count))],
3243 }
3244
3245 def _download_player_responses(self, url, smuggled_data, video_id, webpage_url):
3246 webpage = None
3247 if 'webpage' not in self._configuration_arg('player_skip'):
3248 webpage = self._download_webpage(
3249 webpage_url + '&bpctr=9999999999&has_verified=1', video_id, fatal=False)
3250
3251 master_ytcfg = self.extract_ytcfg(video_id, webpage) or self._get_default_ytcfg()
3252
3253 player_responses, player_url = self._extract_player_responses(
3254 self._get_requested_clients(url, smuggled_data),
3255 video_id, webpage, master_ytcfg)
3256
3257 return webpage, master_ytcfg, player_responses, player_url
3258
3259 def _list_formats(self, video_id, microformats, video_details, player_responses, player_url, duration=None):
3260 live_broadcast_details = traverse_obj(microformats, (..., 'liveBroadcastDetails'))
3261 is_live = get_first(video_details, 'isLive')
3262 if is_live is None:
3263 is_live = get_first(live_broadcast_details, 'isLiveNow')
3264
3265 streaming_data = traverse_obj(player_responses, (..., 'streamingData'), default=[])
3266 formats = list(self._extract_formats(streaming_data, video_id, player_url, is_live, duration))
3267
3268 return live_broadcast_details, is_live, streaming_data, formats
3269
3270 def _real_extract(self, url):
3271 url, smuggled_data = unsmuggle_url(url, {})
3272 video_id = self._match_id(url)
3273
3274 base_url = self.http_scheme() + '//www.youtube.com/'
3275 webpage_url = base_url + 'watch?v=' + video_id
3276
3277 webpage, master_ytcfg, player_responses, player_url = self._download_player_responses(url, smuggled_data, video_id, webpage_url)
3278
3279 playability_statuses = traverse_obj(
3280 player_responses, (..., 'playabilityStatus'), expected_type=dict, default=[])
3281
3282 trailer_video_id = get_first(
3283 playability_statuses,
3284 ('errorScreen', 'playerLegacyDesktopYpcTrailerRenderer', 'trailerVideoId'),
3285 expected_type=str)
3286 if trailer_video_id:
3287 return self.url_result(
3288 trailer_video_id, self.ie_key(), trailer_video_id)
3289
3290 search_meta = ((lambda x: self._html_search_meta(x, webpage, default=None))
3291 if webpage else (lambda x: None))
3292
3293 video_details = traverse_obj(
3294 player_responses, (..., 'videoDetails'), expected_type=dict, default=[])
3295 microformats = traverse_obj(
3296 player_responses, (..., 'microformat', 'playerMicroformatRenderer'),
3297 expected_type=dict, default=[])
3298 video_title = (
3299 get_first(video_details, 'title')
3300 or self._get_text(microformats, (..., 'title'))
3301 or search_meta(['og:title', 'twitter:title', 'title']))
3302 video_description = get_first(video_details, 'shortDescription')
3303
3304 multifeed_metadata_list = get_first(
3305 player_responses,
3306 ('multicamera', 'playerLegacyMulticameraRenderer', 'metadataList'),
3307 expected_type=str)
3308 if multifeed_metadata_list and not smuggled_data.get('force_singlefeed'):
3309 if self.get_param('noplaylist'):
3310 self.to_screen('Downloading just video %s because of --no-playlist' % video_id)
3311 else:
3312 entries = []
3313 feed_ids = []
3314 for feed in multifeed_metadata_list.split(','):
3315 # Unquote should take place before split on comma (,) since textual
3316 # fields may contain comma as well (see
3317 # https://github.com/ytdl-org/youtube-dl/issues/8536)
3318 feed_data = compat_parse_qs(
3319 compat_urllib_parse_unquote_plus(feed))
3320
3321 def feed_entry(name):
3322 return try_get(
3323 feed_data, lambda x: x[name][0], compat_str)
3324
3325 feed_id = feed_entry('id')
3326 if not feed_id:
3327 continue
3328 feed_title = feed_entry('title')
3329 title = video_title
3330 if feed_title:
3331 title += ' (%s)' % feed_title
3332 entries.append({
3333 '_type': 'url_transparent',
3334 'ie_key': 'Youtube',
3335 'url': smuggle_url(
3336 '%swatch?v=%s' % (base_url, feed_data['id'][0]),
3337 {'force_singlefeed': True}),
3338 'title': title,
3339 })
3340 feed_ids.append(feed_id)
3341 self.to_screen(
3342 'Downloading multifeed video (%s) - add --no-playlist to just download video %s'
3343 % (', '.join(feed_ids), video_id))
3344 return self.playlist_result(
3345 entries, video_id, video_title, video_description)
3346
3347 duration = int_or_none(
3348 get_first(video_details, 'lengthSeconds')
3349 or get_first(microformats, 'lengthSeconds')
3350 or parse_duration(search_meta('duration'))) or None
3351
3352 live_broadcast_details, is_live, streaming_data, formats = self._list_formats(
3353 video_id, microformats, video_details, player_responses, player_url, duration)
3354
3355 if not formats:
3356 if not self.get_param('allow_unplayable_formats') and traverse_obj(streaming_data, (..., 'licenseInfos')):
3357 self.report_drm(video_id)
3358 pemr = get_first(
3359 playability_statuses,
3360 ('errorScreen', 'playerErrorMessageRenderer'), expected_type=dict) or {}
3361 reason = self._get_text(pemr, 'reason') or get_first(playability_statuses, 'reason')
3362 subreason = clean_html(self._get_text(pemr, 'subreason') or '')
3363 if subreason:
3364 if subreason == 'The uploader has not made this video available in your country.':
3365 countries = get_first(microformats, 'availableCountries')
3366 if not countries:
3367 regions_allowed = search_meta('regionsAllowed')
3368 countries = regions_allowed.split(',') if regions_allowed else None
3369 self.raise_geo_restricted(subreason, countries, metadata_available=True)
3370 reason += f'. {subreason}'
3371 if reason:
3372 self.raise_no_formats(reason, expected=True)
3373
3374 keywords = get_first(video_details, 'keywords', expected_type=list) or []
3375 if not keywords and webpage:
3376 keywords = [
3377 unescapeHTML(m.group('content'))
3378 for m in re.finditer(self._meta_regex('og:video:tag'), webpage)]
3379 for keyword in keywords:
3380 if keyword.startswith('yt:stretch='):
3381 mobj = re.search(r'(\d+)\s*:\s*(\d+)', keyword)
3382 if mobj:
3383 # NB: float is intentional for forcing float division
3384 w, h = (float(v) for v in mobj.groups())
3385 if w > 0 and h > 0:
3386 ratio = w / h
3387 for f in formats:
3388 if f.get('vcodec') != 'none':
3389 f['stretched_ratio'] = ratio
3390 break
3391 thumbnails = self._extract_thumbnails((video_details, microformats), (..., ..., 'thumbnail'))
3392 thumbnail_url = search_meta(['og:image', 'twitter:image'])
3393 if thumbnail_url:
3394 thumbnails.append({
3395 'url': thumbnail_url,
3396 })
3397 original_thumbnails = thumbnails.copy()
3398
3399 # The best resolution thumbnails sometimes does not appear in the webpage
3400 # See: https://github.com/ytdl-org/youtube-dl/issues/29049, https://github.com/yt-dlp/yt-dlp/issues/340
3401 # List of possible thumbnails - Ref: <https://stackoverflow.com/a/20542029>
3402 thumbnail_names = [
3403 'maxresdefault', 'hq720', 'sddefault', 'sd1', 'sd2', 'sd3',
3404 'hqdefault', 'hq1', 'hq2', 'hq3', '0',
3405 'mqdefault', 'mq1', 'mq2', 'mq3',
3406 'default', '1', '2', '3'
3407 ]
3408 n_thumbnail_names = len(thumbnail_names)
3409 thumbnails.extend({
3410 'url': 'https://i.ytimg.com/vi{webp}/{video_id}/{name}{live}.{ext}'.format(
3411 video_id=video_id, name=name, ext=ext,
3412 webp='_webp' if ext == 'webp' else '', live='_live' if is_live else ''),
3413 } for name in thumbnail_names for ext in ('webp', 'jpg'))
3414 for thumb in thumbnails:
3415 i = next((i for i, t in enumerate(thumbnail_names) if f'/{video_id}/{t}' in thumb['url']), n_thumbnail_names)
3416 thumb['preference'] = (0 if '.webp' in thumb['url'] else -1) - (2 * i)
3417 self._remove_duplicate_formats(thumbnails)
3418 self._downloader._sort_thumbnails(original_thumbnails)
3419
3420 category = get_first(microformats, 'category') or search_meta('genre')
3421 channel_id = str_or_none(
3422 get_first(video_details, 'channelId')
3423 or get_first(microformats, 'externalChannelId')
3424 or search_meta('channelId'))
3425 owner_profile_url = get_first(microformats, 'ownerProfileUrl')
3426
3427 live_content = get_first(video_details, 'isLiveContent')
3428 is_upcoming = get_first(video_details, 'isUpcoming')
3429 if is_live is None:
3430 if is_upcoming or live_content is False:
3431 is_live = False
3432 if is_upcoming is None and (live_content or is_live):
3433 is_upcoming = False
3434 live_start_time = parse_iso8601(get_first(live_broadcast_details, 'startTimestamp'))
3435 live_end_time = parse_iso8601(get_first(live_broadcast_details, 'endTimestamp'))
3436 if not duration and live_end_time and live_start_time:
3437 duration = live_end_time - live_start_time
3438
3439 if is_live and self.get_param('live_from_start'):
3440 self._prepare_live_from_start_formats(formats, video_id, live_start_time, url, webpage_url, smuggled_data)
3441
3442 formats.extend(self._extract_storyboard(player_responses, duration))
3443
3444 # Source is given priority since formats that throttle are given lower source_preference
3445 # When throttling issue is fully fixed, remove this
3446 self._sort_formats(formats, ('quality', 'res', 'fps', 'hdr:12', 'source', 'codec:vp9.2', 'lang', 'proto'))
3447
3448 info = {
3449 'id': video_id,
3450 'title': video_title,
3451 'formats': formats,
3452 'thumbnails': thumbnails,
3453 # The best thumbnail that we are sure exists. Prevents unnecessary
3454 # URL checking if user don't care about getting the best possible thumbnail
3455 'thumbnail': traverse_obj(original_thumbnails, (-1, 'url')),
3456 'description': video_description,
3457 'uploader': get_first(video_details, 'author'),
3458 'uploader_id': self._search_regex(r'/(?:channel|user)/([^/?&#]+)', owner_profile_url, 'uploader id') if owner_profile_url else None,
3459 'uploader_url': owner_profile_url,
3460 'channel_id': channel_id,
3461 'channel_url': format_field(channel_id, template='https://www.youtube.com/channel/%s'),
3462 'duration': duration,
3463 'view_count': int_or_none(
3464 get_first((video_details, microformats), (..., 'viewCount'))
3465 or search_meta('interactionCount')),
3466 'average_rating': float_or_none(get_first(video_details, 'averageRating')),
3467 'age_limit': 18 if (
3468 get_first(microformats, 'isFamilySafe') is False
3469 or search_meta('isFamilyFriendly') == 'false'
3470 or search_meta('og:restrictions:age') == '18+') else 0,
3471 'webpage_url': webpage_url,
3472 'categories': [category] if category else None,
3473 'tags': keywords,
3474 'playable_in_embed': get_first(playability_statuses, 'playableInEmbed'),
3475 'is_live': is_live,
3476 'was_live': (False if is_live or is_upcoming or live_content is False
3477 else None if is_live is None or is_upcoming is None
3478 else live_content),
3479 'live_status': 'is_upcoming' if is_upcoming else None, # rest will be set by YoutubeDL
3480 'release_timestamp': live_start_time,
3481 }
3482
3483 pctr = traverse_obj(player_responses, (..., 'captions', 'playerCaptionsTracklistRenderer'), expected_type=dict)
3484 if pctr:
3485 def get_lang_code(track):
3486 return (remove_start(track.get('vssId') or '', '.').replace('.', '-')
3487 or track.get('languageCode'))
3488
3489 # Converted into dicts to remove duplicates
3490 captions = {
3491 get_lang_code(sub): sub
3492 for sub in traverse_obj(pctr, (..., 'captionTracks', ...), default=[])}
3493 translation_languages = {
3494 lang.get('languageCode'): self._get_text(lang.get('languageName'), max_runs=1)
3495 for lang in traverse_obj(pctr, (..., 'translationLanguages', ...), default=[])}
3496
3497 def process_language(container, base_url, lang_code, sub_name, query):
3498 lang_subs = container.setdefault(lang_code, [])
3499 for fmt in self._SUBTITLE_FORMATS:
3500 query.update({
3501 'fmt': fmt,
3502 })
3503 lang_subs.append({
3504 'ext': fmt,
3505 'url': urljoin('https://www.youtube.com', update_url_query(base_url, query)),
3506 'name': sub_name,
3507 })
3508
3509 subtitles, automatic_captions = {}, {}
3510 for lang_code, caption_track in captions.items():
3511 base_url = caption_track.get('baseUrl')
3512 orig_lang = parse_qs(base_url).get('lang', [None])[-1]
3513 if not base_url:
3514 continue
3515 lang_name = self._get_text(caption_track, 'name', max_runs=1)
3516 if caption_track.get('kind') != 'asr':
3517 if not lang_code:
3518 continue
3519 process_language(
3520 subtitles, base_url, lang_code, lang_name, {})
3521 if not caption_track.get('isTranslatable'):
3522 continue
3523 for trans_code, trans_name in translation_languages.items():
3524 if not trans_code:
3525 continue
3526 orig_trans_code = trans_code
3527 if caption_track.get('kind') != 'asr':
3528 if 'translated_subs' in self._configuration_arg('skip'):
3529 continue
3530 trans_code += f'-{lang_code}'
3531 trans_name += format_field(lang_name, template=' from %s')
3532 # Add an "-orig" label to the original language so that it can be distinguished.
3533 # The subs are returned without "-orig" as well for compatibility
3534 if lang_code == f'a-{orig_trans_code}':
3535 process_language(
3536 automatic_captions, base_url, f'{trans_code}-orig', f'{trans_name} (Original)', {})
3537 # Setting tlang=lang returns damaged subtitles.
3538 process_language(automatic_captions, base_url, trans_code, trans_name,
3539 {} if orig_lang == orig_trans_code else {'tlang': trans_code})
3540 info['automatic_captions'] = automatic_captions
3541 info['subtitles'] = subtitles
3542
3543 parsed_url = compat_urllib_parse_urlparse(url)
3544 for component in [parsed_url.fragment, parsed_url.query]:
3545 query = compat_parse_qs(component)
3546 for k, v in query.items():
3547 for d_k, s_ks in [('start', ('start', 't')), ('end', ('end',))]:
3548 d_k += '_time'
3549 if d_k not in info and k in s_ks:
3550 info[d_k] = parse_duration(query[k][0])
3551
3552 # Youtube Music Auto-generated description
3553 if video_description:
3554 mobj = re.search(r'(?s)(?P<track>[^·\n]+)·(?P<artist>[^\n]+)\n+(?P<album>[^\n]+)(?:.+?℗\s*(?P<release_year>\d{4})(?!\d))?(?:.+?Released on\s*:\s*(?P<release_date>\d{4}-\d{2}-\d{2}))?(.+?\nArtist\s*:\s*(?P<clean_artist>[^\n]+))?.+\nAuto-generated by YouTube\.\s*$', video_description)
3555 if mobj:
3556 release_year = mobj.group('release_year')
3557 release_date = mobj.group('release_date')
3558 if release_date:
3559 release_date = release_date.replace('-', '')
3560 if not release_year:
3561 release_year = release_date[:4]
3562 info.update({
3563 'album': mobj.group('album'.strip()),
3564 'artist': mobj.group('clean_artist') or ', '.join(a.strip() for a in mobj.group('artist').split('·')),
3565 'track': mobj.group('track').strip(),
3566 'release_date': release_date,
3567 'release_year': int_or_none(release_year),
3568 })
3569
3570 initial_data = None
3571 if webpage:
3572 initial_data = self._extract_yt_initial_variable(
3573 webpage, self._YT_INITIAL_DATA_RE, video_id,
3574 'yt initial data')
3575 if not initial_data:
3576 query = {'videoId': video_id}
3577 query.update(self._get_checkok_params())
3578 initial_data = self._extract_response(
3579 item_id=video_id, ep='next', fatal=False,
3580 ytcfg=master_ytcfg, query=query,
3581 headers=self.generate_api_headers(ytcfg=master_ytcfg),
3582 note='Downloading initial data API JSON')
3583
3584 try:
3585 # This will error if there is no livechat
3586 initial_data['contents']['twoColumnWatchNextResults']['conversationBar']['liveChatRenderer']['continuations'][0]['reloadContinuationData']['continuation']
3587 info.setdefault('subtitles', {})['live_chat'] = [{
3588 'url': 'https://www.youtube.com/watch?v=%s' % video_id, # url is needed to set cookies
3589 'video_id': video_id,
3590 'ext': 'json',
3591 'protocol': 'youtube_live_chat' if is_live or is_upcoming else 'youtube_live_chat_replay',
3592 }]
3593 except (KeyError, IndexError, TypeError):
3594 pass
3595
3596 if initial_data:
3597 info['chapters'] = (
3598 self._extract_chapters_from_json(initial_data, duration)
3599 or self._extract_chapters_from_engagement_panel(initial_data, duration)
3600 or None)
3601
3602 contents = traverse_obj(
3603 initial_data, ('contents', 'twoColumnWatchNextResults', 'results', 'results', 'contents'),
3604 expected_type=list, default=[])
3605
3606 vpir = get_first(contents, 'videoPrimaryInfoRenderer')
3607 if vpir:
3608 stl = vpir.get('superTitleLink')
3609 if stl:
3610 stl = self._get_text(stl)
3611 if try_get(
3612 vpir,
3613 lambda x: x['superTitleIcon']['iconType']) == 'LOCATION_PIN':
3614 info['location'] = stl
3615 else:
3616 mobj = re.search(r'(.+?)\s*S(\d+)\s*•\s*E(\d+)', stl)
3617 if mobj:
3618 info.update({
3619 'series': mobj.group(1),
3620 'season_number': int(mobj.group(2)),
3621 'episode_number': int(mobj.group(3)),
3622 })
3623 for tlb in (try_get(
3624 vpir,
3625 lambda x: x['videoActions']['menuRenderer']['topLevelButtons'],
3626 list) or []):
3627 tbr = tlb.get('toggleButtonRenderer') or {}
3628 for getter, regex in [(
3629 lambda x: x['defaultText']['accessibility']['accessibilityData'],
3630 r'(?P<count>[\d,]+)\s*(?P<type>(?:dis)?like)'), ([
3631 lambda x: x['accessibility'],
3632 lambda x: x['accessibilityData']['accessibilityData'],
3633 ], r'(?P<type>(?:dis)?like) this video along with (?P<count>[\d,]+) other people')]:
3634 label = (try_get(tbr, getter, dict) or {}).get('label')
3635 if label:
3636 mobj = re.match(regex, label)
3637 if mobj:
3638 info[mobj.group('type') + '_count'] = str_to_int(mobj.group('count'))
3639 break
3640 sbr_tooltip = try_get(
3641 vpir, lambda x: x['sentimentBar']['sentimentBarRenderer']['tooltip'])
3642 if sbr_tooltip:
3643 like_count, dislike_count = sbr_tooltip.split(' / ')
3644 info.update({
3645 'like_count': str_to_int(like_count),
3646 'dislike_count': str_to_int(dislike_count),
3647 })
3648 vsir = get_first(contents, 'videoSecondaryInfoRenderer')
3649 if vsir:
3650 vor = traverse_obj(vsir, ('owner', 'videoOwnerRenderer'))
3651 info.update({
3652 'channel': self._get_text(vor, 'title'),
3653 'channel_follower_count': self._get_count(vor, 'subscriberCountText')})
3654
3655 rows = try_get(
3656 vsir,
3657 lambda x: x['metadataRowContainer']['metadataRowContainerRenderer']['rows'],
3658 list) or []
3659 multiple_songs = False
3660 for row in rows:
3661 if try_get(row, lambda x: x['metadataRowRenderer']['hasDividerLine']) is True:
3662 multiple_songs = True
3663 break
3664 for row in rows:
3665 mrr = row.get('metadataRowRenderer') or {}
3666 mrr_title = mrr.get('title')
3667 if not mrr_title:
3668 continue
3669 mrr_title = self._get_text(mrr, 'title')
3670 mrr_contents_text = self._get_text(mrr, ('contents', 0))
3671 if mrr_title == 'License':
3672 info['license'] = mrr_contents_text
3673 elif not multiple_songs:
3674 if mrr_title == 'Album':
3675 info['album'] = mrr_contents_text
3676 elif mrr_title == 'Artist':
3677 info['artist'] = mrr_contents_text
3678 elif mrr_title == 'Song':
3679 info['track'] = mrr_contents_text
3680
3681 fallbacks = {
3682 'channel': 'uploader',
3683 'channel_id': 'uploader_id',
3684 'channel_url': 'uploader_url',
3685 }
3686
3687 # The upload date for scheduled, live and past live streams / premieres in microformats
3688 # may be different from the stream date. Although not in UTC, we will prefer it in this case.
3689 # See: https://github.com/yt-dlp/yt-dlp/pull/2223#issuecomment-1008485139
3690 upload_date = (
3691 unified_strdate(get_first(microformats, 'uploadDate'))
3692 or unified_strdate(search_meta('uploadDate')))
3693 if not upload_date or (not info.get('is_live') and not info.get('was_live') and info.get('live_status') != 'is_upcoming'):
3694 upload_date = strftime_or_none(self._extract_time_text(vpir, 'dateText')[0], '%Y%m%d')
3695 info['upload_date'] = upload_date
3696
3697 for to, frm in fallbacks.items():
3698 if not info.get(to):
3699 info[to] = info.get(frm)
3700
3701 for s_k, d_k in [('artist', 'creator'), ('track', 'alt_title')]:
3702 v = info.get(s_k)
3703 if v:
3704 info[d_k] = v
3705
3706 is_private = get_first(video_details, 'isPrivate', expected_type=bool)
3707 is_unlisted = get_first(microformats, 'isUnlisted', expected_type=bool)
3708 is_membersonly = None
3709 is_premium = None
3710 if initial_data and is_private is not None:
3711 is_membersonly = False
3712 is_premium = False
3713 contents = try_get(initial_data, lambda x: x['contents']['twoColumnWatchNextResults']['results']['results']['contents'], list) or []
3714 badge_labels = set()
3715 for content in contents:
3716 if not isinstance(content, dict):
3717 continue
3718 badge_labels.update(self._extract_badges(content.get('videoPrimaryInfoRenderer')))
3719 for badge_label in badge_labels:
3720 if badge_label.lower() == 'members only':
3721 is_membersonly = True
3722 elif badge_label.lower() == 'premium':
3723 is_premium = True
3724 elif badge_label.lower() == 'unlisted':
3725 is_unlisted = True
3726
3727 info['availability'] = self._availability(
3728 is_private=is_private,
3729 needs_premium=is_premium,
3730 needs_subscription=is_membersonly,
3731 needs_auth=info['age_limit'] >= 18,
3732 is_unlisted=None if is_private is None else is_unlisted)
3733
3734 info['__post_extractor'] = self.extract_comments(master_ytcfg, video_id, contents, webpage)
3735
3736 self.mark_watched(video_id, player_responses)
3737
3738 return info
3739
3740
3741class YoutubeTabBaseInfoExtractor(YoutubeBaseInfoExtractor):
3742
3743 @staticmethod
3744 def passthrough_smuggled_data(func):
3745 def _smuggle(entries, smuggled_data):
3746 for entry in entries:
3747 # TODO: Convert URL to music.youtube instead.
3748 # Do we need to passthrough any other smuggled_data?
3749 entry['url'] = smuggle_url(entry['url'], smuggled_data)
3750 yield entry
3751
3752 @functools.wraps(func)
3753 def wrapper(self, url):
3754 url, smuggled_data = unsmuggle_url(url, {})
3755 if self.is_music_url(url):
3756 smuggled_data['is_music_url'] = True
3757 info_dict = func(self, url, smuggled_data)
3758 if smuggled_data and info_dict.get('entries'):
3759 info_dict['entries'] = _smuggle(info_dict['entries'], smuggled_data)
3760 return info_dict
3761 return wrapper
3762
3763 def _extract_channel_id(self, webpage):
3764 channel_id = self._html_search_meta(
3765 'channelId', webpage, 'channel id', default=None)
3766 if channel_id:
3767 return channel_id
3768 channel_url = self._html_search_meta(
3769 ('og:url', 'al:ios:url', 'al:android:url', 'al:web:url',
3770 'twitter:url', 'twitter:app:url:iphone', 'twitter:app:url:ipad',
3771 'twitter:app:url:googleplay'), webpage, 'channel url')
3772 return self._search_regex(
3773 r'https?://(?:www\.)?youtube\.com/channel/([^/?#&])+',
3774 channel_url, 'channel id')
3775
3776 @staticmethod
3777 def _extract_basic_item_renderer(item):
3778 # Modified from _extract_grid_item_renderer
3779 known_basic_renderers = (
3780 'playlistRenderer', 'videoRenderer', 'channelRenderer', 'showRenderer'
3781 )
3782 for key, renderer in item.items():
3783 if not isinstance(renderer, dict):
3784 continue
3785 elif key in known_basic_renderers:
3786 return renderer
3787 elif key.startswith('grid') and key.endswith('Renderer'):
3788 return renderer
3789
3790 def _grid_entries(self, grid_renderer):
3791 for item in grid_renderer['items']:
3792 if not isinstance(item, dict):
3793 continue
3794 renderer = self._extract_basic_item_renderer(item)
3795 if not isinstance(renderer, dict):
3796 continue
3797 title = self._get_text(renderer, 'title')
3798
3799 # playlist
3800 playlist_id = renderer.get('playlistId')
3801 if playlist_id:
3802 yield self.url_result(
3803 'https://www.youtube.com/playlist?list=%s' % playlist_id,
3804 ie=YoutubeTabIE.ie_key(), video_id=playlist_id,
3805 video_title=title)
3806 continue
3807 # video
3808 video_id = renderer.get('videoId')
3809 if video_id:
3810 yield self._extract_video(renderer)
3811 continue
3812 # channel
3813 channel_id = renderer.get('channelId')
3814 if channel_id:
3815 yield self.url_result(
3816 'https://www.youtube.com/channel/%s' % channel_id,
3817 ie=YoutubeTabIE.ie_key(), video_title=title)
3818 continue
3819 # generic endpoint URL support
3820 ep_url = urljoin('https://www.youtube.com/', try_get(
3821 renderer, lambda x: x['navigationEndpoint']['commandMetadata']['webCommandMetadata']['url'],
3822 compat_str))
3823 if ep_url:
3824 for ie in (YoutubeTabIE, YoutubePlaylistIE, YoutubeIE):
3825 if ie.suitable(ep_url):
3826 yield self.url_result(
3827 ep_url, ie=ie.ie_key(), video_id=ie._match_id(ep_url), video_title=title)
3828 break
3829
3830 def _music_reponsive_list_entry(self, renderer):
3831 video_id = traverse_obj(renderer, ('playlistItemData', 'videoId'))
3832 if video_id:
3833 return self.url_result(f'https://music.youtube.com/watch?v={video_id}',
3834 ie=YoutubeIE.ie_key(), video_id=video_id)
3835 playlist_id = traverse_obj(renderer, ('navigationEndpoint', 'watchEndpoint', 'playlistId'))
3836 if playlist_id:
3837 video_id = traverse_obj(renderer, ('navigationEndpoint', 'watchEndpoint', 'videoId'))
3838 if video_id:
3839 return self.url_result(f'https://music.youtube.com/watch?v={video_id}&list={playlist_id}',
3840 ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
3841 return self.url_result(f'https://music.youtube.com/playlist?list={playlist_id}',
3842 ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
3843 browse_id = traverse_obj(renderer, ('navigationEndpoint', 'browseEndpoint', 'browseId'))
3844 if browse_id:
3845 return self.url_result(f'https://music.youtube.com/browse/{browse_id}',
3846 ie=YoutubeTabIE.ie_key(), video_id=browse_id)
3847
3848 def _shelf_entries_from_content(self, shelf_renderer):
3849 content = shelf_renderer.get('content')
3850 if not isinstance(content, dict):
3851 return
3852 renderer = content.get('gridRenderer') or content.get('expandedShelfContentsRenderer')
3853 if renderer:
3854 # TODO: add support for nested playlists so each shelf is processed
3855 # as separate playlist
3856 # TODO: this includes only first N items
3857 for entry in self._grid_entries(renderer):
3858 yield entry
3859 renderer = content.get('horizontalListRenderer')
3860 if renderer:
3861 # TODO
3862 pass
3863
3864 def _shelf_entries(self, shelf_renderer, skip_channels=False):
3865 ep = try_get(
3866 shelf_renderer, lambda x: x['endpoint']['commandMetadata']['webCommandMetadata']['url'],
3867 compat_str)
3868 shelf_url = urljoin('https://www.youtube.com', ep)
3869 if shelf_url:
3870 # Skipping links to another channels, note that checking for
3871 # endpoint.commandMetadata.webCommandMetadata.webPageTypwebPageType == WEB_PAGE_TYPE_CHANNEL
3872 # will not work
3873 if skip_channels and '/channels?' in shelf_url:
3874 return
3875 title = self._get_text(shelf_renderer, 'title')
3876 yield self.url_result(shelf_url, video_title=title)
3877 # Shelf may not contain shelf URL, fallback to extraction from content
3878 for entry in self._shelf_entries_from_content(shelf_renderer):
3879 yield entry
3880
3881 def _playlist_entries(self, video_list_renderer):
3882 for content in video_list_renderer['contents']:
3883 if not isinstance(content, dict):
3884 continue
3885 renderer = content.get('playlistVideoRenderer') or content.get('playlistPanelVideoRenderer')
3886 if not isinstance(renderer, dict):
3887 continue
3888 video_id = renderer.get('videoId')
3889 if not video_id:
3890 continue
3891 yield self._extract_video(renderer)
3892
3893 def _rich_entries(self, rich_grid_renderer):
3894 renderer = try_get(
3895 rich_grid_renderer, lambda x: x['content']['videoRenderer'], dict) or {}
3896 video_id = renderer.get('videoId')
3897 if not video_id:
3898 return
3899 yield self._extract_video(renderer)
3900
3901 def _video_entry(self, video_renderer):
3902 video_id = video_renderer.get('videoId')
3903 if video_id:
3904 return self._extract_video(video_renderer)
3905
3906 def _hashtag_tile_entry(self, hashtag_tile_renderer):
3907 url = urljoin('https://youtube.com', traverse_obj(
3908 hashtag_tile_renderer, ('onTapCommand', 'commandMetadata', 'webCommandMetadata', 'url')))
3909 if url:
3910 return self.url_result(
3911 url, ie=YoutubeTabIE.ie_key(), title=self._get_text(hashtag_tile_renderer, 'hashtag'))
3912
3913 def _post_thread_entries(self, post_thread_renderer):
3914 post_renderer = try_get(
3915 post_thread_renderer, lambda x: x['post']['backstagePostRenderer'], dict)
3916 if not post_renderer:
3917 return
3918 # video attachment
3919 video_renderer = try_get(
3920 post_renderer, lambda x: x['backstageAttachment']['videoRenderer'], dict) or {}
3921 video_id = video_renderer.get('videoId')
3922 if video_id:
3923 entry = self._extract_video(video_renderer)
3924 if entry:
3925 yield entry
3926 # playlist attachment
3927 playlist_id = try_get(
3928 post_renderer, lambda x: x['backstageAttachment']['playlistRenderer']['playlistId'], compat_str)
3929 if playlist_id:
3930 yield self.url_result(
3931 'https://www.youtube.com/playlist?list=%s' % playlist_id,
3932 ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
3933 # inline video links
3934 runs = try_get(post_renderer, lambda x: x['contentText']['runs'], list) or []
3935 for run in runs:
3936 if not isinstance(run, dict):
3937 continue
3938 ep_url = try_get(
3939 run, lambda x: x['navigationEndpoint']['urlEndpoint']['url'], compat_str)
3940 if not ep_url:
3941 continue
3942 if not YoutubeIE.suitable(ep_url):
3943 continue
3944 ep_video_id = YoutubeIE._match_id(ep_url)
3945 if video_id == ep_video_id:
3946 continue
3947 yield self.url_result(ep_url, ie=YoutubeIE.ie_key(), video_id=ep_video_id)
3948
3949 def _post_thread_continuation_entries(self, post_thread_continuation):
3950 contents = post_thread_continuation.get('contents')
3951 if not isinstance(contents, list):
3952 return
3953 for content in contents:
3954 renderer = content.get('backstagePostThreadRenderer')
3955 if not isinstance(renderer, dict):
3956 continue
3957 for entry in self._post_thread_entries(renderer):
3958 yield entry
3959
3960 r''' # unused
3961 def _rich_grid_entries(self, contents):
3962 for content in contents:
3963 video_renderer = try_get(content, lambda x: x['richItemRenderer']['content']['videoRenderer'], dict)
3964 if video_renderer:
3965 entry = self._video_entry(video_renderer)
3966 if entry:
3967 yield entry
3968 '''
3969
3970 def _extract_entries(self, parent_renderer, continuation_list):
3971 # continuation_list is modified in-place with continuation_list = [continuation_token]
3972 continuation_list[:] = [None]
3973 contents = try_get(parent_renderer, lambda x: x['contents'], list) or []
3974 for content in contents:
3975 if not isinstance(content, dict):
3976 continue
3977 is_renderer = traverse_obj(
3978 content, 'itemSectionRenderer', 'musicShelfRenderer', 'musicShelfContinuation',
3979 expected_type=dict)
3980 if not is_renderer:
3981 renderer = content.get('richItemRenderer')
3982 if renderer:
3983 for entry in self._rich_entries(renderer):
3984 yield entry
3985 continuation_list[0] = self._extract_continuation(parent_renderer)
3986 continue
3987 isr_contents = try_get(is_renderer, lambda x: x['contents'], list) or []
3988 for isr_content in isr_contents:
3989 if not isinstance(isr_content, dict):
3990 continue
3991
3992 known_renderers = {
3993 'playlistVideoListRenderer': self._playlist_entries,
3994 'gridRenderer': self._grid_entries,
3995 'shelfRenderer': lambda x: self._shelf_entries(x),
3996 'musicResponsiveListItemRenderer': lambda x: [self._music_reponsive_list_entry(x)],
3997 'backstagePostThreadRenderer': self._post_thread_entries,
3998 'videoRenderer': lambda x: [self._video_entry(x)],
3999 'playlistRenderer': lambda x: self._grid_entries({'items': [{'playlistRenderer': x}]}),
4000 'channelRenderer': lambda x: self._grid_entries({'items': [{'channelRenderer': x}]}),
4001 'hashtagTileRenderer': lambda x: [self._hashtag_tile_entry(x)]
4002 }
4003 for key, renderer in isr_content.items():
4004 if key not in known_renderers:
4005 continue
4006 for entry in known_renderers[key](renderer):
4007 if entry:
4008 yield entry
4009 continuation_list[0] = self._extract_continuation(renderer)
4010 break
4011
4012 if not continuation_list[0]:
4013 continuation_list[0] = self._extract_continuation(is_renderer)
4014
4015 if not continuation_list[0]:
4016 continuation_list[0] = self._extract_continuation(parent_renderer)
4017
4018 def _entries(self, tab, item_id, ytcfg, account_syncid, visitor_data):
4019 continuation_list = [None]
4020 extract_entries = lambda x: self._extract_entries(x, continuation_list)
4021 tab_content = try_get(tab, lambda x: x['content'], dict)
4022 if not tab_content:
4023 return
4024 parent_renderer = (
4025 try_get(tab_content, lambda x: x['sectionListRenderer'], dict)
4026 or try_get(tab_content, lambda x: x['richGridRenderer'], dict) or {})
4027 for entry in extract_entries(parent_renderer):
4028 yield entry
4029 continuation = continuation_list[0]
4030
4031 for page_num in itertools.count(1):
4032 if not continuation:
4033 break
4034 headers = self.generate_api_headers(
4035 ytcfg=ytcfg, account_syncid=account_syncid, visitor_data=visitor_data)
4036 response = self._extract_response(
4037 item_id='%s page %s' % (item_id, page_num),
4038 query=continuation, headers=headers, ytcfg=ytcfg,
4039 check_get_keys=('continuationContents', 'onResponseReceivedActions', 'onResponseReceivedEndpoints'))
4040
4041 if not response:
4042 break
4043 # Extracting updated visitor data is required to prevent an infinite extraction loop in some cases
4044 # See: https://github.com/ytdl-org/youtube-dl/issues/28702
4045 visitor_data = self._extract_visitor_data(response) or visitor_data
4046
4047 known_continuation_renderers = {
4048 'playlistVideoListContinuation': self._playlist_entries,
4049 'gridContinuation': self._grid_entries,
4050 'itemSectionContinuation': self._post_thread_continuation_entries,
4051 'sectionListContinuation': extract_entries, # for feeds
4052 }
4053 continuation_contents = try_get(
4054 response, lambda x: x['continuationContents'], dict) or {}
4055 continuation_renderer = None
4056 for key, value in continuation_contents.items():
4057 if key not in known_continuation_renderers:
4058 continue
4059 continuation_renderer = value
4060 continuation_list = [None]
4061 for entry in known_continuation_renderers[key](continuation_renderer):
4062 yield entry
4063 continuation = continuation_list[0] or self._extract_continuation(continuation_renderer)
4064 break
4065 if continuation_renderer:
4066 continue
4067
4068 known_renderers = {
4069 'videoRenderer': (self._grid_entries, 'items'), # for membership tab
4070 'gridPlaylistRenderer': (self._grid_entries, 'items'),
4071 'gridVideoRenderer': (self._grid_entries, 'items'),
4072 'gridChannelRenderer': (self._grid_entries, 'items'),
4073 'playlistVideoRenderer': (self._playlist_entries, 'contents'),
4074 'itemSectionRenderer': (extract_entries, 'contents'), # for feeds
4075 'richItemRenderer': (extract_entries, 'contents'), # for hashtag
4076 'backstagePostThreadRenderer': (self._post_thread_continuation_entries, 'contents')
4077 }
4078 on_response_received = dict_get(response, ('onResponseReceivedActions', 'onResponseReceivedEndpoints'))
4079 continuation_items = try_get(
4080 on_response_received, lambda x: x[0]['appendContinuationItemsAction']['continuationItems'], list)
4081 continuation_item = try_get(continuation_items, lambda x: x[0], dict) or {}
4082 video_items_renderer = None
4083 for key, value in continuation_item.items():
4084 if key not in known_renderers:
4085 continue
4086 video_items_renderer = {known_renderers[key][1]: continuation_items}
4087 continuation_list = [None]
4088 for entry in known_renderers[key][0](video_items_renderer):
4089 yield entry
4090 continuation = continuation_list[0] or self._extract_continuation(video_items_renderer)
4091 break
4092 if video_items_renderer:
4093 continue
4094 break
4095
4096 @staticmethod
4097 def _extract_selected_tab(tabs, fatal=True):
4098 for tab in tabs:
4099 renderer = dict_get(tab, ('tabRenderer', 'expandableTabRenderer')) or {}
4100 if renderer.get('selected') is True:
4101 return renderer
4102 else:
4103 if fatal:
4104 raise ExtractorError('Unable to find selected tab')
4105
4106 @classmethod
4107 def _extract_uploader(cls, data):
4108 uploader = {}
4109 renderer = cls._extract_sidebar_info_renderer(data, 'playlistSidebarSecondaryInfoRenderer') or {}
4110 owner = try_get(
4111 renderer, lambda x: x['videoOwner']['videoOwnerRenderer']['title']['runs'][0], dict)
4112 if owner:
4113 uploader['uploader'] = owner.get('text')
4114 uploader['uploader_id'] = try_get(
4115 owner, lambda x: x['navigationEndpoint']['browseEndpoint']['browseId'], compat_str)
4116 uploader['uploader_url'] = urljoin(
4117 'https://www.youtube.com/',
4118 try_get(owner, lambda x: x['navigationEndpoint']['browseEndpoint']['canonicalBaseUrl'], compat_str))
4119 return {k: v for k, v in uploader.items() if v is not None}
4120
4121 def _extract_from_tabs(self, item_id, ytcfg, data, tabs):
4122 playlist_id = title = description = channel_url = channel_name = channel_id = None
4123 tags = []
4124
4125 selected_tab = self._extract_selected_tab(tabs)
4126 primary_sidebar_renderer = self._extract_sidebar_info_renderer(data, 'playlistSidebarPrimaryInfoRenderer')
4127 renderer = try_get(
4128 data, lambda x: x['metadata']['channelMetadataRenderer'], dict)
4129 if renderer:
4130 channel_name = renderer.get('title')
4131 channel_url = renderer.get('channelUrl')
4132 channel_id = renderer.get('externalId')
4133 else:
4134 renderer = try_get(
4135 data, lambda x: x['metadata']['playlistMetadataRenderer'], dict)
4136
4137 if renderer:
4138 title = renderer.get('title')
4139 description = renderer.get('description', '')
4140 playlist_id = channel_id
4141 tags = renderer.get('keywords', '').split()
4142
4143 # We can get the uncropped banner/avatar by replacing the crop params with '=s0'
4144 # See: https://github.com/yt-dlp/yt-dlp/issues/2237#issuecomment-1013694714
4145 def _get_uncropped(url):
4146 return url_or_none((url or '').split('=')[0] + '=s0')
4147
4148 avatar_thumbnails = self._extract_thumbnails(renderer, 'avatar')
4149 if avatar_thumbnails:
4150 uncropped_avatar = _get_uncropped(avatar_thumbnails[0]['url'])
4151 if uncropped_avatar:
4152 avatar_thumbnails.append({
4153 'url': uncropped_avatar,
4154 'id': 'avatar_uncropped',
4155 'preference': 1
4156 })
4157
4158 channel_banners = self._extract_thumbnails(
4159 data, ('header', ..., ['banner', 'mobileBanner', 'tvBanner']))
4160 for banner in channel_banners:
4161 banner['preference'] = -10
4162
4163 if channel_banners:
4164 uncropped_banner = _get_uncropped(channel_banners[0]['url'])
4165 if uncropped_banner:
4166 channel_banners.append({
4167 'url': uncropped_banner,
4168 'id': 'banner_uncropped',
4169 'preference': -5
4170 })
4171
4172 primary_thumbnails = self._extract_thumbnails(
4173 primary_sidebar_renderer, ('thumbnailRenderer', 'playlistVideoThumbnailRenderer', 'thumbnail'))
4174
4175 if playlist_id is None:
4176 playlist_id = item_id
4177
4178 playlist_stats = traverse_obj(primary_sidebar_renderer, 'stats')
4179 last_updated_unix, _ = self._extract_time_text(playlist_stats, 2)
4180 if title is None:
4181 title = self._get_text(data, ('header', 'hashtagHeaderRenderer', 'hashtag')) or playlist_id
4182 title += format_field(selected_tab, 'title', ' - %s')
4183 title += format_field(selected_tab, 'expandedText', ' - %s')
4184
4185 metadata = {
4186 'playlist_id': playlist_id,
4187 'playlist_title': title,
4188 'playlist_description': description,
4189 'uploader': channel_name,
4190 'uploader_id': channel_id,
4191 'uploader_url': channel_url,
4192 'thumbnails': primary_thumbnails + avatar_thumbnails + channel_banners,
4193 'tags': tags,
4194 'view_count': self._get_count(playlist_stats, 1),
4195 'availability': self._extract_availability(data),
4196 'modified_date': strftime_or_none(last_updated_unix, '%Y%m%d'),
4197 'playlist_count': self._get_count(playlist_stats, 0),
4198 'channel_follower_count': self._get_count(data, ('header', ..., 'subscriberCountText')),
4199 }
4200 if not channel_id:
4201 metadata.update(self._extract_uploader(data))
4202 metadata.update({
4203 'channel': metadata['uploader'],
4204 'channel_id': metadata['uploader_id'],
4205 'channel_url': metadata['uploader_url']})
4206 return self.playlist_result(
4207 self._entries(
4208 selected_tab, playlist_id, ytcfg,
4209 self._extract_account_syncid(ytcfg, data),
4210 self._extract_visitor_data(data, ytcfg)),
4211 **metadata)
4212
4213 def _extract_mix_playlist(self, playlist, playlist_id, data, ytcfg):
4214 first_id = last_id = response = None
4215 for page_num in itertools.count(1):
4216 videos = list(self._playlist_entries(playlist))
4217 if not videos:
4218 return
4219 start = next((i for i, v in enumerate(videos) if v['id'] == last_id), -1) + 1
4220 if start >= len(videos):
4221 return
4222 for video in videos[start:]:
4223 if video['id'] == first_id:
4224 self.to_screen('First video %s found again; Assuming end of Mix' % first_id)
4225 return
4226 yield video
4227 first_id = first_id or videos[0]['id']
4228 last_id = videos[-1]['id']
4229 watch_endpoint = try_get(
4230 playlist, lambda x: x['contents'][-1]['playlistPanelVideoRenderer']['navigationEndpoint']['watchEndpoint'])
4231 headers = self.generate_api_headers(
4232 ytcfg=ytcfg, account_syncid=self._extract_account_syncid(ytcfg, data),
4233 visitor_data=self._extract_visitor_data(response, data, ytcfg))
4234 query = {
4235 'playlistId': playlist_id,
4236 'videoId': watch_endpoint.get('videoId') or last_id,
4237 'index': watch_endpoint.get('index') or len(videos),
4238 'params': watch_endpoint.get('params') or 'OAE%3D'
4239 }
4240 response = self._extract_response(
4241 item_id='%s page %d' % (playlist_id, page_num),
4242 query=query, ep='next', headers=headers, ytcfg=ytcfg,
4243 check_get_keys='contents'
4244 )
4245 playlist = try_get(
4246 response, lambda x: x['contents']['twoColumnWatchNextResults']['playlist']['playlist'], dict)
4247
4248 def _extract_from_playlist(self, item_id, url, data, playlist, ytcfg):
4249 title = playlist.get('title') or try_get(
4250 data, lambda x: x['titleText']['simpleText'], compat_str)
4251 playlist_id = playlist.get('playlistId') or item_id
4252
4253 # Delegating everything except mix playlists to regular tab-based playlist URL
4254 playlist_url = urljoin(url, try_get(
4255 playlist, lambda x: x['endpoint']['commandMetadata']['webCommandMetadata']['url'],
4256 compat_str))
4257 if playlist_url and playlist_url != url:
4258 return self.url_result(
4259 playlist_url, ie=YoutubeTabIE.ie_key(), video_id=playlist_id,
4260 video_title=title)
4261
4262 return self.playlist_result(
4263 self._extract_mix_playlist(playlist, playlist_id, data, ytcfg),
4264 playlist_id=playlist_id, playlist_title=title)
4265
4266 def _extract_availability(self, data):
4267 """
4268 Gets the availability of a given playlist/tab.
4269 Note: Unless YouTube tells us explicitly, we do not assume it is public
4270 @param data: response
4271 """
4272 is_private = is_unlisted = None
4273 renderer = self._extract_sidebar_info_renderer(data, 'playlistSidebarPrimaryInfoRenderer') or {}
4274 badge_labels = self._extract_badges(renderer)
4275
4276 # Personal playlists, when authenticated, have a dropdown visibility selector instead of a badge
4277 privacy_dropdown_entries = try_get(
4278 renderer, lambda x: x['privacyForm']['dropdownFormFieldRenderer']['dropdown']['dropdownRenderer']['entries'], list) or []
4279 for renderer_dict in privacy_dropdown_entries:
4280 is_selected = try_get(
4281 renderer_dict, lambda x: x['privacyDropdownItemRenderer']['isSelected'], bool) or False
4282 if not is_selected:
4283 continue
4284 label = self._get_text(renderer_dict, ('privacyDropdownItemRenderer', 'label'))
4285 if label:
4286 badge_labels.add(label.lower())
4287 break
4288
4289 for badge_label in badge_labels:
4290 if badge_label == 'unlisted':
4291 is_unlisted = True
4292 elif badge_label == 'private':
4293 is_private = True
4294 elif badge_label == 'public':
4295 is_unlisted = is_private = False
4296 return self._availability(is_private, False, False, False, is_unlisted)
4297
4298 @staticmethod
4299 def _extract_sidebar_info_renderer(data, info_renderer, expected_type=dict):
4300 sidebar_renderer = try_get(
4301 data, lambda x: x['sidebar']['playlistSidebarRenderer']['items'], list) or []
4302 for item in sidebar_renderer:
4303 renderer = try_get(item, lambda x: x[info_renderer], expected_type)
4304 if renderer:
4305 return renderer
4306
4307 def _reload_with_unavailable_videos(self, item_id, data, ytcfg):
4308 """
4309 Get playlist with unavailable videos if the 'show unavailable videos' button exists.
4310 """
4311 browse_id = params = None
4312 renderer = self._extract_sidebar_info_renderer(data, 'playlistSidebarPrimaryInfoRenderer')
4313 if not renderer:
4314 return
4315 menu_renderer = try_get(
4316 renderer, lambda x: x['menu']['menuRenderer']['items'], list) or []
4317 for menu_item in menu_renderer:
4318 if not isinstance(menu_item, dict):
4319 continue
4320 nav_item_renderer = menu_item.get('menuNavigationItemRenderer')
4321 text = try_get(
4322 nav_item_renderer, lambda x: x['text']['simpleText'], compat_str)
4323 if not text or text.lower() != 'show unavailable videos':
4324 continue
4325 browse_endpoint = try_get(
4326 nav_item_renderer, lambda x: x['navigationEndpoint']['browseEndpoint'], dict) or {}
4327 browse_id = browse_endpoint.get('browseId')
4328 params = browse_endpoint.get('params')
4329 break
4330
4331 headers = self.generate_api_headers(
4332 ytcfg=ytcfg, account_syncid=self._extract_account_syncid(ytcfg, data),
4333 visitor_data=self._extract_visitor_data(data, ytcfg))
4334 query = {
4335 'params': params or 'wgYCCAA=',
4336 'browseId': browse_id or 'VL%s' % item_id
4337 }
4338 return self._extract_response(
4339 item_id=item_id, headers=headers, query=query,
4340 check_get_keys='contents', fatal=False, ytcfg=ytcfg,
4341 note='Downloading API JSON with unavailable videos')
4342
4343 def _extract_webpage(self, url, item_id, fatal=True):
4344 retries = self.get_param('extractor_retries', 3)
4345 count = -1
4346 webpage = data = last_error = None
4347 while count < retries:
4348 count += 1
4349 # Sometimes youtube returns a webpage with incomplete ytInitialData
4350 # See: https://github.com/yt-dlp/yt-dlp/issues/116
4351 if last_error:
4352 self.report_warning('%s. Retrying ...' % last_error)
4353 try:
4354 webpage = self._download_webpage(
4355 url, item_id,
4356 note='Downloading webpage%s' % (' (retry #%d)' % count if count else '',))
4357 data = self.extract_yt_initial_data(item_id, webpage or '', fatal=fatal) or {}
4358 except ExtractorError as e:
4359 if isinstance(e.cause, network_exceptions):
4360 if not isinstance(e.cause, compat_HTTPError) or e.cause.code not in (403, 429):
4361 last_error = error_to_compat_str(e.cause or e.msg)
4362 if count < retries:
4363 continue
4364 if fatal:
4365 raise
4366 self.report_warning(error_to_compat_str(e))
4367 break
4368 else:
4369 try:
4370 self._extract_and_report_alerts(data)
4371 except ExtractorError as e:
4372 if fatal:
4373 raise
4374 self.report_warning(error_to_compat_str(e))
4375 break
4376
4377 if dict_get(data, ('contents', 'currentVideoEndpoint', 'onResponseReceivedActions')):
4378 break
4379
4380 last_error = 'Incomplete yt initial data received'
4381 if count >= retries:
4382 if fatal:
4383 raise ExtractorError(last_error)
4384 self.report_warning(last_error)
4385 break
4386
4387 return webpage, data
4388
4389 def _extract_data(self, url, item_id, ytcfg=None, fatal=True, webpage_fatal=False, default_client='web'):
4390 data = None
4391 if 'webpage' not in self._configuration_arg('skip'):
4392 webpage, data = self._extract_webpage(url, item_id, fatal=webpage_fatal)
4393 ytcfg = ytcfg or self.extract_ytcfg(item_id, webpage)
4394 # Reject webpage data if redirected to home page without explicitly requesting
4395 selected_tab = self._extract_selected_tab(traverse_obj(
4396 data, ('contents', 'twoColumnBrowseResultsRenderer', 'tabs'), expected_type=list, default=[]), fatal=False) or {}
4397 if (url != 'https://www.youtube.com/feed/recommended'
4398 and selected_tab.get('tabIdentifier') == 'FEwhat_to_watch' # Home page
4399 and 'no-youtube-channel-redirect' not in self.get_param('compat_opts', [])):
4400 msg = 'The channel/playlist does not exist and the URL redirected to youtube.com home page'
4401 if fatal:
4402 raise ExtractorError(msg, expected=True)
4403 self.report_warning(msg, only_once=True)
4404 if not data:
4405 if not ytcfg and self.is_authenticated:
4406 msg = 'Playlists that require authentication may not extract correctly without a successful webpage download.'
4407 if 'authcheck' not in self._configuration_arg('skip') and fatal:
4408 raise ExtractorError(
4409 msg + ' If you are not downloading private content, or your cookies are only for the first account and channel,'
4410 ' pass "--extractor-args youtubetab:skip=authcheck" to skip this check',
4411 expected=True)
4412 self.report_warning(msg, only_once=True)
4413 data = self._extract_tab_endpoint(url, item_id, ytcfg, fatal=fatal, default_client=default_client)
4414 return data, ytcfg
4415
4416 def _extract_tab_endpoint(self, url, item_id, ytcfg=None, fatal=True, default_client='web'):
4417 headers = self.generate_api_headers(ytcfg=ytcfg, default_client=default_client)
4418 resolve_response = self._extract_response(
4419 item_id=item_id, query={'url': url}, check_get_keys='endpoint', headers=headers, ytcfg=ytcfg, fatal=fatal,
4420 ep='navigation/resolve_url', note='Downloading API parameters API JSON', default_client=default_client)
4421 endpoints = {'browseEndpoint': 'browse', 'watchEndpoint': 'next'}
4422 for ep_key, ep in endpoints.items():
4423 params = try_get(resolve_response, lambda x: x['endpoint'][ep_key], dict)
4424 if params:
4425 return self._extract_response(
4426 item_id=item_id, query=params, ep=ep, headers=headers,
4427 ytcfg=ytcfg, fatal=fatal, default_client=default_client,
4428 check_get_keys=('contents', 'currentVideoEndpoint', 'onResponseReceivedActions'))
4429 err_note = 'Failed to resolve url (does the playlist exist?)'
4430 if fatal:
4431 raise ExtractorError(err_note, expected=True)
4432 self.report_warning(err_note, item_id)
4433
4434 _SEARCH_PARAMS = None
4435
4436 def _search_results(self, query, params=NO_DEFAULT, default_client='web'):
4437 data = {'query': query}
4438 if params is NO_DEFAULT:
4439 params = self._SEARCH_PARAMS
4440 if params:
4441 data['params'] = params
4442
4443 content_keys = (
4444 ('contents', 'twoColumnSearchResultsRenderer', 'primaryContents', 'sectionListRenderer', 'contents'),
4445 ('onResponseReceivedCommands', 0, 'appendContinuationItemsAction', 'continuationItems'),
4446 # ytmusic search
4447 ('contents', 'tabbedSearchResultsRenderer', 'tabs', 0, 'tabRenderer', 'content', 'sectionListRenderer', 'contents'),
4448 ('continuationContents', ),
4449 )
4450 check_get_keys = tuple(set(keys[0] for keys in content_keys))
4451
4452 continuation_list = [None]
4453 for page_num in itertools.count(1):
4454 data.update(continuation_list[0] or {})
4455 search = self._extract_response(
4456 item_id='query "%s" page %s' % (query, page_num), ep='search', query=data,
4457 default_client=default_client, check_get_keys=check_get_keys)
4458 slr_contents = traverse_obj(search, *content_keys)
4459 yield from self._extract_entries({'contents': list(variadic(slr_contents))}, continuation_list)
4460 if not continuation_list[0]:
4461 break
4462
4463
4464class YoutubeTabIE(YoutubeTabBaseInfoExtractor):
4465 IE_DESC = 'YouTube Tabs'
4466 _VALID_URL = r'''(?x:
4467 https?://
4468 (?:\w+\.)?
4469 (?:
4470 youtube(?:kids)?\.com|
4471 %(invidious)s
4472 )/
4473 (?:
4474 (?P<channel_type>channel|c|user|browse)/|
4475 (?P<not_channel>
4476 feed/|hashtag/|
4477 (?:playlist|watch)\?.*?\blist=
4478 )|
4479 (?!(?:%(reserved_names)s)\b) # Direct URLs
4480 )
4481 (?P<id>[^/?\#&]+)
4482 )''' % {
4483 'reserved_names': YoutubeBaseInfoExtractor._RESERVED_NAMES,
4484 'invidious': '|'.join(YoutubeBaseInfoExtractor._INVIDIOUS_SITES),
4485 }
4486 IE_NAME = 'youtube:tab'
4487
4488 _TESTS = [{
4489 'note': 'playlists, multipage',
4490 'url': 'https://www.youtube.com/c/ИгорьКлейнер/playlists?view=1&flow=grid',
4491 'playlist_mincount': 94,
4492 'info_dict': {
4493 'id': 'UCqj7Cz7revf5maW9g5pgNcg',
4494 'title': 'Igor Kleiner - Playlists',
4495 'description': 'md5:be97ee0f14ee314f1f002cf187166ee2',
4496 'uploader': 'Igor Kleiner',
4497 'uploader_id': 'UCqj7Cz7revf5maW9g5pgNcg',
4498 'channel': 'Igor Kleiner',
4499 'channel_id': 'UCqj7Cz7revf5maW9g5pgNcg',
4500 'tags': ['"критическое', 'мышление"', '"наука', 'просто"', 'математика', '"анализ', 'данных"'],
4501 'channel_url': 'https://www.youtube.com/channel/UCqj7Cz7revf5maW9g5pgNcg',
4502 'uploader_url': 'https://www.youtube.com/channel/UCqj7Cz7revf5maW9g5pgNcg',
4503 'channel_follower_count': int
4504 },
4505 }, {
4506 'note': 'playlists, multipage, different order',
4507 'url': 'https://www.youtube.com/user/igorkle1/playlists?view=1&sort=dd',
4508 'playlist_mincount': 94,
4509 'info_dict': {
4510 'id': 'UCqj7Cz7revf5maW9g5pgNcg',
4511 'title': 'Igor Kleiner - Playlists',
4512 'description': 'md5:be97ee0f14ee314f1f002cf187166ee2',
4513 'uploader_id': 'UCqj7Cz7revf5maW9g5pgNcg',
4514 'uploader': 'Igor Kleiner',
4515 'uploader_url': 'https://www.youtube.com/channel/UCqj7Cz7revf5maW9g5pgNcg',
4516 'tags': ['"критическое', 'мышление"', '"наука', 'просто"', 'математика', '"анализ', 'данных"'],
4517 'channel_id': 'UCqj7Cz7revf5maW9g5pgNcg',
4518 'channel': 'Igor Kleiner',
4519 'channel_url': 'https://www.youtube.com/channel/UCqj7Cz7revf5maW9g5pgNcg',
4520 'channel_follower_count': int
4521 },
4522 }, {
4523 'note': 'playlists, series',
4524 'url': 'https://www.youtube.com/c/3blue1brown/playlists?view=50&sort=dd&shelf_id=3',
4525 'playlist_mincount': 5,
4526 'info_dict': {
4527 'id': 'UCYO_jab_esuFRV4b17AJtAw',
4528 'title': '3Blue1Brown - Playlists',
4529 'description': 'md5:e1384e8a133307dd10edee76e875d62f',
4530 'uploader_id': 'UCYO_jab_esuFRV4b17AJtAw',
4531 'uploader': '3Blue1Brown',
4532 'channel_url': 'https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw',
4533 'uploader_url': 'https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw',
4534 'channel': '3Blue1Brown',
4535 'channel_id': 'UCYO_jab_esuFRV4b17AJtAw',
4536 'tags': ['Mathematics'],
4537 'channel_follower_count': int
4538 },
4539 }, {
4540 'note': 'playlists, singlepage',
4541 'url': 'https://www.youtube.com/user/ThirstForScience/playlists',
4542 'playlist_mincount': 4,
4543 'info_dict': {
4544 'id': 'UCAEtajcuhQ6an9WEzY9LEMQ',
4545 'title': 'ThirstForScience - Playlists',
4546 'description': 'md5:609399d937ea957b0f53cbffb747a14c',
4547 'uploader': 'ThirstForScience',
4548 'uploader_id': 'UCAEtajcuhQ6an9WEzY9LEMQ',
4549 'uploader_url': 'https://www.youtube.com/channel/UCAEtajcuhQ6an9WEzY9LEMQ',
4550 'channel_url': 'https://www.youtube.com/channel/UCAEtajcuhQ6an9WEzY9LEMQ',
4551 'channel_id': 'UCAEtajcuhQ6an9WEzY9LEMQ',
4552 'tags': 'count:13',
4553 'channel': 'ThirstForScience',
4554 'channel_follower_count': int
4555 }
4556 }, {
4557 'url': 'https://www.youtube.com/c/ChristophLaimer/playlists',
4558 'only_matching': True,
4559 }, {
4560 'note': 'basic, single video playlist',
4561 'url': 'https://www.youtube.com/playlist?list=PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc',
4562 'info_dict': {
4563 'uploader_id': 'UCmlqkdCBesrv2Lak1mF_MxA',
4564 'uploader': 'Sergey M.',
4565 'id': 'PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc',
4566 'title': 'youtube-dl public playlist',
4567 'description': '',
4568 'tags': [],
4569 'view_count': int,
4570 'modified_date': '20201130',
4571 'channel': 'Sergey M.',
4572 'channel_id': 'UCmlqkdCBesrv2Lak1mF_MxA',
4573 'uploader_url': 'https://www.youtube.com/channel/UCmlqkdCBesrv2Lak1mF_MxA',
4574 'channel_url': 'https://www.youtube.com/channel/UCmlqkdCBesrv2Lak1mF_MxA',
4575 },
4576 'playlist_count': 1,
4577 }, {
4578 'note': 'empty playlist',
4579 'url': 'https://www.youtube.com/playlist?list=PL4lCao7KL_QFodcLWhDpGCYnngnHtQ-Xf',
4580 'info_dict': {
4581 'uploader_id': 'UCmlqkdCBesrv2Lak1mF_MxA',
4582 'uploader': 'Sergey M.',
4583 'id': 'PL4lCao7KL_QFodcLWhDpGCYnngnHtQ-Xf',
4584 'title': 'youtube-dl empty playlist',
4585 'tags': [],
4586 'channel': 'Sergey M.',
4587 'description': '',
4588 'modified_date': '20160902',
4589 'channel_id': 'UCmlqkdCBesrv2Lak1mF_MxA',
4590 'channel_url': 'https://www.youtube.com/channel/UCmlqkdCBesrv2Lak1mF_MxA',
4591 'uploader_url': 'https://www.youtube.com/channel/UCmlqkdCBesrv2Lak1mF_MxA',
4592 },
4593 'playlist_count': 0,
4594 }, {
4595 'note': 'Home tab',
4596 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/featured',
4597 'info_dict': {
4598 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4599 'title': 'lex will - Home',
4600 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
4601 'uploader': 'lex will',
4602 'uploader_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4603 'channel': 'lex will',
4604 'tags': ['bible', 'history', 'prophesy'],
4605 'uploader_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4606 'channel_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4607 'channel_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4608 'channel_follower_count': int
4609 },
4610 'playlist_mincount': 2,
4611 }, {
4612 'note': 'Videos tab',
4613 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/videos',
4614 'info_dict': {
4615 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4616 'title': 'lex will - Videos',
4617 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
4618 'uploader': 'lex will',
4619 'uploader_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4620 'tags': ['bible', 'history', 'prophesy'],
4621 'channel_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4622 'channel_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4623 'uploader_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4624 'channel': 'lex will',
4625 'channel_follower_count': int
4626 },
4627 'playlist_mincount': 975,
4628 }, {
4629 'note': 'Videos tab, sorted by popular',
4630 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/videos?view=0&sort=p&flow=grid',
4631 'info_dict': {
4632 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4633 'title': 'lex will - Videos',
4634 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
4635 'uploader': 'lex will',
4636 'uploader_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4637 'channel_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4638 'uploader_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4639 'channel': 'lex will',
4640 'tags': ['bible', 'history', 'prophesy'],
4641 'channel_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4642 'channel_follower_count': int
4643 },
4644 'playlist_mincount': 199,
4645 }, {
4646 'note': 'Playlists tab',
4647 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/playlists',
4648 'info_dict': {
4649 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4650 'title': 'lex will - Playlists',
4651 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
4652 'uploader': 'lex will',
4653 'uploader_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4654 'uploader_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4655 'channel': 'lex will',
4656 'channel_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4657 'channel_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4658 'tags': ['bible', 'history', 'prophesy'],
4659 'channel_follower_count': int
4660 },
4661 'playlist_mincount': 17,
4662 }, {
4663 'note': 'Community tab',
4664 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/community',
4665 'info_dict': {
4666 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4667 'title': 'lex will - Community',
4668 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
4669 'uploader': 'lex will',
4670 'uploader_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4671 'uploader_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4672 'channel': 'lex will',
4673 'channel_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4674 'channel_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4675 'tags': ['bible', 'history', 'prophesy'],
4676 'channel_follower_count': int
4677 },
4678 'playlist_mincount': 18,
4679 }, {
4680 'note': 'Channels tab',
4681 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/channels',
4682 'info_dict': {
4683 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4684 'title': 'lex will - Channels',
4685 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
4686 'uploader': 'lex will',
4687 'uploader_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4688 'uploader_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4689 'channel': 'lex will',
4690 'channel_url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
4691 'channel_id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
4692 'tags': ['bible', 'history', 'prophesy'],
4693 'channel_follower_count': int
4694 },
4695 'playlist_mincount': 12,
4696 }, {
4697 'note': 'Search tab',
4698 'url': 'https://www.youtube.com/c/3blue1brown/search?query=linear%20algebra',
4699 'playlist_mincount': 40,
4700 'info_dict': {
4701 'id': 'UCYO_jab_esuFRV4b17AJtAw',
4702 'title': '3Blue1Brown - Search - linear algebra',
4703 'description': 'md5:e1384e8a133307dd10edee76e875d62f',
4704 'uploader': '3Blue1Brown',
4705 'uploader_id': 'UCYO_jab_esuFRV4b17AJtAw',
4706 'channel_url': 'https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw',
4707 'uploader_url': 'https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw',
4708 'tags': ['Mathematics'],
4709 'channel': '3Blue1Brown',
4710 'channel_id': 'UCYO_jab_esuFRV4b17AJtAw',
4711 'channel_follower_count': int
4712 },
4713 }, {
4714 'url': 'https://invidio.us/channel/UCmlqkdCBesrv2Lak1mF_MxA',
4715 'only_matching': True,
4716 }, {
4717 'url': 'https://www.youtubekids.com/channel/UCmlqkdCBesrv2Lak1mF_MxA',
4718 'only_matching': True,
4719 }, {
4720 'url': 'https://music.youtube.com/channel/UCmlqkdCBesrv2Lak1mF_MxA',
4721 'only_matching': True,
4722 }, {
4723 'note': 'Playlist with deleted videos (#651). As a bonus, the video #51 is also twice in this list.',
4724 'url': 'https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC',
4725 'info_dict': {
4726 'title': '29C3: Not my department',
4727 'id': 'PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC',
4728 'uploader': 'Christiaan008',
4729 'uploader_id': 'UCEPzS1rYsrkqzSLNp76nrcg',
4730 'description': 'md5:a14dc1a8ef8307a9807fe136a0660268',
4731 'tags': [],
4732 'uploader_url': 'https://www.youtube.com/c/ChRiStIaAn008',
4733 'view_count': int,
4734 'modified_date': '20150605',
4735 'channel_id': 'UCEPzS1rYsrkqzSLNp76nrcg',
4736 'channel_url': 'https://www.youtube.com/c/ChRiStIaAn008',
4737 'channel': 'Christiaan008',
4738 },
4739 'playlist_count': 96,
4740 }, {
4741 'note': 'Large playlist',
4742 'url': 'https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q',
4743 'info_dict': {
4744 'title': 'Uploads from Cauchemar',
4745 'id': 'UUBABnxM4Ar9ten8Mdjj1j0Q',
4746 'uploader': 'Cauchemar',
4747 'uploader_id': 'UCBABnxM4Ar9ten8Mdjj1j0Q',
4748 'channel_url': 'https://www.youtube.com/c/Cauchemar89',
4749 'tags': [],
4750 'modified_date': r're:\d{8}',
4751 'channel': 'Cauchemar',
4752 'uploader_url': 'https://www.youtube.com/c/Cauchemar89',
4753 'view_count': int,
4754 'description': '',
4755 'channel_id': 'UCBABnxM4Ar9ten8Mdjj1j0Q',
4756 },
4757 'playlist_mincount': 1123,
4758 'expected_warnings': [r'[Uu]navailable videos (are|will be) hidden'],
4759 }, {
4760 'note': 'even larger playlist, 8832 videos',
4761 'url': 'http://www.youtube.com/user/NASAgovVideo/videos',
4762 'only_matching': True,
4763 }, {
4764 'note': 'Buggy playlist: the webpage has a "Load more" button but it doesn\'t have more videos',
4765 'url': 'https://www.youtube.com/playlist?list=UUXw-G3eDE9trcvY2sBMM_aA',
4766 'info_dict': {
4767 'title': 'Uploads from Interstellar Movie',
4768 'id': 'UUXw-G3eDE9trcvY2sBMM_aA',
4769 'uploader': 'Interstellar Movie',
4770 'uploader_id': 'UCXw-G3eDE9trcvY2sBMM_aA',
4771 'uploader_url': 'https://www.youtube.com/c/InterstellarMovie',
4772 'tags': [],
4773 'view_count': int,
4774 'channel_id': 'UCXw-G3eDE9trcvY2sBMM_aA',
4775 'channel_url': 'https://www.youtube.com/c/InterstellarMovie',
4776 'channel': 'Interstellar Movie',
4777 'description': '',
4778 'modified_date': r're:\d{8}',
4779 },
4780 'playlist_mincount': 21,
4781 }, {
4782 'note': 'Playlist with "show unavailable videos" button',
4783 'url': 'https://www.youtube.com/playlist?list=UUTYLiWFZy8xtPwxFwX9rV7Q',
4784 'info_dict': {
4785 'title': 'Uploads from Phim Siêu Nhân Nhật Bản',
4786 'id': 'UUTYLiWFZy8xtPwxFwX9rV7Q',
4787 'uploader': 'Phim Siêu Nhân Nhật Bản',
4788 'uploader_id': 'UCTYLiWFZy8xtPwxFwX9rV7Q',
4789 'view_count': int,
4790 'channel': 'Phim Siêu Nhân Nhật Bản',
4791 'tags': [],
4792 'uploader_url': 'https://www.youtube.com/channel/UCTYLiWFZy8xtPwxFwX9rV7Q',
4793 'description': '',
4794 'channel_url': 'https://www.youtube.com/channel/UCTYLiWFZy8xtPwxFwX9rV7Q',
4795 'channel_id': 'UCTYLiWFZy8xtPwxFwX9rV7Q',
4796 'modified_date': r're:\d{8}',
4797 },
4798 'playlist_mincount': 200,
4799 'expected_warnings': [r'[Uu]navailable videos (are|will be) hidden'],
4800 }, {
4801 'note': 'Playlist with unavailable videos in page 7',
4802 'url': 'https://www.youtube.com/playlist?list=UU8l9frL61Yl5KFOl87nIm2w',
4803 'info_dict': {
4804 'title': 'Uploads from BlankTV',
4805 'id': 'UU8l9frL61Yl5KFOl87nIm2w',
4806 'uploader': 'BlankTV',
4807 'uploader_id': 'UC8l9frL61Yl5KFOl87nIm2w',
4808 'channel': 'BlankTV',
4809 'channel_url': 'https://www.youtube.com/c/blanktv',
4810 'channel_id': 'UC8l9frL61Yl5KFOl87nIm2w',
4811 'view_count': int,
4812 'tags': [],
4813 'uploader_url': 'https://www.youtube.com/c/blanktv',
4814 'modified_date': r're:\d{8}',
4815 'description': '',
4816 },
4817 'playlist_mincount': 1000,
4818 'expected_warnings': [r'[Uu]navailable videos (are|will be) hidden'],
4819 }, {
4820 'note': 'https://github.com/ytdl-org/youtube-dl/issues/21844',
4821 'url': 'https://www.youtube.com/playlist?list=PLzH6n4zXuckpfMu_4Ff8E7Z1behQks5ba',
4822 'info_dict': {
4823 'title': 'Data Analysis with Dr Mike Pound',
4824 'id': 'PLzH6n4zXuckpfMu_4Ff8E7Z1behQks5ba',
4825 'uploader_id': 'UC9-y-6csu5WGm29I7JiwpnA',
4826 'uploader': 'Computerphile',
4827 'description': 'md5:7f567c574d13d3f8c0954d9ffee4e487',
4828 'uploader_url': 'https://www.youtube.com/user/Computerphile',
4829 'tags': [],
4830 'view_count': int,
4831 'channel_id': 'UC9-y-6csu5WGm29I7JiwpnA',
4832 'channel_url': 'https://www.youtube.com/user/Computerphile',
4833 'channel': 'Computerphile',
4834 },
4835 'playlist_mincount': 11,
4836 }, {
4837 'url': 'https://invidio.us/playlist?list=PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc',
4838 'only_matching': True,
4839 }, {
4840 'note': 'Playlist URL that does not actually serve a playlist',
4841 'url': 'https://www.youtube.com/watch?v=FqZTN594JQw&list=PLMYEtVRpaqY00V9W81Cwmzp6N6vZqfUKD4',
4842 'info_dict': {
4843 'id': 'FqZTN594JQw',
4844 'ext': 'webm',
4845 'title': "Smiley's People 01 detective, Adventure Series, Action",
4846 'uploader': 'STREEM',
4847 'uploader_id': 'UCyPhqAZgwYWZfxElWVbVJng',
4848 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UCyPhqAZgwYWZfxElWVbVJng',
4849 'upload_date': '20150526',
4850 'license': 'Standard YouTube License',
4851 'description': 'md5:507cdcb5a49ac0da37a920ece610be80',
4852 'categories': ['People & Blogs'],
4853 'tags': list,
4854 'view_count': int,
4855 'like_count': int,
4856 },
4857 'params': {
4858 'skip_download': True,
4859 },
4860 'skip': 'This video is not available.',
4861 'add_ie': [YoutubeIE.ie_key()],
4862 }, {
4863 'url': 'https://www.youtubekids.com/watch?v=Agk7R8I8o5U&list=PUZ6jURNr1WQZCNHF0ao-c0g',
4864 'only_matching': True,
4865 }, {
4866 'url': 'https://www.youtube.com/watch?v=MuAGGZNfUkU&list=RDMM',
4867 'only_matching': True,
4868 }, {
4869 'url': 'https://www.youtube.com/channel/UCoMdktPbSTixAyNGwb-UYkQ/live',
4870 'info_dict': {
4871 'id': 'GgL890LIznQ', # This will keep changing
4872 'ext': 'mp4',
4873 'title': str,
4874 'uploader': 'Sky News',
4875 'uploader_id': 'skynews',
4876 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/skynews',
4877 'upload_date': r're:\d{8}',
4878 'description': str,
4879 'categories': ['News & Politics'],
4880 'tags': list,
4881 'like_count': int,
4882 'release_timestamp': 1642502819,
4883 'channel': 'Sky News',
4884 'channel_id': 'UCoMdktPbSTixAyNGwb-UYkQ',
4885 'age_limit': 0,
4886 'view_count': int,
4887 'thumbnail': 'https://i.ytimg.com/vi/GgL890LIznQ/maxresdefault_live.jpg',
4888 'playable_in_embed': True,
4889 'release_date': '20220118',
4890 'availability': 'public',
4891 'live_status': 'is_live',
4892 'channel_url': 'https://www.youtube.com/channel/UCoMdktPbSTixAyNGwb-UYkQ',
4893 'channel_follower_count': int
4894 },
4895 'params': {
4896 'skip_download': True,
4897 },
4898 'expected_warnings': ['Ignoring subtitle tracks found in '],
4899 }, {
4900 'url': 'https://www.youtube.com/user/TheYoungTurks/live',
4901 'info_dict': {
4902 'id': 'a48o2S1cPoo',
4903 'ext': 'mp4',
4904 'title': 'The Young Turks - Live Main Show',
4905 'uploader': 'The Young Turks',
4906 'uploader_id': 'TheYoungTurks',
4907 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/TheYoungTurks',
4908 'upload_date': '20150715',
4909 'license': 'Standard YouTube License',
4910 'description': 'md5:438179573adcdff3c97ebb1ee632b891',
4911 'categories': ['News & Politics'],
4912 'tags': ['Cenk Uygur (TV Program Creator)', 'The Young Turks (Award-Winning Work)', 'Talk Show (TV Genre)'],
4913 'like_count': int,
4914 },
4915 'params': {
4916 'skip_download': True,
4917 },
4918 'only_matching': True,
4919 }, {
4920 'url': 'https://www.youtube.com/channel/UC1yBKRuGpC1tSM73A0ZjYjQ/live',
4921 'only_matching': True,
4922 }, {
4923 'url': 'https://www.youtube.com/c/CommanderVideoHq/live',
4924 'only_matching': True,
4925 }, {
4926 'note': 'A channel that is not live. Should raise error',
4927 'url': 'https://www.youtube.com/user/numberphile/live',
4928 'only_matching': True,
4929 }, {
4930 'url': 'https://www.youtube.com/feed/trending',
4931 'only_matching': True,
4932 }, {
4933 'url': 'https://www.youtube.com/feed/library',
4934 'only_matching': True,
4935 }, {
4936 'url': 'https://www.youtube.com/feed/history',
4937 'only_matching': True,
4938 }, {
4939 'url': 'https://www.youtube.com/feed/subscriptions',
4940 'only_matching': True,
4941 }, {
4942 'url': 'https://www.youtube.com/feed/watch_later',
4943 'only_matching': True,
4944 }, {
4945 'note': 'Recommended - redirects to home page.',
4946 'url': 'https://www.youtube.com/feed/recommended',
4947 'only_matching': True,
4948 }, {
4949 'note': 'inline playlist with not always working continuations',
4950 'url': 'https://www.youtube.com/watch?v=UC6u0Tct-Fo&list=PL36D642111D65BE7C',
4951 'only_matching': True,
4952 }, {
4953 'url': 'https://www.youtube.com/course',
4954 'only_matching': True,
4955 }, {
4956 'url': 'https://www.youtube.com/zsecurity',
4957 'only_matching': True,
4958 }, {
4959 'url': 'http://www.youtube.com/NASAgovVideo/videos',
4960 'only_matching': True,
4961 }, {
4962 'url': 'https://www.youtube.com/TheYoungTurks/live',
4963 'only_matching': True,
4964 }, {
4965 'url': 'https://www.youtube.com/hashtag/cctv9',
4966 'info_dict': {
4967 'id': 'cctv9',
4968 'title': '#cctv9',
4969 'tags': [],
4970 },
4971 'playlist_mincount': 350,
4972 }, {
4973 'url': 'https://www.youtube.com/watch?list=PLW4dVinRY435CBE_JD3t-0SRXKfnZHS1P&feature=youtu.be&v=M9cJMXmQ_ZU',
4974 'only_matching': True,
4975 }, {
4976 'note': 'Requires Premium: should request additional YTM-info webpage (and have format 141) for videos in playlist',
4977 'url': 'https://music.youtube.com/playlist?list=PLRBp0Fe2GpgmgoscNFLxNyBVSFVdYmFkq',
4978 'only_matching': True
4979 }, {
4980 'note': '/browse/ should redirect to /channel/',
4981 'url': 'https://music.youtube.com/browse/UC1a8OFewdjuLq6KlF8M_8Ng',
4982 'only_matching': True
4983 }, {
4984 'note': 'VLPL, should redirect to playlist?list=PL...',
4985 'url': 'https://music.youtube.com/browse/VLPLRBp0Fe2GpgmgoscNFLxNyBVSFVdYmFkq',
4986 'info_dict': {
4987 'id': 'PLRBp0Fe2GpgmgoscNFLxNyBVSFVdYmFkq',
4988 'uploader': 'NoCopyrightSounds',
4989 'description': 'Providing you with copyright free / safe music for gaming, live streaming, studying and more!',
4990 'uploader_id': 'UC_aEa8K-EOJ3D6gOs7HcyNg',
4991 'title': 'NCS Releases',
4992 'uploader_url': 'https://www.youtube.com/c/NoCopyrightSounds',
4993 'channel_url': 'https://www.youtube.com/c/NoCopyrightSounds',
4994 'modified_date': r're:\d{8}',
4995 'view_count': int,
4996 'channel_id': 'UC_aEa8K-EOJ3D6gOs7HcyNg',
4997 'tags': [],
4998 'channel': 'NoCopyrightSounds',
4999 },
5000 'playlist_mincount': 166,
5001 'expected_warnings': [r'[Uu]navailable videos (are|will be) hidden'],
5002 }, {
5003 'note': 'Topic, should redirect to playlist?list=UU...',
5004 'url': 'https://music.youtube.com/browse/UC9ALqqC4aIeG5iDs7i90Bfw',
5005 'info_dict': {
5006 'id': 'UU9ALqqC4aIeG5iDs7i90Bfw',
5007 'uploader_id': 'UC9ALqqC4aIeG5iDs7i90Bfw',
5008 'title': 'Uploads from Royalty Free Music - Topic',
5009 'uploader': 'Royalty Free Music - Topic',
5010 'tags': [],
5011 'channel_id': 'UC9ALqqC4aIeG5iDs7i90Bfw',
5012 'channel': 'Royalty Free Music - Topic',
5013 'view_count': int,
5014 'channel_url': 'https://www.youtube.com/channel/UC9ALqqC4aIeG5iDs7i90Bfw',
5015 'channel_url': 'https://www.youtube.com/channel/UC9ALqqC4aIeG5iDs7i90Bfw',
5016 'modified_date': r're:\d{8}',
5017 'uploader_url': 'https://www.youtube.com/channel/UC9ALqqC4aIeG5iDs7i90Bfw',
5018 'description': '',
5019 },
5020 'expected_warnings': [
5021 'The URL does not have a videos tab',
5022 r'[Uu]navailable videos (are|will be) hidden',
5023 ],
5024 'playlist_mincount': 101,
5025 }, {
5026 'note': 'Topic without a UU playlist',
5027 'url': 'https://www.youtube.com/channel/UCtFRv9O2AHqOZjjynzrv-xg',
5028 'info_dict': {
5029 'id': 'UCtFRv9O2AHqOZjjynzrv-xg',
5030 'title': 'UCtFRv9O2AHqOZjjynzrv-xg',
5031 'tags': [],
5032 },
5033 'expected_warnings': [
5034 'the playlist redirect gave error',
5035 ],
5036 'playlist_mincount': 9,
5037 }, {
5038 'note': 'Youtube music Album',
5039 'url': 'https://music.youtube.com/browse/MPREb_gTAcphH99wE',
5040 'info_dict': {
5041 'id': 'OLAK5uy_l1m0thk3g31NmIIz_vMIbWtyv7eZixlH0',
5042 'title': 'Album - Royalty Free Music Library V2 (50 Songs)',
5043 'tags': [],
5044 'view_count': int,
5045 'description': '',
5046 'availability': 'unlisted',
5047 'modified_date': r're:\d{8}',
5048 },
5049 'playlist_count': 50,
5050 }, {
5051 'note': 'unlisted single video playlist',
5052 'url': 'https://www.youtube.com/playlist?list=PLwL24UFy54GrB3s2KMMfjZscDi1x5Dajf',
5053 'info_dict': {
5054 'uploader_id': 'UC9zHu_mHU96r19o-wV5Qs1Q',
5055 'uploader': 'colethedj',
5056 'id': 'PLwL24UFy54GrB3s2KMMfjZscDi1x5Dajf',
5057 'title': 'yt-dlp unlisted playlist test',
5058 'availability': 'unlisted',
5059 'tags': [],
5060 'modified_date': '20211208',
5061 'channel': 'colethedj',
5062 'view_count': int,
5063 'description': '',
5064 'uploader_url': 'https://www.youtube.com/channel/UC9zHu_mHU96r19o-wV5Qs1Q',
5065 'channel_id': 'UC9zHu_mHU96r19o-wV5Qs1Q',
5066 'channel_url': 'https://www.youtube.com/channel/UC9zHu_mHU96r19o-wV5Qs1Q',
5067 },
5068 'playlist_count': 1,
5069 }, {
5070 'note': 'API Fallback: Recommended - redirects to home page. Requires visitorData',
5071 'url': 'https://www.youtube.com/feed/recommended',
5072 'info_dict': {
5073 'id': 'recommended',
5074 'title': 'recommended',
5075 'tags': [],
5076 },
5077 'playlist_mincount': 50,
5078 'params': {
5079 'skip_download': True,
5080 'extractor_args': {'youtubetab': {'skip': ['webpage']}}
5081 },
5082 }, {
5083 'note': 'API Fallback: /videos tab, sorted by oldest first',
5084 'url': 'https://www.youtube.com/user/theCodyReeder/videos?view=0&sort=da&flow=grid',
5085 'info_dict': {
5086 'id': 'UCu6mSoMNzHQiBIOCkHUa2Aw',
5087 'title': 'Cody\'sLab - Videos',
5088 'description': 'md5:d083b7c2f0c67ee7a6c74c3e9b4243fa',
5089 'uploader': 'Cody\'sLab',
5090 'uploader_id': 'UCu6mSoMNzHQiBIOCkHUa2Aw',
5091 'channel': 'Cody\'sLab',
5092 'channel_id': 'UCu6mSoMNzHQiBIOCkHUa2Aw',
5093 'tags': [],
5094 'channel_url': 'https://www.youtube.com/channel/UCu6mSoMNzHQiBIOCkHUa2Aw',
5095 'uploader_url': 'https://www.youtube.com/channel/UCu6mSoMNzHQiBIOCkHUa2Aw',
5096 'channel_follower_count': int
5097 },
5098 'playlist_mincount': 650,
5099 'params': {
5100 'skip_download': True,
5101 'extractor_args': {'youtubetab': {'skip': ['webpage']}}
5102 },
5103 }, {
5104 'note': 'API Fallback: Topic, should redirect to playlist?list=UU...',
5105 'url': 'https://music.youtube.com/browse/UC9ALqqC4aIeG5iDs7i90Bfw',
5106 'info_dict': {
5107 'id': 'UU9ALqqC4aIeG5iDs7i90Bfw',
5108 'uploader_id': 'UC9ALqqC4aIeG5iDs7i90Bfw',
5109 'title': 'Uploads from Royalty Free Music - Topic',
5110 'uploader': 'Royalty Free Music - Topic',
5111 'modified_date': r're:\d{8}',
5112 'channel_id': 'UC9ALqqC4aIeG5iDs7i90Bfw',
5113 'description': '',
5114 'channel_url': 'https://www.youtube.com/channel/UC9ALqqC4aIeG5iDs7i90Bfw',
5115 'tags': [],
5116 'channel': 'Royalty Free Music - Topic',
5117 'view_count': int,
5118 'uploader_url': 'https://www.youtube.com/channel/UC9ALqqC4aIeG5iDs7i90Bfw',
5119 },
5120 'expected_warnings': [
5121 'does not have a videos tab',
5122 r'[Uu]navailable videos (are|will be) hidden',
5123 ],
5124 'playlist_mincount': 101,
5125 'params': {
5126 'skip_download': True,
5127 'extractor_args': {'youtubetab': {'skip': ['webpage']}}
5128 },
5129 }, {
5130 'note': 'non-standard redirect to regional channel',
5131 'url': 'https://www.youtube.com/channel/UCwVVpHQ2Cs9iGJfpdFngePQ',
5132 'only_matching': True
5133 }]
5134
5135 @classmethod
5136 def suitable(cls, url):
5137 return False if YoutubeIE.suitable(url) else super(
5138 YoutubeTabIE, cls).suitable(url)
5139
5140 _URL_RE = re.compile(rf'(?P<pre>{_VALID_URL})(?(not_channel)|(?P<tab>/\w+))?(?P<post>.*)$')
5141
5142 @YoutubeTabBaseInfoExtractor.passthrough_smuggled_data
5143 def _real_extract(self, url, smuggled_data):
5144 item_id = self._match_id(url)
5145 url = compat_urlparse.urlunparse(
5146 compat_urlparse.urlparse(url)._replace(netloc='www.youtube.com'))
5147 compat_opts = self.get_param('compat_opts', [])
5148
5149 def get_mobj(url):
5150 mobj = self._URL_RE.match(url).groupdict()
5151 mobj.update((k, '') for k, v in mobj.items() if v is None)
5152 return mobj
5153
5154 mobj, redirect_warning = get_mobj(url), None
5155 # Youtube returns incomplete data if tabname is not lower case
5156 pre, tab, post, is_channel = mobj['pre'], mobj['tab'].lower(), mobj['post'], not mobj['not_channel']
5157 if is_channel:
5158 if smuggled_data.get('is_music_url'):
5159 if item_id[:2] == 'VL': # Youtube music VL channels have an equivalent playlist
5160 item_id = item_id[2:]
5161 pre, tab, post, is_channel = f'https://www.youtube.com/playlist?list={item_id}', '', '', False
5162 elif item_id[:2] == 'MP': # Resolve albums (/[channel/browse]/MP...) to their equivalent playlist
5163 mdata = self._extract_tab_endpoint(
5164 f'https://music.youtube.com/channel/{item_id}', item_id, default_client='web_music')
5165 murl = traverse_obj(mdata, ('microformat', 'microformatDataRenderer', 'urlCanonical'),
5166 get_all=False, expected_type=compat_str)
5167 if not murl:
5168 raise ExtractorError('Failed to resolve album to playlist')
5169 return self.url_result(murl, ie=YoutubeTabIE.ie_key())
5170 elif mobj['channel_type'] == 'browse': # Youtube music /browse/ should be changed to /channel/
5171 pre = f'https://www.youtube.com/channel/{item_id}'
5172
5173 original_tab_name = tab
5174 if is_channel and not tab and 'no-youtube-channel-redirect' not in compat_opts:
5175 # Home URLs should redirect to /videos/
5176 redirect_warning = ('A channel/user page was given. All the channel\'s videos will be downloaded. '
5177 'To download only the videos in the home page, add a "/featured" to the URL')
5178 tab = '/videos'
5179
5180 url = ''.join((pre, tab, post))
5181 mobj = get_mobj(url)
5182
5183 # Handle both video/playlist URLs
5184 qs = parse_qs(url)
5185 video_id, playlist_id = [qs.get(key, [None])[0] for key in ('v', 'list')]
5186
5187 if not video_id and mobj['not_channel'].startswith('watch'):
5188 if not playlist_id:
5189 # If there is neither video or playlist ids, youtube redirects to home page, which is undesirable
5190 raise ExtractorError('Unable to recognize tab page')
5191 # Common mistake: https://www.youtube.com/watch?list=playlist_id
5192 self.report_warning(f'A video URL was given without video ID. Trying to download playlist {playlist_id}')
5193 url = f'https://www.youtube.com/playlist?list={playlist_id}'
5194 mobj = get_mobj(url)
5195
5196 if video_id and playlist_id:
5197 if self.get_param('noplaylist'):
5198 self.to_screen(f'Downloading just video {video_id} because of --no-playlist')
5199 return self.url_result(f'https://www.youtube.com/watch?v={video_id}',
5200 ie=YoutubeIE.ie_key(), video_id=video_id)
5201 self.to_screen(f'Downloading playlist {playlist_id}; add --no-playlist to just download video {video_id}')
5202
5203 data, ytcfg = self._extract_data(url, item_id)
5204
5205 # YouTube may provide a non-standard redirect to the regional channel
5206 # See: https://github.com/yt-dlp/yt-dlp/issues/2694
5207 redirect_url = traverse_obj(
5208 data, ('onResponseReceivedActions', ..., 'navigateAction', 'endpoint', 'commandMetadata', 'webCommandMetadata', 'url'), get_all=False)
5209 if redirect_url and 'no-youtube-channel-redirect' not in compat_opts:
5210 redirect_url = ''.join((
5211 urljoin('https://www.youtube.com', redirect_url), mobj['tab'], mobj['post']))
5212 self.to_screen(f'This playlist is likely not available in your region. Following redirect to regional playlist {redirect_url}')
5213 return self.url_result(redirect_url, ie=YoutubeTabIE.ie_key())
5214
5215 tabs = traverse_obj(data, ('contents', 'twoColumnBrowseResultsRenderer', 'tabs'), expected_type=list)
5216 if tabs:
5217 selected_tab = self._extract_selected_tab(tabs)
5218 selected_tab_name = selected_tab.get('title', '').lower()
5219 if selected_tab_name == 'home':
5220 selected_tab_name = 'featured'
5221 requested_tab_name = mobj['tab'][1:]
5222 if 'no-youtube-channel-redirect' not in compat_opts:
5223 if requested_tab_name == 'live':
5224 # Live tab should have redirected to the video
5225 raise ExtractorError('The channel is not currently live', expected=True)
5226 if requested_tab_name not in ('', selected_tab_name):
5227 redirect_warning = f'The channel does not have a {requested_tab_name} tab'
5228 if not original_tab_name:
5229 if item_id[:2] == 'UC':
5230 # Topic channels don't have /videos. Use the equivalent playlist instead
5231 pl_id = f'UU{item_id[2:]}'
5232 pl_url = f'https://www.youtube.com/playlist?list={pl_id}'
5233 try:
5234 data, ytcfg = self._extract_data(pl_url, pl_id, ytcfg=ytcfg, fatal=True, webpage_fatal=True)
5235 except ExtractorError:
5236 redirect_warning += ' and the playlist redirect gave error'
5237 else:
5238 item_id, url, selected_tab_name = pl_id, pl_url, requested_tab_name
5239 redirect_warning += f'. Redirecting to playlist {pl_id} instead'
5240 if selected_tab_name and selected_tab_name != requested_tab_name:
5241 redirect_warning += f'. {selected_tab_name} tab is being downloaded instead'
5242 else:
5243 raise ExtractorError(redirect_warning, expected=True)
5244
5245 if redirect_warning:
5246 self.to_screen(redirect_warning)
5247 self.write_debug(f'Final URL: {url}')
5248
5249 # YouTube sometimes provides a button to reload playlist with unavailable videos.
5250 if 'no-youtube-unavailable-videos' not in compat_opts:
5251 data = self._reload_with_unavailable_videos(item_id, data, ytcfg) or data
5252 self._extract_and_report_alerts(data, only_once=True)
5253 tabs = traverse_obj(data, ('contents', 'twoColumnBrowseResultsRenderer', 'tabs'), expected_type=list)
5254 if tabs:
5255 return self._extract_from_tabs(item_id, ytcfg, data, tabs)
5256
5257 playlist = traverse_obj(
5258 data, ('contents', 'twoColumnWatchNextResults', 'playlist', 'playlist'), expected_type=dict)
5259 if playlist:
5260 return self._extract_from_playlist(item_id, url, data, playlist, ytcfg)
5261
5262 video_id = traverse_obj(
5263 data, ('currentVideoEndpoint', 'watchEndpoint', 'videoId'), expected_type=str) or video_id
5264 if video_id:
5265 if mobj['tab'] != '/live': # live tab is expected to redirect to video
5266 self.report_warning(f'Unable to recognize playlist. Downloading just video {video_id}')
5267 return self.url_result(f'https://www.youtube.com/watch?v={video_id}',
5268 ie=YoutubeIE.ie_key(), video_id=video_id)
5269
5270 raise ExtractorError('Unable to recognize tab page')
5271
5272
5273class YoutubePlaylistIE(InfoExtractor):
5274 IE_DESC = 'YouTube playlists'
5275 _VALID_URL = r'''(?x)(?:
5276 (?:https?://)?
5277 (?:\w+\.)?
5278 (?:
5279 (?:
5280 youtube(?:kids)?\.com|
5281 %(invidious)s
5282 )
5283 /.*?\?.*?\blist=
5284 )?
5285 (?P<id>%(playlist_id)s)
5286 )''' % {
5287 'playlist_id': YoutubeBaseInfoExtractor._PLAYLIST_ID_RE,
5288 'invidious': '|'.join(YoutubeBaseInfoExtractor._INVIDIOUS_SITES),
5289 }
5290 IE_NAME = 'youtube:playlist'
5291 _TESTS = [{
5292 'note': 'issue #673',
5293 'url': 'PLBB231211A4F62143',
5294 'info_dict': {
5295 'title': '[OLD]Team Fortress 2 (Class-based LP)',
5296 'id': 'PLBB231211A4F62143',
5297 'uploader': 'Wickman',
5298 'uploader_id': 'UCKSpbfbl5kRQpTdL7kMc-1Q',
5299 'description': 'md5:8fa6f52abb47a9552002fa3ddfc57fc2',
5300 'view_count': int,
5301 'uploader_url': 'https://www.youtube.com/user/Wickydoo',
5302 'modified_date': r're:\d{8}',
5303 'channel_id': 'UCKSpbfbl5kRQpTdL7kMc-1Q',
5304 'channel': 'Wickman',
5305 'tags': [],
5306 'channel_url': 'https://www.youtube.com/user/Wickydoo',
5307 },
5308 'playlist_mincount': 29,
5309 }, {
5310 'url': 'PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl',
5311 'info_dict': {
5312 'title': 'YDL_safe_search',
5313 'id': 'PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl',
5314 },
5315 'playlist_count': 2,
5316 'skip': 'This playlist is private',
5317 }, {
5318 'note': 'embedded',
5319 'url': 'https://www.youtube.com/embed/videoseries?list=PL6IaIsEjSbf96XFRuNccS_RuEXwNdsoEu',
5320 'playlist_count': 4,
5321 'info_dict': {
5322 'title': 'JODA15',
5323 'id': 'PL6IaIsEjSbf96XFRuNccS_RuEXwNdsoEu',
5324 'uploader': 'milan',
5325 'uploader_id': 'UCEI1-PVPcYXjB73Hfelbmaw',
5326 'description': '',
5327 'channel_url': 'https://www.youtube.com/channel/UCEI1-PVPcYXjB73Hfelbmaw',
5328 'tags': [],
5329 'modified_date': '20140919',
5330 'view_count': int,
5331 'channel': 'milan',
5332 'channel_id': 'UCEI1-PVPcYXjB73Hfelbmaw',
5333 'uploader_url': 'https://www.youtube.com/channel/UCEI1-PVPcYXjB73Hfelbmaw',
5334 },
5335 'expected_warnings': [r'[Uu]navailable videos (are|will be) hidden'],
5336 }, {
5337 'url': 'http://www.youtube.com/embed/_xDOZElKyNU?list=PLsyOSbh5bs16vubvKePAQ1x3PhKavfBIl',
5338 'playlist_mincount': 654,
5339 'info_dict': {
5340 'title': '2018 Chinese New Singles (11/6 updated)',
5341 'id': 'PLsyOSbh5bs16vubvKePAQ1x3PhKavfBIl',
5342 'uploader': 'LBK',
5343 'uploader_id': 'UC21nz3_MesPLqtDqwdvnoxA',
5344 'description': 'md5:da521864744d60a198e3a88af4db0d9d',
5345 'channel': 'LBK',
5346 'view_count': int,
5347 'channel_url': 'https://www.youtube.com/c/愛低音的國王',
5348 'tags': [],
5349 'uploader_url': 'https://www.youtube.com/c/愛低音的國王',
5350 'channel_id': 'UC21nz3_MesPLqtDqwdvnoxA',
5351 'modified_date': r're:\d{8}',
5352 },
5353 'expected_warnings': [r'[Uu]navailable videos (are|will be) hidden'],
5354 }, {
5355 'url': 'TLGGrESM50VT6acwMjAyMjAxNw',
5356 'only_matching': True,
5357 }, {
5358 # music album playlist
5359 'url': 'OLAK5uy_m4xAFdmMC5rX3Ji3g93pQe3hqLZw_9LhM',
5360 'only_matching': True,
5361 }]
5362
5363 @classmethod
5364 def suitable(cls, url):
5365 if YoutubeTabIE.suitable(url):
5366 return False
5367 from ..utils import parse_qs
5368 qs = parse_qs(url)
5369 if qs.get('v', [None])[0]:
5370 return False
5371 return super(YoutubePlaylistIE, cls).suitable(url)
5372
5373 def _real_extract(self, url):
5374 playlist_id = self._match_id(url)
5375 is_music_url = YoutubeBaseInfoExtractor.is_music_url(url)
5376 url = update_url_query(
5377 'https://www.youtube.com/playlist',
5378 parse_qs(url) or {'list': playlist_id})
5379 if is_music_url:
5380 url = smuggle_url(url, {'is_music_url': True})
5381 return self.url_result(url, ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
5382
5383
5384class YoutubeYtBeIE(InfoExtractor):
5385 IE_DESC = 'youtu.be'
5386 _VALID_URL = r'https?://youtu\.be/(?P<id>[0-9A-Za-z_-]{11})/*?.*?\blist=(?P<playlist_id>%(playlist_id)s)' % {'playlist_id': YoutubeBaseInfoExtractor._PLAYLIST_ID_RE}
5387 _TESTS = [{
5388 'url': 'https://youtu.be/yeWKywCrFtk?list=PL2qgrgXsNUG5ig9cat4ohreBjYLAPC0J5',
5389 'info_dict': {
5390 'id': 'yeWKywCrFtk',
5391 'ext': 'mp4',
5392 'title': 'Small Scale Baler and Braiding Rugs',
5393 'uploader': 'Backus-Page House Museum',
5394 'uploader_id': 'backuspagemuseum',
5395 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/backuspagemuseum',
5396 'upload_date': '20161008',
5397 'description': 'md5:800c0c78d5eb128500bffd4f0b4f2e8a',
5398 'categories': ['Nonprofits & Activism'],
5399 'tags': list,
5400 'like_count': int,
5401 'age_limit': 0,
5402 'playable_in_embed': True,
5403 'thumbnail': 'https://i.ytimg.com/vi_webp/yeWKywCrFtk/maxresdefault.webp',
5404 'channel': 'Backus-Page House Museum',
5405 'channel_id': 'UCEfMCQ9bs3tjvjy1s451zaw',
5406 'live_status': 'not_live',
5407 'view_count': int,
5408 'channel_url': 'https://www.youtube.com/channel/UCEfMCQ9bs3tjvjy1s451zaw',
5409 'availability': 'public',
5410 'duration': 59,
5411 },
5412 'params': {
5413 'noplaylist': True,
5414 'skip_download': True,
5415 },
5416 }, {
5417 'url': 'https://youtu.be/uWyaPkt-VOI?list=PL9D9FC436B881BA21',
5418 'only_matching': True,
5419 }]
5420
5421 def _real_extract(self, url):
5422 mobj = self._match_valid_url(url)
5423 video_id = mobj.group('id')
5424 playlist_id = mobj.group('playlist_id')
5425 return self.url_result(
5426 update_url_query('https://www.youtube.com/watch', {
5427 'v': video_id,
5428 'list': playlist_id,
5429 'feature': 'youtu.be',
5430 }), ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
5431
5432
5433class YoutubeLivestreamEmbedIE(InfoExtractor):
5434 IE_DESC = 'YouTube livestream embeds'
5435 _VALID_URL = r'https?://(?:\w+\.)?youtube\.com/embed/live_stream/?\?(?:[^#]+&)?channel=(?P<id>[^&#]+)'
5436 _TESTS = [{
5437 'url': 'https://www.youtube.com/embed/live_stream?channel=UC2_KI6RB__jGdlnK6dvFEZA',
5438 'only_matching': True,
5439 }]
5440
5441 def _real_extract(self, url):
5442 channel_id = self._match_id(url)
5443 return self.url_result(
5444 f'https://www.youtube.com/channel/{channel_id}/live',
5445 ie=YoutubeTabIE.ie_key(), video_id=channel_id)
5446
5447
5448class YoutubeYtUserIE(InfoExtractor):
5449 IE_DESC = 'YouTube user videos; "ytuser:" prefix'
5450 IE_NAME = 'youtube:user'
5451 _VALID_URL = r'ytuser:(?P<id>.+)'
5452 _TESTS = [{
5453 'url': 'ytuser:phihag',
5454 'only_matching': True,
5455 }]
5456
5457 def _real_extract(self, url):
5458 user_id = self._match_id(url)
5459 return self.url_result(
5460 'https://www.youtube.com/user/%s/videos' % user_id,
5461 ie=YoutubeTabIE.ie_key(), video_id=user_id)
5462
5463
5464class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
5465 IE_NAME = 'youtube:favorites'
5466 IE_DESC = 'YouTube liked videos; ":ytfav" keyword (requires cookies)'
5467 _VALID_URL = r':ytfav(?:ou?rite)?s?'
5468 _LOGIN_REQUIRED = True
5469 _TESTS = [{
5470 'url': ':ytfav',
5471 'only_matching': True,
5472 }, {
5473 'url': ':ytfavorites',
5474 'only_matching': True,
5475 }]
5476
5477 def _real_extract(self, url):
5478 return self.url_result(
5479 'https://www.youtube.com/playlist?list=LL',
5480 ie=YoutubeTabIE.ie_key())
5481
5482
5483class YoutubeSearchIE(YoutubeTabBaseInfoExtractor, SearchInfoExtractor):
5484 IE_DESC = 'YouTube search'
5485 IE_NAME = 'youtube:search'
5486 _SEARCH_KEY = 'ytsearch'
5487 _SEARCH_PARAMS = 'EgIQAQ%3D%3D' # Videos only
5488 _TESTS = [{
5489 'url': 'ytsearch5:youtube-dl test video',
5490 'playlist_count': 5,
5491 'info_dict': {
5492 'id': 'youtube-dl test video',
5493 'title': 'youtube-dl test video',
5494 }
5495 }]
5496
5497
5498class YoutubeSearchDateIE(YoutubeTabBaseInfoExtractor, SearchInfoExtractor):
5499 IE_NAME = YoutubeSearchIE.IE_NAME + ':date'
5500 _SEARCH_KEY = 'ytsearchdate'
5501 IE_DESC = 'YouTube search, newest videos first'
5502 _SEARCH_PARAMS = 'CAISAhAB' # Videos only, sorted by date
5503 _TESTS = [{
5504 'url': 'ytsearchdate5:youtube-dl test video',
5505 'playlist_count': 5,
5506 'info_dict': {
5507 'id': 'youtube-dl test video',
5508 'title': 'youtube-dl test video',
5509 }
5510 }]
5511
5512
5513class YoutubeSearchURLIE(YoutubeTabBaseInfoExtractor):
5514 IE_DESC = 'YouTube search URLs with sorting and filter support'
5515 IE_NAME = YoutubeSearchIE.IE_NAME + '_url'
5516 _VALID_URL = r'https?://(?:www\.)?youtube\.com/(?:results|search)\?([^#]+&)?(?:search_query|q)=(?:[^&]+)(?:[&#]|$)'
5517 _TESTS = [{
5518 'url': 'https://www.youtube.com/results?baz=bar&search_query=youtube-dl+test+video&filters=video&lclk=video',
5519 'playlist_mincount': 5,
5520 'info_dict': {
5521 'id': 'youtube-dl test video',
5522 'title': 'youtube-dl test video',
5523 }
5524 }, {
5525 'url': 'https://www.youtube.com/results?search_query=python&sp=EgIQAg%253D%253D',
5526 'playlist_mincount': 5,
5527 'info_dict': {
5528 'id': 'python',
5529 'title': 'python',
5530 }
5531 }, {
5532 'url': 'https://www.youtube.com/results?search_query=%23cats',
5533 'playlist_mincount': 1,
5534 'info_dict': {
5535 'id': '#cats',
5536 'title': '#cats',
5537 'entries': [{
5538 'url': r're:https://(www\.)?youtube\.com/hashtag/cats',
5539 'title': '#cats',
5540 }],
5541 },
5542 }, {
5543 'url': 'https://www.youtube.com/results?q=test&sp=EgQIBBgB',
5544 'only_matching': True,
5545 }]
5546
5547 def _real_extract(self, url):
5548 qs = parse_qs(url)
5549 query = (qs.get('search_query') or qs.get('q'))[0]
5550 return self.playlist_result(self._search_results(query, qs.get('sp', (None,))[0]), query, query)
5551
5552
5553class YoutubeMusicSearchURLIE(YoutubeTabBaseInfoExtractor):
5554 IE_DESC = 'YouTube music search URLs with selectable sections (Eg: #songs)'
5555 IE_NAME = 'youtube:music:search_url'
5556 _VALID_URL = r'https?://music\.youtube\.com/search\?([^#]+&)?(?:search_query|q)=(?:[^&]+)(?:[&#]|$)'
5557 _TESTS = [{
5558 'url': 'https://music.youtube.com/search?q=royalty+free+music',
5559 'playlist_count': 16,
5560 'info_dict': {
5561 'id': 'royalty free music',
5562 'title': 'royalty free music',
5563 }
5564 }, {
5565 'url': 'https://music.youtube.com/search?q=royalty+free+music&sp=EgWKAQIIAWoKEAoQAxAEEAkQBQ%3D%3D',
5566 'playlist_mincount': 30,
5567 'info_dict': {
5568 'id': 'royalty free music - songs',
5569 'title': 'royalty free music - songs',
5570 },
5571 'params': {'extract_flat': 'in_playlist'}
5572 }, {
5573 'url': 'https://music.youtube.com/search?q=royalty+free+music#community+playlists',
5574 'playlist_mincount': 30,
5575 'info_dict': {
5576 'id': 'royalty free music - community playlists',
5577 'title': 'royalty free music - community playlists',
5578 },
5579 'params': {'extract_flat': 'in_playlist'}
5580 }]
5581
5582 _SECTIONS = {
5583 'albums': 'EgWKAQIYAWoKEAoQAxAEEAkQBQ==',
5584 'artists': 'EgWKAQIgAWoKEAoQAxAEEAkQBQ==',
5585 'community playlists': 'EgeKAQQoAEABagoQChADEAQQCRAF',
5586 'featured playlists': 'EgeKAQQoADgBagwQAxAJEAQQDhAKEAU==',
5587 'songs': 'EgWKAQIIAWoKEAoQAxAEEAkQBQ==',
5588 'videos': 'EgWKAQIQAWoKEAoQAxAEEAkQBQ==',
5589 }
5590
5591 def _real_extract(self, url):
5592 qs = parse_qs(url)
5593 query = (qs.get('search_query') or qs.get('q'))[0]
5594 params = qs.get('sp', (None,))[0]
5595 if params:
5596 section = next((k for k, v in self._SECTIONS.items() if v == params), params)
5597 else:
5598 section = compat_urllib_parse_unquote_plus((url.split('#') + [''])[1]).lower()
5599 params = self._SECTIONS.get(section)
5600 if not params:
5601 section = None
5602 title = join_nonempty(query, section, delim=' - ')
5603 return self.playlist_result(self._search_results(query, params, default_client='web_music'), title, title)
5604
5605
5606class YoutubeFeedsInfoExtractor(InfoExtractor):
5607 """
5608 Base class for feed extractors
5609 Subclasses must define the _FEED_NAME property.
5610 """
5611 _LOGIN_REQUIRED = True
5612 _TESTS = []
5613
5614 @property
5615 def IE_NAME(self):
5616 return 'youtube:%s' % self._FEED_NAME
5617
5618 def _real_extract(self, url):
5619 return self.url_result(
5620 f'https://www.youtube.com/feed/{self._FEED_NAME}', ie=YoutubeTabIE.ie_key())
5621
5622
5623class YoutubeWatchLaterIE(InfoExtractor):
5624 IE_NAME = 'youtube:watchlater'
5625 IE_DESC = 'Youtube watch later list; ":ytwatchlater" keyword (requires cookies)'
5626 _VALID_URL = r':ytwatchlater'
5627 _TESTS = [{
5628 'url': ':ytwatchlater',
5629 'only_matching': True,
5630 }]
5631
5632 def _real_extract(self, url):
5633 return self.url_result(
5634 'https://www.youtube.com/playlist?list=WL', ie=YoutubeTabIE.ie_key())
5635
5636
5637class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
5638 IE_DESC = 'YouTube recommended videos; ":ytrec" keyword'
5639 _VALID_URL = r'https?://(?:www\.)?youtube\.com/?(?:[?#]|$)|:ytrec(?:ommended)?'
5640 _FEED_NAME = 'recommended'
5641 _LOGIN_REQUIRED = False
5642 _TESTS = [{
5643 'url': ':ytrec',
5644 'only_matching': True,
5645 }, {
5646 'url': ':ytrecommended',
5647 'only_matching': True,
5648 }, {
5649 'url': 'https://youtube.com',
5650 'only_matching': True,
5651 }]
5652
5653
5654class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
5655 IE_DESC = 'YouTube subscriptions feed; ":ytsubs" keyword (requires cookies)'
5656 _VALID_URL = r':ytsub(?:scription)?s?'
5657 _FEED_NAME = 'subscriptions'
5658 _TESTS = [{
5659 'url': ':ytsubs',
5660 'only_matching': True,
5661 }, {
5662 'url': ':ytsubscriptions',
5663 'only_matching': True,
5664 }]
5665
5666
5667class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):
5668 IE_DESC = 'Youtube watch history; ":ythis" keyword (requires cookies)'
5669 _VALID_URL = r':ythis(?:tory)?'
5670 _FEED_NAME = 'history'
5671 _TESTS = [{
5672 'url': ':ythistory',
5673 'only_matching': True,
5674 }]
5675
5676
5677class YoutubeTruncatedURLIE(InfoExtractor):
5678 IE_NAME = 'youtube:truncated_url'
5679 IE_DESC = False # Do not list
5680 _VALID_URL = r'''(?x)
5681 (?:https?://)?
5682 (?:\w+\.)?[yY][oO][uU][tT][uU][bB][eE](?:-nocookie)?\.com/
5683 (?:watch\?(?:
5684 feature=[a-z_]+|
5685 annotation_id=annotation_[^&]+|
5686 x-yt-cl=[0-9]+|
5687 hl=[^&]*|
5688 t=[0-9]+
5689 )?
5690 |
5691 attribution_link\?a=[^&]+
5692 )
5693 $
5694 '''
5695
5696 _TESTS = [{
5697 'url': 'https://www.youtube.com/watch?annotation_id=annotation_3951667041',
5698 'only_matching': True,
5699 }, {
5700 'url': 'https://www.youtube.com/watch?',
5701 'only_matching': True,
5702 }, {
5703 'url': 'https://www.youtube.com/watch?x-yt-cl=84503534',
5704 'only_matching': True,
5705 }, {
5706 'url': 'https://www.youtube.com/watch?feature=foo',
5707 'only_matching': True,
5708 }, {
5709 'url': 'https://www.youtube.com/watch?hl=en-GB',
5710 'only_matching': True,
5711 }, {
5712 'url': 'https://www.youtube.com/watch?t=2372',
5713 'only_matching': True,
5714 }]
5715
5716 def _real_extract(self, url):
5717 raise ExtractorError(
5718 'Did you forget to quote the URL? Remember that & is a meta '
5719 'character in most shells, so you want to put the URL in quotes, '
5720 'like youtube-dl '
5721 '"https://www.youtube.com/watch?feature=foo&v=BaW_jenozKc" '
5722 ' or simply youtube-dl BaW_jenozKc .',
5723 expected=True)
5724
5725
5726class YoutubeClipIE(InfoExtractor):
5727 IE_NAME = 'youtube:clip'
5728 IE_DESC = False # Do not list
5729 _VALID_URL = r'https?://(?:www\.)?youtube\.com/clip/'
5730
5731 def _real_extract(self, url):
5732 self.report_warning('YouTube clips are not currently supported. The entire video will be downloaded instead')
5733 return self.url_result(url, 'Generic')
5734
5735
5736class YoutubeTruncatedIDIE(InfoExtractor):
5737 IE_NAME = 'youtube:truncated_id'
5738 IE_DESC = False # Do not list
5739 _VALID_URL = r'https?://(?:www\.)?youtube\.com/watch\?v=(?P<id>[0-9A-Za-z_-]{1,10})$'
5740
5741 _TESTS = [{
5742 'url': 'https://www.youtube.com/watch?v=N_708QY7Ob',
5743 'only_matching': True,
5744 }]
5745
5746 def _real_extract(self, url):
5747 video_id = self._match_id(url)
5748 raise ExtractorError(
5749 'Incomplete YouTube ID %s. URL %s looks truncated.' % (video_id, url),
5750 expected=True)