youtube.py 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import collections
  4. import hashlib
  5. import itertools
  6. import json
  7. import os.path
  8. import random
  9. import re
  10. import string
  11. import time
  12. import traceback
  13. from .common import InfoExtractor, SearchInfoExtractor
  14. from ..compat import (
  15. compat_chr,
  16. compat_HTTPError,
  17. compat_map as map,
  18. compat_str,
  19. compat_urllib_parse,
  20. compat_urllib_parse_parse_qs as compat_parse_qs,
  21. compat_urllib_parse_unquote_plus,
  22. compat_urllib_parse_urlparse,
  23. compat_zip as zip,
  24. )
  25. from ..jsinterp import JSInterpreter
  26. from ..utils import (
  27. bug_reports_message,
  28. clean_html,
  29. dict_get,
  30. error_to_compat_str,
  31. ExtractorError,
  32. filter_dict,
  33. float_or_none,
  34. get_first,
  35. extract_attributes,
  36. get_element_by_attribute,
  37. int_or_none,
  38. join_nonempty,
  39. js_to_json,
  40. LazyList,
  41. merge_dicts,
  42. mimetype2ext,
  43. NO_DEFAULT,
  44. parse_codecs,
  45. parse_count,
  46. parse_duration,
  47. parse_qs,
  48. qualities,
  49. remove_start,
  50. smuggle_url,
  51. str_or_none,
  52. str_to_int,
  53. T,
  54. traverse_obj,
  55. try_call,
  56. try_get,
  57. txt_or_none,
  58. unescapeHTML,
  59. unified_strdate,
  60. unsmuggle_url,
  61. update_url,
  62. update_url_query,
  63. url_or_none,
  64. urlencode_postdata,
  65. urljoin,
  66. variadic,
  67. )
  68. class YoutubeBaseInfoExtractor(InfoExtractor):
  69. """Provide base functions for Youtube extractors"""
  70. _LOGIN_URL = 'https://accounts.google.com/ServiceLogin'
  71. _TWOFACTOR_URL = 'https://accounts.google.com/signin/challenge'
  72. _LOOKUP_URL = 'https://accounts.google.com/_/signin/sl/lookup'
  73. _CHALLENGE_URL = 'https://accounts.google.com/_/signin/sl/challenge'
  74. _TFA_URL = 'https://accounts.google.com/_/signin/challenge?hl=en&TL={0}'
  75. _NETRC_MACHINE = 'youtube'
  76. # If True it will raise an error if no login info is provided
  77. _LOGIN_REQUIRED = False
  78. _PLAYLIST_ID_RE = r'(?:(?:PL|LL|EC|UU|FL|RD|UL|TL|PU|OLAK5uy_)[0-9A-Za-z-_]{10,}|RDMM)'
  79. _INNERTUBE_CLIENTS = {
  80. 'ios': {
  81. 'INNERTUBE_CONTEXT': {
  82. 'client': {
  83. 'clientName': 'IOS',
  84. 'clientVersion': '19.45.4',
  85. 'deviceMake': 'Apple',
  86. 'deviceModel': 'iPhone16,2',
  87. 'userAgent': 'com.google.ios.youtube/19.45.4 (iPhone16,2; U; CPU iOS 18_1_0 like Mac OS X;)',
  88. 'osName': 'iPhone',
  89. 'osVersion': '18.1.0.22B83',
  90. },
  91. },
  92. 'INNERTUBE_CONTEXT_CLIENT_NAME': 5,
  93. 'REQUIRE_JS_PLAYER': False,
  94. 'REQUIRE_PO_TOKEN': True,
  95. },
  96. # mweb has 'ultralow' formats
  97. # See: https://github.com/yt-dlp/yt-dlp/pull/557
  98. 'mweb': {
  99. 'INNERTUBE_CONTEXT': {
  100. 'client': {
  101. 'clientName': 'MWEB',
  102. 'clientVersion': '2.20241202.07.00',
  103. # mweb previously did not require PO Token with this UA
  104. 'userAgent': 'Mozilla/5.0 (iPad; CPU OS 16_7_10 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1,gzip(gfe)',
  105. },
  106. },
  107. 'INNERTUBE_CONTEXT_CLIENT_NAME': 2,
  108. 'REQUIRE_PO_TOKEN': True,
  109. 'SUPPORTS_COOKIES': True,
  110. },
  111. 'tv': {
  112. 'INNERTUBE_CONTEXT': {
  113. 'client': {
  114. 'clientName': 'TVHTML5',
  115. 'clientVersion': '7.20241201.18.00',
  116. },
  117. },
  118. 'INNERTUBE_CONTEXT_CLIENT_NAME': 7,
  119. 'SUPPORTS_COOKIES': True,
  120. },
  121. 'web': {
  122. 'INNERTUBE_CONTEXT': {
  123. 'client': {
  124. 'clientName': 'WEB',
  125. 'clientVersion': '2.20241126.01.00',
  126. },
  127. },
  128. 'INNERTUBE_CONTEXT_CLIENT_NAME': 1,
  129. 'REQUIRE_PO_TOKEN': True,
  130. 'SUPPORTS_COOKIES': True,
  131. },
  132. }
  133. def _login(self):
  134. """
  135. Attempt to log in to YouTube.
  136. True is returned if successful or skipped.
  137. False is returned if login failed.
  138. If _LOGIN_REQUIRED is set and no authentication was provided, an error is raised.
  139. """
  140. username, password = self._get_login_info()
  141. # No authentication to be performed
  142. if username is None:
  143. if self._LOGIN_REQUIRED and self._downloader.params.get('cookiefile') is None:
  144. raise ExtractorError('No login info available, needed for using %s.' % self.IE_NAME, expected=True)
  145. return True
  146. login_page = self._download_webpage(
  147. self._LOGIN_URL, None,
  148. note='Downloading login page',
  149. errnote='unable to fetch login page', fatal=False)
  150. if login_page is False:
  151. return
  152. login_form = self._hidden_inputs(login_page)
  153. def req(url, f_req, note, errnote):
  154. data = login_form.copy()
  155. data.update({
  156. 'pstMsg': 1,
  157. 'checkConnection': 'youtube',
  158. 'checkedDomains': 'youtube',
  159. 'hl': 'en',
  160. 'deviceinfo': '[null,null,null,[],null,"US",null,null,[],"GlifWebSignIn",null,[null,null,[]]]',
  161. 'f.req': json.dumps(f_req),
  162. 'flowName': 'GlifWebSignIn',
  163. 'flowEntry': 'ServiceLogin',
  164. # TODO: reverse actual botguard identifier generation algo
  165. 'bgRequest': '["identifier",""]',
  166. })
  167. return self._download_json(
  168. url, None, note=note, errnote=errnote,
  169. transform_source=lambda s: re.sub(r'^[^[]*', '', s),
  170. fatal=False,
  171. data=urlencode_postdata(data), headers={
  172. 'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8',
  173. 'Google-Accounts-XSRF': 1,
  174. })
  175. def warn(message):
  176. self._downloader.report_warning(message)
  177. lookup_req = [
  178. username,
  179. None, [], None, 'US', None, None, 2, False, True,
  180. [
  181. None, None,
  182. [2, 1, None, 1,
  183. 'https://accounts.google.com/ServiceLogin?passive=true&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Fnext%3D%252F%26action_handle_signin%3Dtrue%26hl%3Den%26app%3Ddesktop%26feature%3Dsign_in_button&hl=en&service=youtube&uilel=3&requestPath=%2FServiceLogin&Page=PasswordSeparationSignIn',
  184. None, [], 4],
  185. 1, [None, None, []], None, None, None, True,
  186. ],
  187. username,
  188. ]
  189. lookup_results = req(
  190. self._LOOKUP_URL, lookup_req,
  191. 'Looking up account info', 'Unable to look up account info')
  192. if lookup_results is False:
  193. return False
  194. user_hash = try_get(lookup_results, lambda x: x[0][2], compat_str)
  195. if not user_hash:
  196. warn('Unable to extract user hash')
  197. return False
  198. challenge_req = [
  199. user_hash,
  200. None, 1, None, [1, None, None, None, [password, None, True]],
  201. [
  202. None, None, [2, 1, None, 1, 'https://accounts.google.com/ServiceLogin?passive=true&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Fnext%3D%252F%26action_handle_signin%3Dtrue%26hl%3Den%26app%3Ddesktop%26feature%3Dsign_in_button&hl=en&service=youtube&uilel=3&requestPath=%2FServiceLogin&Page=PasswordSeparationSignIn', None, [], 4],
  203. 1, [None, None, []], None, None, None, True,
  204. ]]
  205. challenge_results = req(
  206. self._CHALLENGE_URL, challenge_req,
  207. 'Logging in', 'Unable to log in')
  208. if challenge_results is False:
  209. return
  210. login_res = try_get(challenge_results, lambda x: x[0][5], list)
  211. if login_res:
  212. login_msg = try_get(login_res, lambda x: x[5], compat_str)
  213. warn(
  214. 'Unable to login: %s' % 'Invalid password'
  215. if login_msg == 'INCORRECT_ANSWER_ENTERED' else login_msg)
  216. return False
  217. res = try_get(challenge_results, lambda x: x[0][-1], list)
  218. if not res:
  219. warn('Unable to extract result entry')
  220. return False
  221. login_challenge = try_get(res, lambda x: x[0][0], list)
  222. if login_challenge:
  223. challenge_str = try_get(login_challenge, lambda x: x[2], compat_str)
  224. if challenge_str == 'TWO_STEP_VERIFICATION':
  225. # SEND_SUCCESS - TFA code has been successfully sent to phone
  226. # QUOTA_EXCEEDED - reached the limit of TFA codes
  227. status = try_get(login_challenge, lambda x: x[5], compat_str)
  228. if status == 'QUOTA_EXCEEDED':
  229. warn('Exceeded the limit of TFA codes, try later')
  230. return False
  231. tl = try_get(challenge_results, lambda x: x[1][2], compat_str)
  232. if not tl:
  233. warn('Unable to extract TL')
  234. return False
  235. tfa_code = self._get_tfa_info('2-step verification code')
  236. if not tfa_code:
  237. warn(
  238. 'Two-factor authentication required. Provide it either interactively or with --twofactor <code>'
  239. '(Note that only TOTP (Google Authenticator App) codes work at this time.)')
  240. return False
  241. tfa_code = remove_start(tfa_code, 'G-')
  242. tfa_req = [
  243. user_hash, None, 2, None,
  244. [
  245. 9, None, None, None, None, None, None, None,
  246. [None, tfa_code, True, 2],
  247. ]]
  248. tfa_results = req(
  249. self._TFA_URL.format(tl), tfa_req,
  250. 'Submitting TFA code', 'Unable to submit TFA code')
  251. if tfa_results is False:
  252. return False
  253. tfa_res = try_get(tfa_results, lambda x: x[0][5], list)
  254. if tfa_res:
  255. tfa_msg = try_get(tfa_res, lambda x: x[5], compat_str)
  256. warn(
  257. 'Unable to finish TFA: %s' % 'Invalid TFA code'
  258. if tfa_msg == 'INCORRECT_ANSWER_ENTERED' else tfa_msg)
  259. return False
  260. check_cookie_url = try_get(
  261. tfa_results, lambda x: x[0][-1][2], compat_str)
  262. else:
  263. CHALLENGES = {
  264. 'LOGIN_CHALLENGE': "This device isn't recognized. For your security, Google wants to make sure it's really you.",
  265. 'USERNAME_RECOVERY': 'Please provide additional information to aid in the recovery process.',
  266. 'REAUTH': "There is something unusual about your activity. For your security, Google wants to make sure it's really you.",
  267. }
  268. challenge = CHALLENGES.get(
  269. challenge_str,
  270. '%s returned error %s.' % (self.IE_NAME, challenge_str))
  271. warn('%s\nGo to https://accounts.google.com/, login and solve a challenge.' % challenge)
  272. return False
  273. else:
  274. check_cookie_url = try_get(res, lambda x: x[2], compat_str)
  275. if not check_cookie_url:
  276. warn('Unable to extract CheckCookie URL')
  277. return False
  278. check_cookie_results = self._download_webpage(
  279. check_cookie_url, None, 'Checking cookie', fatal=False)
  280. if check_cookie_results is False:
  281. return False
  282. if 'https://myaccount.google.com/' not in check_cookie_results:
  283. warn('Unable to log in')
  284. return False
  285. return True
  286. def _initialize_consent(self):
  287. cookies = self._get_cookies('https://www.youtube.com/')
  288. if cookies.get('__Secure-3PSID'):
  289. return
  290. socs = cookies.get('SOCS')
  291. if socs and not socs.value.startswith('CAA'): # not consented
  292. return
  293. self._set_cookie('.youtube.com', 'SOCS', 'CAI', secure=True) # accept all (required for mixes)
  294. def _real_initialize(self):
  295. self._initialize_consent()
  296. if self._downloader is None:
  297. return
  298. if not self._login():
  299. return
  300. _DEFAULT_API_DATA = {
  301. 'context': {
  302. 'client': {
  303. 'clientName': 'WEB',
  304. 'clientVersion': '2.20201021.03.00',
  305. },
  306. },
  307. }
  308. _YT_INITIAL_DATA_RE = r'(?:window\s*\[\s*["\']ytInitialData["\']\s*\]|ytInitialData)\s*=\s*({.+?})\s*;'
  309. _YT_INITIAL_PLAYER_RESPONSE_RE = r'ytInitialPlayerResponse\s*=\s*({.+?})\s*;'
  310. _YT_INITIAL_BOUNDARY_RE = r'(?:var\s+meta|</script|\n)'
  311. _SAPISID = None
  312. def _generate_sapisidhash_header(self, origin='https://www.youtube.com'):
  313. time_now = round(time.time())
  314. if self._SAPISID is None:
  315. yt_cookies = self._get_cookies('https://www.youtube.com')
  316. # Sometimes SAPISID cookie isn't present but __Secure-3PAPISID is.
  317. # See: https://github.com/yt-dlp/yt-dlp/issues/393
  318. sapisid_cookie = dict_get(
  319. yt_cookies, ('__Secure-3PAPISID', 'SAPISID'))
  320. if sapisid_cookie and sapisid_cookie.value:
  321. self._SAPISID = sapisid_cookie.value
  322. self.write_debug('Extracted SAPISID cookie')
  323. # SAPISID cookie is required if not already present
  324. if not yt_cookies.get('SAPISID'):
  325. self.write_debug('Copying __Secure-3PAPISID cookie to SAPISID cookie')
  326. self._set_cookie(
  327. '.youtube.com', 'SAPISID', self._SAPISID, secure=True, expire_time=time_now + 3600)
  328. else:
  329. self._SAPISID = False
  330. if not self._SAPISID:
  331. return None
  332. # SAPISIDHASH algorithm from https://stackoverflow.com/a/32065323
  333. sapisidhash = hashlib.sha1(
  334. '{0} {1} {2}'.format(time_now, self._SAPISID, origin).encode('utf-8')).hexdigest()
  335. return 'SAPISIDHASH {0}_{1}'.format(time_now, sapisidhash)
  336. def _call_api(self, ep, query, video_id, fatal=True, headers=None,
  337. note='Downloading API JSON'):
  338. data = self._DEFAULT_API_DATA.copy()
  339. data.update(query)
  340. real_headers = {'content-type': 'application/json'}
  341. if headers:
  342. real_headers.update(headers)
  343. # was: 'AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8'
  344. api_key = self.get_param('youtube_innertube_key')
  345. return self._download_json(
  346. 'https://www.youtube.com/youtubei/v1/%s' % ep, video_id=video_id,
  347. note=note, errnote='Unable to download API page',
  348. data=json.dumps(data).encode('utf8'), fatal=fatal,
  349. headers=real_headers, query=filter_dict({
  350. 'key': api_key,
  351. 'prettyPrint': 'false',
  352. }))
  353. def _extract_yt_initial_data(self, video_id, webpage):
  354. return self._parse_json(
  355. self._search_regex(
  356. (r'%s\s*%s' % (self._YT_INITIAL_DATA_RE, self._YT_INITIAL_BOUNDARY_RE),
  357. self._YT_INITIAL_DATA_RE), webpage, 'yt initial data'),
  358. video_id)
  359. def _extract_visitor_data(self, *args):
  360. """
  361. Extract visitorData from an API response or ytcfg
  362. Appears to be used to track session state
  363. """
  364. visitor_data = self.get_param('youtube_visitor_data')
  365. if visitor_data:
  366. return visitor_data
  367. return get_first(
  368. args, (('VISITOR_DATA',
  369. ('INNERTUBE_CONTEXT', 'client', 'visitorData'),
  370. ('responseContext', 'visitorData')),
  371. T(compat_str)))
  372. def _extract_ytcfg(self, video_id, webpage):
  373. return self._parse_json(
  374. self._search_regex(
  375. r'ytcfg\.set\s*\(\s*({.+?})\s*\)\s*;', webpage, 'ytcfg',
  376. default='{}'), video_id, fatal=False) or {}
  377. def _extract_video(self, renderer):
  378. video_id = renderer['videoId']
  379. title = try_get(
  380. renderer,
  381. (lambda x: x['title']['runs'][0]['text'],
  382. lambda x: x['title']['simpleText'],
  383. lambda x: x['headline']['simpleText']), compat_str)
  384. description = try_get(
  385. renderer, lambda x: x['descriptionSnippet']['runs'][0]['text'],
  386. compat_str)
  387. duration = parse_duration(try_get(
  388. renderer, lambda x: x['lengthText']['simpleText'], compat_str))
  389. view_count_text = try_get(
  390. renderer, lambda x: x['viewCountText']['simpleText'], compat_str) or ''
  391. view_count = str_to_int(self._search_regex(
  392. r'^([\d,]+)', re.sub(r'\s', '', view_count_text),
  393. 'view count', default=None))
  394. uploader = try_get(
  395. renderer,
  396. (lambda x: x['ownerText']['runs'][0]['text'],
  397. lambda x: x['shortBylineText']['runs'][0]['text']), compat_str)
  398. return {
  399. '_type': 'url',
  400. 'ie_key': YoutubeIE.ie_key(),
  401. 'id': video_id,
  402. 'url': video_id,
  403. 'title': title,
  404. 'description': description,
  405. 'duration': duration,
  406. 'view_count': view_count,
  407. 'uploader': uploader,
  408. }
  409. @staticmethod
  410. def _extract_thumbnails(data, *path_list, **kw_final_key):
  411. """
  412. Extract thumbnails from thumbnails dict
  413. @param path_list: path list to level that contains 'thumbnails' key
  414. """
  415. final_key = kw_final_key.get('final_key', 'thumbnails')
  416. return traverse_obj(data, ((
  417. tuple(variadic(path) + (final_key, Ellipsis)
  418. for path in path_list or [()])), {
  419. 'url': ('url', T(url_or_none),
  420. # Sometimes youtube gives a wrong thumbnail URL. See:
  421. # https://github.com/yt-dlp/yt-dlp/issues/233
  422. # https://github.com/ytdl-org/youtube-dl/issues/28023
  423. T(lambda u: update_url(u, query=None) if u and 'maxresdefault' in u else u)),
  424. 'height': ('height', T(int_or_none)),
  425. 'width': ('width', T(int_or_none)),
  426. }, T(lambda t: t if t.get('url') else None)))
  427. def _search_results(self, query, params):
  428. data = {
  429. 'context': {
  430. 'client': {
  431. 'clientName': 'WEB',
  432. 'clientVersion': '2.20201021.03.00',
  433. },
  434. },
  435. 'query': query,
  436. }
  437. if params:
  438. data['params'] = params
  439. for page_num in itertools.count(1):
  440. search = self._download_json(
  441. 'https://www.youtube.com/youtubei/v1/search?key=AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8',
  442. video_id='query "%s"' % query,
  443. note='Downloading page %s' % page_num,
  444. errnote='Unable to download API page', fatal=False,
  445. data=json.dumps(data).encode('utf8'),
  446. headers={'content-type': 'application/json'})
  447. if not search:
  448. break
  449. slr_contents = try_get(
  450. search,
  451. (lambda x: x['contents']['twoColumnSearchResultsRenderer']['primaryContents']['sectionListRenderer']['contents'],
  452. lambda x: x['onResponseReceivedCommands'][0]['appendContinuationItemsAction']['continuationItems']),
  453. list)
  454. if not slr_contents:
  455. break
  456. for slr_content in slr_contents:
  457. isr_contents = try_get(
  458. slr_content,
  459. lambda x: x['itemSectionRenderer']['contents'],
  460. list)
  461. if not isr_contents:
  462. continue
  463. for content in isr_contents:
  464. if not isinstance(content, dict):
  465. continue
  466. video = content.get('videoRenderer')
  467. if not isinstance(video, dict):
  468. continue
  469. video_id = video.get('videoId')
  470. if not video_id:
  471. continue
  472. yield self._extract_video(video)
  473. token = try_get(
  474. slr_contents,
  475. lambda x: x[-1]['continuationItemRenderer']['continuationEndpoint']['continuationCommand']['token'],
  476. compat_str)
  477. if not token:
  478. break
  479. data['continuation'] = token
  480. @staticmethod
  481. def _owner_endpoints_path():
  482. return [
  483. Ellipsis,
  484. lambda k, _: k.endswith('SecondaryInfoRenderer'),
  485. ('owner', 'videoOwner'), 'videoOwnerRenderer', 'title',
  486. 'runs', Ellipsis]
  487. def _extract_channel_id(self, webpage, videodetails={}, metadata={}, renderers=[]):
  488. channel_id = None
  489. if any((videodetails, metadata, renderers)):
  490. channel_id = (
  491. traverse_obj(videodetails, 'channelId')
  492. or traverse_obj(metadata, 'externalChannelId', 'externalId')
  493. or traverse_obj(renderers,
  494. self._owner_endpoints_path() + [
  495. 'navigationEndpoint', 'browseEndpoint', 'browseId'],
  496. get_all=False)
  497. )
  498. return channel_id or self._html_search_meta(
  499. 'channelId', webpage, 'channel id', default=None)
  500. def _extract_author_var(self, webpage, var_name,
  501. videodetails={}, metadata={}, renderers=[]):
  502. result = None
  503. paths = {
  504. # (HTML, videodetails, metadata, renderers)
  505. 'name': ('content', 'author', (('ownerChannelName', None), 'title'), ['text']),
  506. 'url': ('href', 'ownerProfileUrl', 'vanityChannelUrl',
  507. ['navigationEndpoint', 'browseEndpoint', 'canonicalBaseUrl']),
  508. }
  509. if any((videodetails, metadata, renderers)):
  510. result = (
  511. traverse_obj(videodetails, paths[var_name][1], get_all=False)
  512. or traverse_obj(metadata, paths[var_name][2], get_all=False)
  513. or traverse_obj(renderers,
  514. self._owner_endpoints_path() + paths[var_name][3],
  515. get_all=False)
  516. )
  517. return result or traverse_obj(
  518. extract_attributes(self._search_regex(
  519. r'''(?s)(<link\b[^>]+\bitemprop\s*=\s*("|')%s\2[^>]*>)'''
  520. % re.escape(var_name),
  521. get_element_by_attribute('itemprop', 'author', webpage or '') or '',
  522. 'author link', default='')),
  523. paths[var_name][0])
  524. @staticmethod
  525. def _yt_urljoin(url_or_path):
  526. return urljoin('https://www.youtube.com', url_or_path)
  527. def _extract_uploader_id(self, uploader_url):
  528. return self._search_regex(
  529. r'/(?:(?:channel|user)/|(?=@))([^/?&#]+)', uploader_url or '',
  530. 'uploader id', default=None)
  531. class YoutubeIE(YoutubeBaseInfoExtractor):
  532. IE_DESC = 'YouTube.com'
  533. _INVIDIOUS_SITES = (
  534. # invidious-redirect websites
  535. r'(?:www\.)?redirect\.invidious\.io',
  536. r'(?:(?:www|dev)\.)?invidio\.us',
  537. # Invidious instances taken from https://github.com/iv-org/documentation/blob/master/Invidious-Instances.md
  538. r'(?:(?:www|no)\.)?invidiou\.sh',
  539. r'(?:(?:www|fi)\.)?invidious\.snopyta\.org',
  540. r'(?:www\.)?invidious\.kabi\.tk',
  541. r'(?:www\.)?invidious\.13ad\.de',
  542. r'(?:www\.)?invidious\.mastodon\.host',
  543. r'(?:www\.)?invidious\.zapashcanon\.fr',
  544. r'(?:www\.)?(?:invidious(?:-us)?|piped)\.kavin\.rocks',
  545. r'(?:www\.)?invidious\.tinfoil-hat\.net',
  546. r'(?:www\.)?invidious\.himiko\.cloud',
  547. r'(?:www\.)?invidious\.reallyancient\.tech',
  548. r'(?:www\.)?invidious\.tube',
  549. r'(?:www\.)?invidiou\.site',
  550. r'(?:www\.)?invidious\.site',
  551. r'(?:www\.)?invidious\.xyz',
  552. r'(?:www\.)?invidious\.nixnet\.xyz',
  553. r'(?:www\.)?invidious\.048596\.xyz',
  554. r'(?:www\.)?invidious\.drycat\.fr',
  555. r'(?:www\.)?inv\.skyn3t\.in',
  556. r'(?:www\.)?tube\.poal\.co',
  557. r'(?:www\.)?tube\.connect\.cafe',
  558. r'(?:www\.)?vid\.wxzm\.sx',
  559. r'(?:www\.)?vid\.mint\.lgbt',
  560. r'(?:www\.)?vid\.puffyan\.us',
  561. r'(?:www\.)?yewtu\.be',
  562. r'(?:www\.)?yt\.elukerio\.org',
  563. r'(?:www\.)?yt\.lelux\.fi',
  564. r'(?:www\.)?invidious\.ggc-project\.de',
  565. r'(?:www\.)?yt\.maisputain\.ovh',
  566. r'(?:www\.)?ytprivate\.com',
  567. r'(?:www\.)?invidious\.13ad\.de',
  568. r'(?:www\.)?invidious\.toot\.koeln',
  569. r'(?:www\.)?invidious\.fdn\.fr',
  570. r'(?:www\.)?watch\.nettohikari\.com',
  571. r'(?:www\.)?invidious\.namazso\.eu',
  572. r'(?:www\.)?invidious\.silkky\.cloud',
  573. r'(?:www\.)?invidious\.exonip\.de',
  574. r'(?:www\.)?invidious\.riverside\.rocks',
  575. r'(?:www\.)?invidious\.blamefran\.net',
  576. r'(?:www\.)?invidious\.moomoo\.de',
  577. r'(?:www\.)?ytb\.trom\.tf',
  578. r'(?:www\.)?yt\.cyberhost\.uk',
  579. r'(?:www\.)?kgg2m7yk5aybusll\.onion',
  580. r'(?:www\.)?qklhadlycap4cnod\.onion',
  581. r'(?:www\.)?axqzx4s6s54s32yentfqojs3x5i7faxza6xo3ehd4bzzsg2ii4fv2iid\.onion',
  582. r'(?:www\.)?c7hqkpkpemu6e7emz5b4vyz7idjgdvgaaa3dyimmeojqbgpea3xqjoid\.onion',
  583. r'(?:www\.)?fz253lmuao3strwbfbmx46yu7acac2jz27iwtorgmbqlkurlclmancad\.onion',
  584. r'(?:www\.)?invidious\.l4qlywnpwqsluw65ts7md3khrivpirse744un3x7mlskqauz5pyuzgqd\.onion',
  585. r'(?:www\.)?owxfohz4kjyv25fvlqilyxast7inivgiktls3th44jhk3ej3i7ya\.b32\.i2p',
  586. r'(?:www\.)?4l2dgddgsrkf2ous66i6seeyi6etzfgrue332grh2n7madpwopotugyd\.onion',
  587. r'(?:www\.)?w6ijuptxiku4xpnnaetxvnkc5vqcdu7mgns2u77qefoixi63vbvnpnqd\.onion',
  588. r'(?:www\.)?kbjggqkzv65ivcqj6bumvp337z6264huv5kpkwuv6gu5yjiskvan7fad\.onion',
  589. r'(?:www\.)?grwp24hodrefzvjjuccrkw3mjq4tzhaaq32amf33dzpmuxe7ilepcmad\.onion',
  590. r'(?:www\.)?hpniueoejy4opn7bc4ftgazyqjoeqwlvh2uiku2xqku6zpoa4bf5ruid\.onion',
  591. )
  592. _VALID_URL = r"""(?x)^
  593. (
  594. (?:https?://|//) # http(s):// or protocol-independent URL
  595. (?:(?:(?:(?:\w+\.)?[yY][oO][uU][tT][uU][bB][eE](?:-nocookie|kids)?\.com|
  596. (?:www\.)?deturl\.com/www\.youtube\.com|
  597. (?:www\.)?pwnyoutube\.com|
  598. (?:www\.)?hooktube\.com|
  599. (?:www\.)?yourepeat\.com|
  600. tube\.majestyc\.net|
  601. %(invidious)s|
  602. youtube\.googleapis\.com)/ # the various hostnames, with wildcard subdomains
  603. (?:.*?\#/)? # handle anchor (#/) redirect urls
  604. (?: # the various things that can precede the ID:
  605. (?:(?:v|embed|e)/(?!videoseries)) # v/ or embed/ or e/
  606. |shorts/
  607. |(?: # or the v= param in all its forms
  608. (?:(?:watch|movie)(?:_popup)?(?:\.php)?/?)? # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
  609. (?:\?|\#!?) # the params delimiter ? or # or #!
  610. (?:.*?[&;])?? # any other preceding param (like /?s=tuff&v=xxxx or ?s=tuff&amp;v=V36LpHqtcDY)
  611. v=
  612. )
  613. ))
  614. |(?:
  615. youtu\.be| # just youtu.be/xxxx
  616. vid\.plus| # or vid.plus/xxxx
  617. zwearz\.com/watch| # or zwearz.com/watch/xxxx
  618. %(invidious)s
  619. )/
  620. |(?:www\.)?cleanvideosearch\.com/media/action/yt/watch\?videoId=
  621. )
  622. )? # all until now is optional -> you can pass the naked ID
  623. (?P<id>[0-9A-Za-z_-]{11}) # here is it! the YouTube video ID
  624. (?(1).+)? # if we found the ID, everything can follow
  625. $""" % {
  626. 'invidious': '|'.join(_INVIDIOUS_SITES),
  627. }
  628. _PLAYER_INFO_RE = (
  629. r'/s/player/(?P<id>[a-zA-Z0-9_-]{8,})/player',
  630. 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$',
  631. r'\b(?P<id>vfl[a-zA-Z0-9_-]+)\b.*?\.js$',
  632. )
  633. _SUBTITLE_FORMATS = ('json3', 'srv1', 'srv2', 'srv3', 'ttml', 'vtt')
  634. _GEO_BYPASS = False
  635. IE_NAME = 'youtube'
  636. _TESTS = [
  637. {
  638. 'url': 'https://www.youtube.com/watch?v=BaW_jenozKc&t=1s&end=9',
  639. 'info_dict': {
  640. 'id': 'BaW_jenozKc',
  641. 'ext': 'mp4',
  642. 'title': 'youtube-dl test video "\'/\\ä↭𝕐',
  643. 'uploader': 'Philipp Hagemeister',
  644. 'uploader_id': '@PhilippHagemeister',
  645. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@PhilippHagemeister',
  646. 'channel': 'Philipp Hagemeister',
  647. 'channel_id': 'UCLqxVugv74EIW3VWh2NOa3Q',
  648. 'channel_url': r're:https?://(?:www\.)?youtube\.com/channel/UCLqxVugv74EIW3VWh2NOa3Q',
  649. 'upload_date': '20121002',
  650. 'description': 'test chars: "\'/\\ä↭𝕐\ntest URL: https://github.com/rg3/youtube-dl/issues/1892\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de .',
  651. 'categories': ['Science & Technology'],
  652. 'tags': ['youtube-dl'],
  653. 'duration': 10,
  654. 'view_count': int,
  655. 'like_count': int,
  656. 'thumbnail': 'https://i.ytimg.com/vi/BaW_jenozKc/maxresdefault.jpg',
  657. 'start_time': 1,
  658. 'end_time': 9,
  659. },
  660. },
  661. {
  662. 'url': '//www.YouTube.com/watch?v=yZIXLfi8CZQ',
  663. 'note': 'Embed-only video (#1746)',
  664. 'info_dict': {
  665. 'id': 'yZIXLfi8CZQ',
  666. 'ext': 'mp4',
  667. 'upload_date': '20120608',
  668. 'title': 'Principal Sexually Assaults A Teacher - Episode 117 - 8th June 2012',
  669. 'description': 'md5:09b78bd971f1e3e289601dfba15ca4f7',
  670. 'uploader': 'SET India',
  671. 'uploader_id': 'setindia',
  672. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/setindia',
  673. 'age_limit': 18,
  674. },
  675. 'skip': 'Private video',
  676. },
  677. {
  678. 'url': 'https://www.youtube.com/watch?v=BaW_jenozKc&v=yZIXLfi8CZQ',
  679. 'note': 'Use the first video ID in the URL',
  680. 'info_dict': {
  681. 'id': 'BaW_jenozKc',
  682. 'ext': 'mp4',
  683. 'title': 'youtube-dl test video "\'/\\ä↭𝕐',
  684. 'uploader': 'Philipp Hagemeister',
  685. 'uploader_id': '@PhilippHagemeister',
  686. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@PhilippHagemeister',
  687. 'upload_date': '20121002',
  688. 'description': 'test chars: "\'/\\ä↭𝕐\ntest URL: https://github.com/rg3/youtube-dl/issues/1892\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de .',
  689. 'categories': ['Science & Technology'],
  690. 'tags': ['youtube-dl'],
  691. 'duration': 10,
  692. 'view_count': int,
  693. 'like_count': int,
  694. },
  695. 'params': {
  696. 'skip_download': True,
  697. },
  698. },
  699. {
  700. 'url': 'https://www.youtube.com/watch?v=a9LDPn-MO4I',
  701. 'note': '256k DASH audio (format 141) via DASH manifest',
  702. 'info_dict': {
  703. 'id': 'a9LDPn-MO4I',
  704. 'ext': 'm4a',
  705. 'upload_date': '20121002',
  706. 'uploader_id': '8KVIDEO',
  707. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/8KVIDEO',
  708. 'description': '',
  709. 'uploader': '8KVIDEO',
  710. 'title': 'UHDTV TEST 8K VIDEO.mp4',
  711. },
  712. 'params': {
  713. 'youtube_include_dash_manifest': True,
  714. 'format': '141',
  715. },
  716. 'skip': 'format 141 not served any more',
  717. },
  718. # DASH manifest with encrypted signature
  719. {
  720. 'url': 'https://www.youtube.com/watch?v=IB3lcPjvWLA',
  721. 'info_dict': {
  722. 'id': 'IB3lcPjvWLA',
  723. 'ext': 'm4a',
  724. 'title': 'Afrojack, Spree Wilson - The Spark (Official Music Video) ft. Spree Wilson',
  725. 'description': 'md5:8f5e2b82460520b619ccac1f509d43bf',
  726. 'duration': 244,
  727. 'uploader': 'AfrojackVEVO',
  728. 'uploader_id': '@AfrojackVEVO',
  729. 'upload_date': '20131011',
  730. 'abr': 129.495,
  731. },
  732. 'params': {
  733. 'youtube_include_dash_manifest': True,
  734. 'format': '141/bestaudio[ext=m4a]',
  735. },
  736. },
  737. # Controversy video
  738. {
  739. 'url': 'https://www.youtube.com/watch?v=T4XJQO3qol8',
  740. 'info_dict': {
  741. 'id': 'T4XJQO3qol8',
  742. 'ext': 'mp4',
  743. 'duration': 219,
  744. 'upload_date': '20100909',
  745. 'uploader': 'Amazing Atheist',
  746. 'uploader_id': '@theamazingatheist',
  747. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@theamazingatheist',
  748. 'title': 'Burning Everyone\'s Koran',
  749. 'description': 'SUBSCRIBE: http://www.youtube.com/saturninefilms \r\n\r\nEven Obama has taken a stand against freedom on this issue: http://www.huffingtonpost.com/2010/09/09/obama-gma-interview-quran_n_710282.html',
  750. },
  751. },
  752. # Age-gated videos
  753. {
  754. 'note': 'Age-gated video (No vevo, embed allowed)',
  755. 'url': 'https://youtube.com/watch?v=HtVdAasjOgU',
  756. 'info_dict': {
  757. 'id': 'HtVdAasjOgU',
  758. 'ext': 'mp4',
  759. 'title': 'The Witcher 3: Wild Hunt - The Sword Of Destiny Trailer',
  760. 'description': r're:(?s).{100,}About the Game\n.*?The Witcher 3: Wild Hunt.{100,}',
  761. 'duration': 142,
  762. 'uploader': 'The Witcher',
  763. 'uploader_id': '@thewitcher',
  764. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@thewitcher',
  765. 'upload_date': '20140605',
  766. 'thumbnail': 'https://i.ytimg.com/vi/HtVdAasjOgU/maxresdefault.jpg',
  767. 'age_limit': 18,
  768. 'categories': ['Gaming'],
  769. 'tags': 'count:17',
  770. 'channel': 'The Witcher',
  771. 'channel_url': 'https://www.youtube.com/channel/UCzybXLxv08IApdjdN0mJhEg',
  772. 'channel_id': 'UCzybXLxv08IApdjdN0mJhEg',
  773. 'view_count': int,
  774. 'like_count': int,
  775. },
  776. },
  777. {
  778. 'note': 'Age-gated video with embed allowed in public site',
  779. 'url': 'https://youtube.com/watch?v=HsUATh_Nc2U',
  780. 'info_dict': {
  781. 'id': 'HsUATh_Nc2U',
  782. 'ext': 'mp4',
  783. 'title': 'Godzilla 2 (Official Video)',
  784. 'description': 'md5:bf77e03fcae5529475e500129b05668a',
  785. 'duration': 177,
  786. 'uploader': 'FlyingKitty',
  787. 'uploader_id': '@FlyingKitty900',
  788. 'upload_date': '20200408',
  789. 'thumbnail': 'https://i.ytimg.com/vi/HsUATh_Nc2U/maxresdefault.jpg',
  790. 'age_limit': 18,
  791. 'categories': ['Entertainment'],
  792. 'tags': ['Flyingkitty', 'godzilla 2'],
  793. 'channel': 'FlyingKitty',
  794. 'channel_url': 'https://www.youtube.com/channel/UCYQT13AtrJC0gsM1far_zJg',
  795. 'channel_id': 'UCYQT13AtrJC0gsM1far_zJg',
  796. 'view_count': int,
  797. 'like_count': int,
  798. },
  799. },
  800. {
  801. 'note': 'Age-gated video embeddable only with clientScreen=EMBED',
  802. 'url': 'https://youtube.com/watch?v=Tq92D6wQ1mg',
  803. 'info_dict': {
  804. 'id': 'Tq92D6wQ1mg',
  805. 'ext': 'mp4',
  806. 'title': '[MMD] Adios - EVERGLOW [+Motion DL]',
  807. 'description': 'md5:17eccca93a786d51bc67646756894066',
  808. 'duration': 106,
  809. 'uploader': 'Projekt Melody',
  810. 'uploader_id': '@ProjektMelody',
  811. 'upload_date': '20191227',
  812. 'age_limit': 18,
  813. 'thumbnail': 'https://i.ytimg.com/vi/Tq92D6wQ1mg/sddefault.jpg',
  814. 'tags': ['mmd', 'dance', 'mikumikudance', 'kpop', 'vtuber'],
  815. 'categories': ['Entertainment'],
  816. 'channel': 'Projekt Melody',
  817. 'channel_url': 'https://www.youtube.com/channel/UC1yoRdFoFJaCY-AGfD9W0wQ',
  818. 'channel_id': 'UC1yoRdFoFJaCY-AGfD9W0wQ',
  819. 'view_count': int,
  820. 'like_count': int,
  821. },
  822. },
  823. {
  824. 'note': 'Non-Age-gated non-embeddable video',
  825. 'url': 'https://youtube.com/watch?v=MeJVWBSsPAY',
  826. 'info_dict': {
  827. 'id': 'MeJVWBSsPAY',
  828. 'ext': 'mp4',
  829. 'title': 'OOMPH! - Such Mich Find Mich (Lyrics)',
  830. 'description': 'Fan Video. Music & Lyrics by OOMPH!.',
  831. 'duration': 210,
  832. 'upload_date': '20130730',
  833. 'uploader': 'Herr Lurik',
  834. 'uploader_id': '@HerrLurik',
  835. 'uploader_url': 'http://www.youtube.com/@HerrLurik',
  836. 'age_limit': 0,
  837. 'thumbnail': 'https://i.ytimg.com/vi/MeJVWBSsPAY/hqdefault.jpg',
  838. 'tags': ['oomph', 'such mich find mich', 'lyrics', 'german industrial', 'musica industrial'],
  839. 'categories': ['Music'],
  840. 'channel': 'Herr Lurik',
  841. 'channel_url': 'https://www.youtube.com/channel/UCdR3RSDPqub28LjZx0v9-aA',
  842. 'channel_id': 'UCdR3RSDPqub28LjZx0v9-aA',
  843. 'artist': 'OOMPH!',
  844. 'view_count': int,
  845. 'like_count': int,
  846. },
  847. },
  848. {
  849. 'note': 'Non-bypassable age-gated video',
  850. 'url': 'https://youtube.com/watch?v=Cr381pDsSsA',
  851. 'only_matching': True,
  852. },
  853. {
  854. 'note': 'Age-gated video only available with authentication (not via embed workaround)',
  855. 'url': 'XgnwCQzjau8',
  856. 'only_matching': True,
  857. 'skip': '''This video has been removed for violating YouTube's Community Guidelines''',
  858. },
  859. # video_info is None (https://github.com/ytdl-org/youtube-dl/issues/4421)
  860. # YouTube Red ad is not captured for creator
  861. {
  862. 'url': '__2ABJjxzNo',
  863. 'info_dict': {
  864. 'id': '__2ABJjxzNo',
  865. 'ext': 'mp4',
  866. 'duration': 266,
  867. 'upload_date': '20100430',
  868. 'uploader_id': '@deadmau5',
  869. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@deadmau5',
  870. 'creator': 'deadmau5',
  871. 'description': 'md5:6cbcd3a92ce1bc676fc4d6ab4ace2336',
  872. 'uploader': 'deadmau5',
  873. 'title': 'Deadmau5 - Some Chords (HD)',
  874. 'alt_title': 'Some Chords',
  875. },
  876. 'expected_warnings': [
  877. 'DASH manifest missing',
  878. ],
  879. },
  880. # Olympics (https://github.com/ytdl-org/youtube-dl/issues/4431)
  881. {
  882. 'url': 'lqQg6PlCWgI',
  883. 'info_dict': {
  884. 'id': 'lqQg6PlCWgI',
  885. 'ext': 'mp4',
  886. 'title': 'Hockey - Women - GER-AUS - London 2012 Olympic Games',
  887. 'description': r're:(?s)(?:.+\s)?HO09 - Women - GER-AUS - Hockey - 31 July 2012 - London 2012 Olympic Games\s*',
  888. 'duration': 6085,
  889. 'upload_date': '20150827',
  890. 'uploader_id': '@Olympics',
  891. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@Olympics',
  892. 'uploader': r're:Olympics?',
  893. 'age_limit': 0,
  894. 'thumbnail': 'https://i.ytimg.com/vi/lqQg6PlCWgI/maxresdefault.jpg',
  895. 'categories': ['Sports'],
  896. 'tags': ['Hockey', '2012-07-31', '31 July 2012', 'Riverbank Arena', 'Session', 'Olympics', 'Olympic Games', 'London 2012', '2012 Summer Olympics', 'Summer Games'],
  897. 'channel': 'Olympics',
  898. 'channel_url': 'https://www.youtube.com/channel/UCTl3QQTvqHFjurroKxexy2Q',
  899. 'channel_id': 'UCTl3QQTvqHFjurroKxexy2Q',
  900. 'view_count': int,
  901. 'like_count': int,
  902. },
  903. },
  904. # Non-square pixels
  905. {
  906. 'url': 'https://www.youtube.com/watch?v=_b-2C3KPAM0',
  907. 'info_dict': {
  908. 'id': '_b-2C3KPAM0',
  909. 'ext': 'mp4',
  910. 'stretched_ratio': 16 / 9.,
  911. 'duration': 85,
  912. 'upload_date': '20110310',
  913. 'uploader_id': '@AllenMeow',
  914. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@AllenMeow',
  915. 'description': 'made by Wacom from Korea | 字幕&加油添醋 by TY\'s Allen | 感謝heylisa00cavey1001同學熱情提供梗及翻譯',
  916. 'uploader': '孫ᄋᄅ',
  917. 'title': '[A-made] 變態妍字幕版 太妍 我就是這樣的人',
  918. },
  919. },
  920. # url_encoded_fmt_stream_map is empty string
  921. {
  922. 'url': 'qEJwOuvDf7I',
  923. 'info_dict': {
  924. 'id': 'qEJwOuvDf7I',
  925. 'ext': 'webm',
  926. 'title': 'Обсуждение судебной практики по выборам 14 сентября 2014 года в Санкт-Петербурге',
  927. 'description': '',
  928. 'upload_date': '20150404',
  929. 'uploader_id': 'spbelect',
  930. 'uploader': 'Наблюдатели Петербурга',
  931. },
  932. 'params': {
  933. 'skip_download': 'requires avconv',
  934. },
  935. 'skip': 'This live event has ended.',
  936. },
  937. # Extraction from multiple DASH manifests (https://github.com/ytdl-org/youtube-dl/pull/6097)
  938. {
  939. 'url': 'https://www.youtube.com/watch?v=FIl7x6_3R5Y',
  940. 'info_dict': {
  941. 'id': 'FIl7x6_3R5Y',
  942. 'ext': 'webm',
  943. 'title': 'md5:7b81415841e02ecd4313668cde88737a',
  944. 'description': 'md5:116377fd2963b81ec4ce64b542173306',
  945. 'duration': 220,
  946. 'upload_date': '20150625',
  947. 'uploader_id': 'dorappi2000',
  948. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/dorappi2000',
  949. 'uploader': 'dorappi2000',
  950. 'formats': 'mincount:31',
  951. },
  952. 'skip': 'not actual any more',
  953. },
  954. # DASH manifest with segment_list
  955. {
  956. 'url': 'https://www.youtube.com/embed/CsmdDsKjzN8',
  957. 'md5': '8ce563a1d667b599d21064e982ab9e31',
  958. 'info_dict': {
  959. 'id': 'CsmdDsKjzN8',
  960. 'ext': 'mp4',
  961. 'upload_date': '20150501', # According to '<meta itemprop="datePublished"', but in other places it's 20150510
  962. 'uploader': 'Airtek',
  963. 'description': 'Retransmisión en directo de la XVIII media maratón de Zaragoza.',
  964. 'uploader_id': 'UCzTzUmjXxxacNnL8I3m4LnQ',
  965. 'title': 'Retransmisión XVIII Media maratón Zaragoza 2015',
  966. },
  967. 'params': {
  968. 'youtube_include_dash_manifest': True,
  969. 'format': '135', # bestvideo
  970. },
  971. 'skip': 'This live event has ended.',
  972. },
  973. {
  974. # Multifeed videos (multiple cameras), URL is for Main Camera
  975. 'url': 'https://www.youtube.com/watch?v=jvGDaLqkpTg',
  976. 'info_dict': {
  977. 'id': 'jvGDaLqkpTg',
  978. 'title': 'Tom Clancy Free Weekend Rainbow Whatever',
  979. 'description': 'md5:e03b909557865076822aa169218d6a5d',
  980. },
  981. 'playlist': [{
  982. 'info_dict': {
  983. 'id': 'jvGDaLqkpTg',
  984. 'ext': 'mp4',
  985. 'title': 'Tom Clancy Free Weekend Rainbow Whatever (Main Camera)',
  986. 'description': 'md5:e03b909557865076822aa169218d6a5d',
  987. 'duration': 10643,
  988. 'upload_date': '20161111',
  989. 'uploader': 'Team PGP',
  990. 'uploader_id': 'UChORY56LMMETTuGjXaJXvLg',
  991. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UChORY56LMMETTuGjXaJXvLg',
  992. },
  993. }, {
  994. 'info_dict': {
  995. 'id': '3AKt1R1aDnw',
  996. 'ext': 'mp4',
  997. 'title': 'Tom Clancy Free Weekend Rainbow Whatever (Camera 2)',
  998. 'description': 'md5:e03b909557865076822aa169218d6a5d',
  999. 'duration': 10991,
  1000. 'upload_date': '20161111',
  1001. 'uploader': 'Team PGP',
  1002. 'uploader_id': 'UChORY56LMMETTuGjXaJXvLg',
  1003. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UChORY56LMMETTuGjXaJXvLg',
  1004. },
  1005. }, {
  1006. 'info_dict': {
  1007. 'id': 'RtAMM00gpVc',
  1008. 'ext': 'mp4',
  1009. 'title': 'Tom Clancy Free Weekend Rainbow Whatever (Camera 3)',
  1010. 'description': 'md5:e03b909557865076822aa169218d6a5d',
  1011. 'duration': 10995,
  1012. 'upload_date': '20161111',
  1013. 'uploader': 'Team PGP',
  1014. 'uploader_id': 'UChORY56LMMETTuGjXaJXvLg',
  1015. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UChORY56LMMETTuGjXaJXvLg',
  1016. },
  1017. }, {
  1018. 'info_dict': {
  1019. 'id': '6N2fdlP3C5U',
  1020. 'ext': 'mp4',
  1021. 'title': 'Tom Clancy Free Weekend Rainbow Whatever (Camera 4)',
  1022. 'description': 'md5:e03b909557865076822aa169218d6a5d',
  1023. 'duration': 10990,
  1024. 'upload_date': '20161111',
  1025. 'uploader': 'Team PGP',
  1026. 'uploader_id': 'UChORY56LMMETTuGjXaJXvLg',
  1027. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UChORY56LMMETTuGjXaJXvLg',
  1028. },
  1029. }],
  1030. 'params': {
  1031. 'skip_download': True,
  1032. },
  1033. 'skip': 'Not multifeed any more',
  1034. },
  1035. {
  1036. # Multifeed video with comma in title (see https://github.com/ytdl-org/youtube-dl/issues/8536)
  1037. 'url': 'https://www.youtube.com/watch?v=gVfLd0zydlo',
  1038. 'info_dict': {
  1039. 'id': 'gVfLd0zydlo',
  1040. 'title': 'DevConf.cz 2016 Day 2 Workshops 1 14:00 - 15:30',
  1041. },
  1042. 'playlist_count': 2,
  1043. 'skip': 'Not multifeed any more',
  1044. },
  1045. {
  1046. 'url': 'https://vid.plus/FlRa-iH7PGw',
  1047. 'only_matching': True,
  1048. },
  1049. {
  1050. 'url': 'https://zwearz.com/watch/9lWxNJF-ufM/electra-woman-dyna-girl-official-trailer-grace-helbig.html',
  1051. 'only_matching': True,
  1052. },
  1053. {
  1054. # Title with JS-like syntax "};" (see https://github.com/ytdl-org/youtube-dl/issues/7468)
  1055. # Also tests cut-off URL expansion in video description (see
  1056. # https://github.com/ytdl-org/youtube-dl/issues/1892,
  1057. # https://github.com/ytdl-org/youtube-dl/issues/8164)
  1058. 'url': 'https://www.youtube.com/watch?v=lsguqyKfVQg',
  1059. 'info_dict': {
  1060. 'id': 'lsguqyKfVQg',
  1061. 'ext': 'mp4',
  1062. 'title': '{dark walk}; Loki/AC/Dishonored; collab w/Elflover21',
  1063. 'alt_title': 'Dark Walk',
  1064. 'description': 'md5:8085699c11dc3f597ce0410b0dcbb34a',
  1065. 'duration': 133,
  1066. 'upload_date': '20151119',
  1067. 'uploader_id': '@IronSoulElf',
  1068. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@IronSoulElf',
  1069. 'uploader': 'IronSoulElf',
  1070. 'creator': r're:Todd Haberman[;,]\s+Daniel Law Heath and Aaron Kaplan',
  1071. 'track': 'Dark Walk',
  1072. 'artist': r're:Todd Haberman[;,]\s+Daniel Law Heath and Aaron Kaplan',
  1073. 'album': 'Position Music - Production Music Vol. 143 - Dark Walk',
  1074. },
  1075. 'params': {
  1076. 'skip_download': True,
  1077. },
  1078. },
  1079. {
  1080. # Tags with '};' (see https://github.com/ytdl-org/youtube-dl/issues/7468)
  1081. 'url': 'https://www.youtube.com/watch?v=Ms7iBXnlUO8',
  1082. 'only_matching': True,
  1083. },
  1084. {
  1085. # Video with yt:stretch=17:0
  1086. 'url': 'https://www.youtube.com/watch?v=Q39EVAstoRM',
  1087. 'info_dict': {
  1088. 'id': 'Q39EVAstoRM',
  1089. 'ext': 'mp4',
  1090. 'title': 'Clash Of Clans#14 Dicas De Ataque Para CV 4',
  1091. 'description': 'md5:ee18a25c350637c8faff806845bddee9',
  1092. 'upload_date': '20151107',
  1093. 'uploader_id': 'UCCr7TALkRbo3EtFzETQF1LA',
  1094. 'uploader': 'CH GAMER DROID',
  1095. },
  1096. 'params': {
  1097. 'skip_download': True,
  1098. },
  1099. 'skip': 'This video does not exist.',
  1100. },
  1101. {
  1102. # Video with incomplete 'yt:stretch=16:'
  1103. 'url': 'https://www.youtube.com/watch?v=FRhJzUSJbGI',
  1104. 'only_matching': True,
  1105. },
  1106. {
  1107. # Video licensed under Creative Commons
  1108. 'url': 'https://www.youtube.com/watch?v=M4gD1WSo5mA',
  1109. 'info_dict': {
  1110. 'id': 'M4gD1WSo5mA',
  1111. 'ext': 'mp4',
  1112. 'title': 'md5:e41008789470fc2533a3252216f1c1d1',
  1113. 'description': 'md5:a677553cf0840649b731a3024aeff4cc',
  1114. 'duration': 721,
  1115. 'upload_date': '20150127',
  1116. 'uploader_id': '@BKCHarvard',
  1117. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@BKCHarvard',
  1118. 'uploader': 'The Berkman Klein Center for Internet & Society',
  1119. 'license': 'Creative Commons Attribution license (reuse allowed)',
  1120. },
  1121. 'params': {
  1122. 'skip_download': True,
  1123. },
  1124. },
  1125. {
  1126. # Channel-like uploader_url
  1127. 'url': 'https://www.youtube.com/watch?v=eQcmzGIKrzg',
  1128. 'info_dict': {
  1129. 'id': 'eQcmzGIKrzg',
  1130. 'ext': 'mp4',
  1131. 'title': 'Democratic Socialism and Foreign Policy | Bernie Sanders',
  1132. 'description': 'md5:13a2503d7b5904ef4b223aa101628f39',
  1133. 'duration': 4060,
  1134. 'upload_date': '20151119',
  1135. 'uploader': 'Bernie Sanders',
  1136. 'uploader_id': '@BernieSanders',
  1137. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@BernieSanders',
  1138. 'license': 'Creative Commons Attribution license (reuse allowed)',
  1139. },
  1140. 'params': {
  1141. 'skip_download': True,
  1142. },
  1143. },
  1144. {
  1145. 'url': 'https://www.youtube.com/watch?feature=player_embedded&amp;amp;v=V36LpHqtcDY',
  1146. 'only_matching': True,
  1147. },
  1148. {
  1149. # YouTube Red paid video (https://github.com/ytdl-org/youtube-dl/issues/10059)
  1150. 'url': 'https://www.youtube.com/watch?v=i1Ko8UG-Tdo',
  1151. 'only_matching': True,
  1152. },
  1153. {
  1154. # Rental video preview
  1155. 'url': 'https://www.youtube.com/watch?v=yYr8q0y5Jfg',
  1156. 'info_dict': {
  1157. 'id': 'uGpuVWrhIzE',
  1158. 'ext': 'mp4',
  1159. 'title': 'Piku - Trailer',
  1160. 'description': 'md5:c36bd60c3fd6f1954086c083c72092eb',
  1161. 'upload_date': '20150811',
  1162. 'uploader': 'FlixMatrix',
  1163. 'uploader_id': 'FlixMatrixKaravan',
  1164. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/FlixMatrixKaravan',
  1165. 'license': 'Standard YouTube License',
  1166. },
  1167. 'params': {
  1168. 'skip_download': True,
  1169. },
  1170. 'skip': 'This video is not available.',
  1171. },
  1172. {
  1173. # YouTube Red video with episode data
  1174. 'url': 'https://www.youtube.com/watch?v=iqKdEhx-dD4',
  1175. 'info_dict': {
  1176. 'id': 'iqKdEhx-dD4',
  1177. 'ext': 'mp4',
  1178. 'title': 'Isolation - Mind Field (Ep 1)',
  1179. 'description': 'md5:f540112edec5d09fc8cc752d3d4ba3cd',
  1180. 'duration': 2085,
  1181. 'upload_date': '20170118',
  1182. 'uploader': 'Vsauce',
  1183. 'uploader_id': '@Vsauce',
  1184. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@Vsauce',
  1185. 'series': 'Mind Field',
  1186. 'season_number': 1,
  1187. 'episode_number': 1,
  1188. },
  1189. 'params': {
  1190. 'skip_download': True,
  1191. },
  1192. 'expected_warnings': [
  1193. 'Skipping DASH manifest',
  1194. ],
  1195. },
  1196. {
  1197. # The following content has been identified by the YouTube community
  1198. # as inappropriate or offensive to some audiences.
  1199. 'url': 'https://www.youtube.com/watch?v=6SJNVb0GnPI',
  1200. 'info_dict': {
  1201. 'id': '6SJNVb0GnPI',
  1202. 'ext': 'mp4',
  1203. 'title': 'Race Differences in Intelligence',
  1204. 'description': 'md5:5d161533167390427a1f8ee89a1fc6f1',
  1205. 'duration': 965,
  1206. 'upload_date': '20140124',
  1207. 'uploader': 'New Century Foundation',
  1208. 'uploader_id': 'UCEJYpZGqgUob0zVVEaLhvVg',
  1209. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UCEJYpZGqgUob0zVVEaLhvVg',
  1210. },
  1211. 'params': {
  1212. 'skip_download': True,
  1213. },
  1214. 'skip': 'This video has been removed for violating YouTube\'s policy on hate speech.',
  1215. },
  1216. {
  1217. # itag 212
  1218. 'url': '1t24XAntNCY',
  1219. 'only_matching': True,
  1220. },
  1221. {
  1222. # geo restricted to JP
  1223. 'url': 'sJL6WA-aGkQ',
  1224. 'only_matching': True,
  1225. },
  1226. {
  1227. 'url': 'https://invidio.us/watch?v=BaW_jenozKc',
  1228. 'only_matching': True,
  1229. },
  1230. {
  1231. 'url': 'https://redirect.invidious.io/watch?v=BaW_jenozKc',
  1232. 'only_matching': True,
  1233. },
  1234. {
  1235. # from https://nitter.pussthecat.org/YouTube/status/1360363141947944964#m
  1236. 'url': 'https://redirect.invidious.io/Yh0AhrY9GjA',
  1237. 'only_matching': True,
  1238. },
  1239. {
  1240. # DRM protected
  1241. 'url': 'https://www.youtube.com/watch?v=s7_qI6_mIXc',
  1242. 'only_matching': True,
  1243. },
  1244. {
  1245. # Video with unsupported adaptive stream type formats
  1246. 'url': 'https://www.youtube.com/watch?v=Z4Vy8R84T1U',
  1247. 'info_dict': {
  1248. 'id': 'Z4Vy8R84T1U',
  1249. 'ext': 'mp4',
  1250. 'title': 'saman SMAN 53 Jakarta(Sancety) opening COFFEE4th at SMAN 53 Jakarta',
  1251. 'description': 'md5:d41d8cd98f00b204e9800998ecf8427e',
  1252. 'duration': 433,
  1253. 'upload_date': '20130923',
  1254. 'uploader': 'Amelia Putri Harwita',
  1255. 'uploader_id': 'UCpOxM49HJxmC1qCalXyB3_Q',
  1256. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UCpOxM49HJxmC1qCalXyB3_Q',
  1257. 'formats': 'maxcount:10',
  1258. },
  1259. 'params': {
  1260. 'skip_download': True,
  1261. 'youtube_include_dash_manifest': False,
  1262. },
  1263. 'skip': 'not actual any more',
  1264. },
  1265. {
  1266. # Youtube Music Auto-generated description
  1267. 'url': 'https://music.youtube.com/watch?v=MgNrAu2pzNs',
  1268. 'info_dict': {
  1269. 'id': 'MgNrAu2pzNs',
  1270. 'ext': 'mp4',
  1271. 'title': 'Voyeur Girl',
  1272. 'description': 'md5:7ae382a65843d6df2685993e90a8628f',
  1273. 'upload_date': '20190312',
  1274. 'uploader': 'Stephen - Topic',
  1275. 'uploader_id': 'UC-pWHpBjdGG69N9mM2auIAA',
  1276. 'artist': 'Stephen',
  1277. 'track': 'Voyeur Girl',
  1278. 'album': 'it\'s too much love to know my dear',
  1279. 'release_date': '20190313',
  1280. 'release_year': 2019,
  1281. },
  1282. 'params': {
  1283. 'skip_download': True,
  1284. },
  1285. },
  1286. {
  1287. 'url': 'https://www.youtubekids.com/watch?v=3b8nCWDgZ6Q',
  1288. 'only_matching': True,
  1289. },
  1290. {
  1291. # invalid -> valid video id redirection
  1292. 'url': 'DJztXj2GPfl',
  1293. 'info_dict': {
  1294. 'id': 'DJztXj2GPfk',
  1295. 'ext': 'mp4',
  1296. 'title': 'Panjabi MC - Mundian To Bach Ke (The Dictator Soundtrack)',
  1297. 'description': 'md5:bf577a41da97918e94fa9798d9228825',
  1298. 'upload_date': '20090125',
  1299. 'uploader': 'Prochorowka',
  1300. 'uploader_id': 'Prochorowka',
  1301. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/Prochorowka',
  1302. 'artist': 'Panjabi MC',
  1303. 'track': 'Beware of the Boys (Mundian to Bach Ke) - Motivo Hi-Lectro Remix',
  1304. 'album': 'Beware of the Boys (Mundian To Bach Ke)',
  1305. },
  1306. 'params': {
  1307. 'skip_download': True,
  1308. },
  1309. 'skip': 'Video unavailable',
  1310. },
  1311. {
  1312. # empty description results in an empty string
  1313. 'url': 'https://www.youtube.com/watch?v=x41yOUIvK2k',
  1314. 'info_dict': {
  1315. 'id': 'x41yOUIvK2k',
  1316. 'ext': 'mp4',
  1317. 'title': 'IMG 3456',
  1318. 'description': '',
  1319. 'upload_date': '20170613',
  1320. 'uploader': "l'Or Vert asbl",
  1321. 'uploader_id': '@ElevageOrVert',
  1322. },
  1323. 'params': {
  1324. 'skip_download': True,
  1325. },
  1326. },
  1327. {
  1328. # with '};' inside yt initial data (see [1])
  1329. # see [2] for an example with '};' inside ytInitialPlayerResponse
  1330. # 1. https://github.com/ytdl-org/youtube-dl/issues/27093
  1331. # 2. https://github.com/ytdl-org/youtube-dl/issues/27216
  1332. 'url': 'https://www.youtube.com/watch?v=CHqg6qOn4no',
  1333. 'info_dict': {
  1334. 'id': 'CHqg6qOn4no',
  1335. 'ext': 'mp4',
  1336. 'title': 'Part 77 Sort a list of simple types in c#',
  1337. 'description': 'md5:b8746fa52e10cdbf47997903f13b20dc',
  1338. 'upload_date': '20130831',
  1339. 'uploader': 'kudvenkat',
  1340. 'uploader_id': '@Csharp-video-tutorialsBlogspot',
  1341. },
  1342. 'params': {
  1343. 'skip_download': True,
  1344. },
  1345. },
  1346. {
  1347. # another example of '};' in ytInitialData
  1348. 'url': 'https://www.youtube.com/watch?v=gVfgbahppCY',
  1349. 'only_matching': True,
  1350. },
  1351. {
  1352. 'url': 'https://www.youtube.com/watch_popup?v=63RmMXCd_bQ',
  1353. 'only_matching': True,
  1354. },
  1355. {
  1356. # https://github.com/ytdl-org/youtube-dl/pull/28094
  1357. 'url': 'OtqTfy26tG0',
  1358. 'info_dict': {
  1359. 'id': 'OtqTfy26tG0',
  1360. 'ext': 'mp4',
  1361. 'title': 'Burn Out',
  1362. 'description': 'md5:8d07b84dcbcbfb34bc12a56d968b6131',
  1363. 'upload_date': '20141120',
  1364. 'uploader': 'The Cinematic Orchestra - Topic',
  1365. 'uploader_id': 'UCIzsJBIyo8hhpFm1NK0uLgw',
  1366. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UCIzsJBIyo8hhpFm1NK0uLgw',
  1367. 'artist': 'The Cinematic Orchestra',
  1368. 'track': 'Burn Out',
  1369. 'album': 'Every Day',
  1370. 'release_data': None,
  1371. 'release_year': None,
  1372. },
  1373. 'params': {
  1374. 'skip_download': True,
  1375. },
  1376. },
  1377. {
  1378. # controversial video, only works with bpctr when authenticated with cookies
  1379. 'url': 'https://www.youtube.com/watch?v=nGC3D_FkCmg',
  1380. 'only_matching': True,
  1381. },
  1382. {
  1383. # restricted location, https://github.com/ytdl-org/youtube-dl/issues/28685
  1384. 'url': 'cBvYw8_A0vQ',
  1385. 'info_dict': {
  1386. 'id': 'cBvYw8_A0vQ',
  1387. 'ext': 'mp4',
  1388. 'title': '4K Ueno Okachimachi Street Scenes 上野御徒町歩き',
  1389. 'description': 'md5:ea770e474b7cd6722b4c95b833c03630',
  1390. 'upload_date': '20201120',
  1391. 'uploader': 'Walk around Japan',
  1392. 'uploader_id': '@walkaroundjapan7124',
  1393. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@walkaroundjapan7124',
  1394. },
  1395. 'params': {
  1396. 'skip_download': True,
  1397. },
  1398. },
  1399. {
  1400. # YT 'Shorts'
  1401. 'url': 'https://youtube.com/shorts/4L2J27mJ3Dc',
  1402. 'info_dict': {
  1403. 'id': '4L2J27mJ3Dc',
  1404. 'ext': 'mp4',
  1405. 'title': 'Midwest Squid Game #Shorts',
  1406. 'description': 'md5:976512b8a29269b93bbd8a61edc45a6d',
  1407. 'upload_date': '20211025',
  1408. 'uploader': 'Charlie Berens',
  1409. 'uploader_id': '@CharlieBerens',
  1410. },
  1411. 'params': {
  1412. 'skip_download': True,
  1413. },
  1414. },
  1415. ]
  1416. _formats = {
  1417. '5': {'ext': 'flv', 'width': 400, 'height': 240, 'acodec': 'mp3', 'abr': 64, 'vcodec': 'h263'},
  1418. '6': {'ext': 'flv', 'width': 450, 'height': 270, 'acodec': 'mp3', 'abr': 64, 'vcodec': 'h263'},
  1419. '13': {'ext': '3gp', 'acodec': 'aac', 'vcodec': 'mp4v'},
  1420. '17': {'ext': '3gp', 'width': 176, 'height': 144, 'acodec': 'aac', 'abr': 24, 'vcodec': 'mp4v'},
  1421. '18': {'ext': 'mp4', 'width': 640, 'height': 360, 'acodec': 'aac', 'abr': 96, 'vcodec': 'h264'},
  1422. '22': {'ext': 'mp4', 'width': 1280, 'height': 720, 'acodec': 'aac', 'abr': 192, 'vcodec': 'h264'},
  1423. '34': {'ext': 'flv', 'width': 640, 'height': 360, 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264'},
  1424. '35': {'ext': 'flv', 'width': 854, 'height': 480, 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264'},
  1425. # itag 36 videos are either 320x180 (BaW_jenozKc) or 320x240 (__2ABJjxzNo), abr varies as well
  1426. '36': {'ext': '3gp', 'width': 320, 'acodec': 'aac', 'vcodec': 'mp4v'},
  1427. '37': {'ext': 'mp4', 'width': 1920, 'height': 1080, 'acodec': 'aac', 'abr': 192, 'vcodec': 'h264'},
  1428. '38': {'ext': 'mp4', 'width': 4096, 'height': 3072, 'acodec': 'aac', 'abr': 192, 'vcodec': 'h264'},
  1429. '43': {'ext': 'webm', 'width': 640, 'height': 360, 'acodec': 'vorbis', 'abr': 128, 'vcodec': 'vp8'},
  1430. '44': {'ext': 'webm', 'width': 854, 'height': 480, 'acodec': 'vorbis', 'abr': 128, 'vcodec': 'vp8'},
  1431. '45': {'ext': 'webm', 'width': 1280, 'height': 720, 'acodec': 'vorbis', 'abr': 192, 'vcodec': 'vp8'},
  1432. '46': {'ext': 'webm', 'width': 1920, 'height': 1080, 'acodec': 'vorbis', 'abr': 192, 'vcodec': 'vp8'},
  1433. '59': {'ext': 'mp4', 'width': 854, 'height': 480, 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264'},
  1434. '78': {'ext': 'mp4', 'width': 854, 'height': 480, 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264'},
  1435. # 3D videos
  1436. '82': {'ext': 'mp4', 'height': 360, 'format_note': '3D', 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264', 'preference': -20},
  1437. '83': {'ext': 'mp4', 'height': 480, 'format_note': '3D', 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264', 'preference': -20},
  1438. '84': {'ext': 'mp4', 'height': 720, 'format_note': '3D', 'acodec': 'aac', 'abr': 192, 'vcodec': 'h264', 'preference': -20},
  1439. '85': {'ext': 'mp4', 'height': 1080, 'format_note': '3D', 'acodec': 'aac', 'abr': 192, 'vcodec': 'h264', 'preference': -20},
  1440. '100': {'ext': 'webm', 'height': 360, 'format_note': '3D', 'acodec': 'vorbis', 'abr': 128, 'vcodec': 'vp8', 'preference': -20},
  1441. '101': {'ext': 'webm', 'height': 480, 'format_note': '3D', 'acodec': 'vorbis', 'abr': 192, 'vcodec': 'vp8', 'preference': -20},
  1442. '102': {'ext': 'webm', 'height': 720, 'format_note': '3D', 'acodec': 'vorbis', 'abr': 192, 'vcodec': 'vp8', 'preference': -20},
  1443. # Apple HTTP Live Streaming
  1444. '91': {'ext': 'mp4', 'height': 144, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 48, 'vcodec': 'h264', 'preference': -10},
  1445. '92': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 48, 'vcodec': 'h264', 'preference': -10},
  1446. '93': {'ext': 'mp4', 'height': 360, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264', 'preference': -10},
  1447. '94': {'ext': 'mp4', 'height': 480, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 128, 'vcodec': 'h264', 'preference': -10},
  1448. '95': {'ext': 'mp4', 'height': 720, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 256, 'vcodec': 'h264', 'preference': -10},
  1449. '96': {'ext': 'mp4', 'height': 1080, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 256, 'vcodec': 'h264', 'preference': -10},
  1450. '132': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 48, 'vcodec': 'h264', 'preference': -10},
  1451. '151': {'ext': 'mp4', 'height': 72, 'format_note': 'HLS', 'acodec': 'aac', 'abr': 24, 'vcodec': 'h264', 'preference': -10},
  1452. # DASH mp4 video
  1453. '133': {'ext': 'mp4', 'height': 240, 'format_note': 'DASH video', 'vcodec': 'h264'},
  1454. '134': {'ext': 'mp4', 'height': 360, 'format_note': 'DASH video', 'vcodec': 'h264'},
  1455. '135': {'ext': 'mp4', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'h264'},
  1456. '136': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'vcodec': 'h264'},
  1457. '137': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'vcodec': 'h264'},
  1458. '138': {'ext': 'mp4', 'format_note': 'DASH video', 'vcodec': 'h264'}, # Height can vary (https://github.com/ytdl-org/youtube-dl/issues/4559)
  1459. '160': {'ext': 'mp4', 'height': 144, 'format_note': 'DASH video', 'vcodec': 'h264'},
  1460. '212': {'ext': 'mp4', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'h264'},
  1461. '264': {'ext': 'mp4', 'height': 1440, 'format_note': 'DASH video', 'vcodec': 'h264'},
  1462. '298': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'vcodec': 'h264', 'fps': 60},
  1463. '299': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'vcodec': 'h264', 'fps': 60},
  1464. '266': {'ext': 'mp4', 'height': 2160, 'format_note': 'DASH video', 'vcodec': 'h264'},
  1465. # Dash mp4 audio
  1466. '139': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'abr': 48, 'container': 'm4a_dash'},
  1467. '140': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'abr': 128, 'container': 'm4a_dash'},
  1468. '141': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'abr': 256, 'container': 'm4a_dash'},
  1469. '256': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'container': 'm4a_dash'},
  1470. '258': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'container': 'm4a_dash'},
  1471. '325': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'dtse', 'container': 'm4a_dash'},
  1472. '328': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'ec-3', 'container': 'm4a_dash'},
  1473. # Dash webm
  1474. '167': {'ext': 'webm', 'height': 360, 'width': 640, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
  1475. '168': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
  1476. '169': {'ext': 'webm', 'height': 720, 'width': 1280, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
  1477. '170': {'ext': 'webm', 'height': 1080, 'width': 1920, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
  1478. '218': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
  1479. '219': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp8'},
  1480. '278': {'ext': 'webm', 'height': 144, 'format_note': 'DASH video', 'container': 'webm', 'vcodec': 'vp9'},
  1481. '242': {'ext': 'webm', 'height': 240, 'format_note': 'DASH video', 'vcodec': 'vp9'},
  1482. '243': {'ext': 'webm', 'height': 360, 'format_note': 'DASH video', 'vcodec': 'vp9'},
  1483. '244': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'vp9'},
  1484. '245': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'vp9'},
  1485. '246': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'vcodec': 'vp9'},
  1486. '247': {'ext': 'webm', 'height': 720, 'format_note': 'DASH video', 'vcodec': 'vp9'},
  1487. '248': {'ext': 'webm', 'height': 1080, 'format_note': 'DASH video', 'vcodec': 'vp9'},
  1488. '271': {'ext': 'webm', 'height': 1440, 'format_note': 'DASH video', 'vcodec': 'vp9'},
  1489. # itag 272 videos are either 3840x2160 (e.g. RtoitU2A-3E) or 7680x4320 (sLprVF6d7Ug)
  1490. '272': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'vcodec': 'vp9'},
  1491. '302': {'ext': 'webm', 'height': 720, 'format_note': 'DASH video', 'vcodec': 'vp9', 'fps': 60},
  1492. '303': {'ext': 'webm', 'height': 1080, 'format_note': 'DASH video', 'vcodec': 'vp9', 'fps': 60},
  1493. '308': {'ext': 'webm', 'height': 1440, 'format_note': 'DASH video', 'vcodec': 'vp9', 'fps': 60},
  1494. '313': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'vcodec': 'vp9'},
  1495. '315': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'vcodec': 'vp9', 'fps': 60},
  1496. # Dash webm audio
  1497. '171': {'ext': 'webm', 'acodec': 'vorbis', 'format_note': 'DASH audio', 'abr': 128},
  1498. '172': {'ext': 'webm', 'acodec': 'vorbis', 'format_note': 'DASH audio', 'abr': 256},
  1499. # Dash webm audio with opus inside
  1500. '249': {'ext': 'webm', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 50},
  1501. '250': {'ext': 'webm', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 70},
  1502. '251': {'ext': 'webm', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 160},
  1503. # RTMP (unnamed)
  1504. '_rtmp': {'protocol': 'rtmp'},
  1505. # av01 video only formats sometimes served with "unknown" codecs
  1506. '394': {'acodec': 'none', 'vcodec': 'av01.0.05M.08'},
  1507. '395': {'acodec': 'none', 'vcodec': 'av01.0.05M.08'},
  1508. '396': {'acodec': 'none', 'vcodec': 'av01.0.05M.08'},
  1509. '397': {'acodec': 'none', 'vcodec': 'av01.0.05M.08'},
  1510. }
  1511. @classmethod
  1512. def suitable(cls, url):
  1513. if parse_qs(url).get('list', [None])[0]:
  1514. return False
  1515. return super(YoutubeIE, cls).suitable(url)
  1516. def __init__(self, *args, **kwargs):
  1517. super(YoutubeIE, self).__init__(*args, **kwargs)
  1518. self._code_cache = {}
  1519. self._player_cache = {}
  1520. # *ytcfgs, webpage=None
  1521. def _extract_player_url(self, *ytcfgs, **kw_webpage):
  1522. if ytcfgs and not isinstance(ytcfgs[0], dict):
  1523. webpage = kw_webpage.get('webpage') or ytcfgs[0]
  1524. if webpage:
  1525. player_url = self._search_regex(
  1526. r'"(?:PLAYER_JS_URL|jsUrl)"\s*:\s*"([^"]+)"',
  1527. webpage or '', 'player URL', fatal=False)
  1528. if player_url:
  1529. ytcfgs = ytcfgs + ({'PLAYER_JS_URL': player_url},)
  1530. return traverse_obj(
  1531. ytcfgs, (Ellipsis, 'PLAYER_JS_URL'), (Ellipsis, 'WEB_PLAYER_CONTEXT_CONFIGS', Ellipsis, 'jsUrl'),
  1532. get_all=False, expected_type=lambda u: urljoin('https://www.youtube.com', u))
  1533. def _download_player_url(self, video_id, fatal=False):
  1534. res = self._download_webpage(
  1535. 'https://www.youtube.com/iframe_api',
  1536. note='Downloading iframe API JS', video_id=video_id, fatal=fatal)
  1537. player_version = self._search_regex(
  1538. r'player\\?/([0-9a-fA-F]{8})\\?/', res or '', 'player version', fatal=fatal,
  1539. default=NO_DEFAULT if res else None)
  1540. if player_version:
  1541. return 'https://www.youtube.com/s/player/{0}/player_ias.vflset/en_US/base.js'.format(player_version)
  1542. def _signature_cache_id(self, example_sig):
  1543. """ Return a string representation of a signature """
  1544. return '.'.join(compat_str(len(part)) for part in example_sig.split('.'))
  1545. @classmethod
  1546. def _extract_player_info(cls, player_url):
  1547. for player_re in cls._PLAYER_INFO_RE:
  1548. id_m = re.search(player_re, player_url)
  1549. if id_m:
  1550. break
  1551. else:
  1552. raise ExtractorError('Cannot identify player %r' % player_url)
  1553. return id_m.group('id')
  1554. def _load_player(self, video_id, player_url, fatal=True, player_id=None):
  1555. if not player_id:
  1556. player_id = self._extract_player_info(player_url)
  1557. if player_id not in self._code_cache:
  1558. code = self._download_webpage(
  1559. player_url, video_id, fatal=fatal,
  1560. note='Downloading player ' + player_id,
  1561. errnote='Download of %s failed' % player_url)
  1562. if code:
  1563. self._code_cache[player_id] = code
  1564. return self._code_cache[player_id] if fatal else self._code_cache.get(player_id)
  1565. def _extract_signature_function(self, video_id, player_url, example_sig):
  1566. player_id = self._extract_player_info(player_url)
  1567. # Read from filesystem cache
  1568. func_id = 'js_{0}_{1}'.format(
  1569. player_id, self._signature_cache_id(example_sig))
  1570. assert os.path.basename(func_id) == func_id
  1571. self.write_debug('Extracting signature function {0}'.format(func_id))
  1572. cache_spec, code = self.cache.load('youtube-sigfuncs', func_id), None
  1573. if not cache_spec:
  1574. code = self._load_player(video_id, player_url, player_id)
  1575. if code:
  1576. res = self._parse_sig_js(code)
  1577. test_string = ''.join(map(compat_chr, range(len(example_sig))))
  1578. cache_spec = [ord(c) for c in res(test_string)]
  1579. self.cache.store('youtube-sigfuncs', func_id, cache_spec)
  1580. return lambda s: ''.join(s[i] for i in cache_spec)
  1581. def _print_sig_code(self, func, example_sig):
  1582. if not self.get_param('youtube_print_sig_code'):
  1583. return
  1584. def gen_sig_code(idxs):
  1585. def _genslice(start, end, step):
  1586. starts = '' if start == 0 else str(start)
  1587. ends = (':%d' % (end + step)) if end + step >= 0 else ':'
  1588. steps = '' if step == 1 else (':%d' % step)
  1589. return 's[{0}{1}{2}]'.format(starts, ends, steps)
  1590. step = None
  1591. # Quelch pyflakes warnings - start will be set when step is set
  1592. start = '(Never used)'
  1593. for i, prev in zip(idxs[1:], idxs[:-1]):
  1594. if step is not None:
  1595. if i - prev == step:
  1596. continue
  1597. yield _genslice(start, prev, step)
  1598. step = None
  1599. continue
  1600. if i - prev in [-1, 1]:
  1601. step = i - prev
  1602. start = prev
  1603. continue
  1604. else:
  1605. yield 's[%d]' % prev
  1606. if step is None:
  1607. yield 's[%d]' % i
  1608. else:
  1609. yield _genslice(start, i, step)
  1610. test_string = ''.join(map(compat_chr, range(len(example_sig))))
  1611. cache_res = func(test_string)
  1612. cache_spec = [ord(c) for c in cache_res]
  1613. expr_code = ' + '.join(gen_sig_code(cache_spec))
  1614. signature_id_tuple = '(%s)' % (
  1615. ', '.join(compat_str(len(p)) for p in example_sig.split('.')))
  1616. code = ('if tuple(len(p) for p in s.split(\'.\')) == %s:\n'
  1617. ' return %s\n') % (signature_id_tuple, expr_code)
  1618. self.to_screen('Extracted signature function:\n' + code)
  1619. def _parse_sig_js(self, jscode):
  1620. # Examples where `sig` is funcname:
  1621. # sig=function(a){a=a.split(""); ... ;return a.join("")};
  1622. # ;c&&(c=sig(decodeURIComponent(c)),a.set(b,encodeURIComponent(c)));return a};
  1623. # {var l=f,m=h.sp,n=sig(decodeURIComponent(h.s));l.set(m,encodeURIComponent(n))}
  1624. # sig=function(J){J=J.split(""); ... ;return J.join("")};
  1625. # ;N&&(N=sig(decodeURIComponent(N)),J.set(R,encodeURIComponent(N)));return J};
  1626. # {var H=u,k=f.sp,v=sig(decodeURIComponent(f.s));H.set(k,encodeURIComponent(v))}
  1627. funcname = self._search_regex(
  1628. (r'\b(?P<var>[\w$]+)&&\((?P=var)=(?P<sig>[\w$]{2,})\(decodeURIComponent\((?P=var)\)\)',
  1629. r'(?P<sig>[\w$]+)\s*=\s*function\(\s*(?P<arg>[\w$]+)\s*\)\s*{\s*(?P=arg)\s*=\s*(?P=arg)\.split\(\s*""\s*\)\s*;\s*[^}]+;\s*return\s+(?P=arg)\.join\(\s*""\s*\)',
  1630. r'(?:\b|[^\w$])(?P<sig>[\w$]{2,})\s*=\s*function\(\s*a\s*\)\s*{\s*a\s*=\s*a\.split\(\s*""\s*\)(?:;[\w$]{2}\.[\w$]{2}\(a,\d+\))?',
  1631. # Old patterns
  1632. r'\b[cs]\s*&&\s*[adf]\.set\([^,]+\s*,\s*encodeURIComponent\s*\(\s*(?P<sig>[\w$]+)\(',
  1633. r'\b[\w]+\s*&&\s*[\w]+\.set\([^,]+\s*,\s*encodeURIComponent\s*\(\s*(?P<sig>[\w$]+)\(',
  1634. r'\bm=(?P<sig>[\w$]{2,})\(decodeURIComponent\(h\.s\)\)',
  1635. # Obsolete patterns
  1636. r'("|\')signature\1\s*,\s*(?P<sig>[\w$]+)\(',
  1637. r'\.sig\|\|(?P<sig>[\w$]+)\(',
  1638. r'yt\.akamaized\.net/\)\s*\|\|\s*.*?\s*[cs]\s*&&\s*[adf]\.set\([^,]+\s*,\s*(?:encodeURIComponent\s*\()?\s*(?P<sig>[\w$]+)\(',
  1639. r'\b[cs]\s*&&\s*[adf]\.set\([^,]+\s*,\s*(?P<sig>[\w$]+)\(',
  1640. r'\bc\s*&&\s*[\w]+\.set\([^,]+\s*,\s*\([^)]*\)\s*\(\s*(?P<sig>[\w$]+)\('),
  1641. jscode, 'Initial JS player signature function name', group='sig')
  1642. jsi = JSInterpreter(jscode)
  1643. initial_function = jsi.extract_function(funcname)
  1644. return lambda s: initial_function([s])
  1645. def _cached(self, func, *cache_id):
  1646. def inner(*args, **kwargs):
  1647. if cache_id not in self._player_cache:
  1648. try:
  1649. self._player_cache[cache_id] = func(*args, **kwargs)
  1650. except ExtractorError as e:
  1651. self._player_cache[cache_id] = e
  1652. except Exception as e:
  1653. self._player_cache[cache_id] = ExtractorError(traceback.format_exc(), cause=e)
  1654. ret = self._player_cache[cache_id]
  1655. if isinstance(ret, Exception):
  1656. raise ret
  1657. return ret
  1658. return inner
  1659. def _decrypt_signature(self, s, video_id, player_url):
  1660. """Turn the encrypted s field into a working signature"""
  1661. extract_sig = self._cached(
  1662. self._extract_signature_function, 'sig', player_url, self._signature_cache_id(s))
  1663. func = extract_sig(video_id, player_url, s)
  1664. self._print_sig_code(func, s)
  1665. return func(s)
  1666. # from yt-dlp
  1667. # See also:
  1668. # 1. https://github.com/ytdl-org/youtube-dl/issues/29326#issuecomment-894619419
  1669. # 2. https://code.videolan.org/videolan/vlc/-/blob/4fb284e5af69aa9ac2100ccbdd3b88debec9987f/share/lua/playlist/youtube.lua#L116
  1670. # 3. https://github.com/ytdl-org/youtube-dl/issues/30097#issuecomment-950157377
  1671. def _decrypt_nsig(self, n, video_id, player_url):
  1672. """Turn the encrypted n field into a working signature"""
  1673. if player_url is None:
  1674. raise ExtractorError('Cannot decrypt nsig without player_url')
  1675. try:
  1676. jsi, player_id, func_code = self._extract_n_function_code(video_id, player_url)
  1677. except ExtractorError as e:
  1678. raise ExtractorError('Unable to extract nsig function code', cause=e)
  1679. if self.get_param('youtube_print_sig_code'):
  1680. self.to_screen('Extracted nsig function from {0}:\n{1}\n'.format(
  1681. player_id, func_code[1]))
  1682. try:
  1683. extract_nsig = self._cached(self._extract_n_function_from_code, 'nsig func', player_url)
  1684. ret = extract_nsig(jsi, func_code)(n)
  1685. except JSInterpreter.Exception as e:
  1686. self.report_warning(
  1687. '%s (%s %s)' % (
  1688. 'Unable to decode n-parameter: expect download to be blocked or throttled',
  1689. error_to_compat_str(e),
  1690. traceback.format_exc()),
  1691. video_id=video_id)
  1692. return
  1693. self.write_debug('Decrypted nsig {0} => {1}'.format(n, ret))
  1694. return ret
  1695. def _extract_n_function_name(self, jscode):
  1696. func_name, idx = self._search_regex(
  1697. # (y=NuD(),Mw(k),q=k.Z[y]||null)&&(q=narray[idx](q),k.set(y,q),k.V||NuD(''))}};
  1698. # (R="nn"[+J.Z],mW(J),N=J.K[R]||null)&&(N=narray[idx](N),J.set(R,N))}};
  1699. # or: (b=String.fromCharCode(110),c=a.get(b))&&c=narray[idx](c)
  1700. # or: (b="nn"[+a.D],c=a.get(b))&&(c=narray[idx](c)
  1701. # or: (PL(a),b=a.j.n||null)&&(b=narray[idx](b)
  1702. # or: (b="nn"[+a.D],vL(a),c=a.j[b]||null)&&(c=narray[idx](c),a.set(b,c),narray.length||nfunc("")
  1703. # old: (b=a.get("n"))&&(b=narray[idx](b)(?P<c>[a-z])\s*=\s*[a-z]\s*
  1704. # older: (b=a.get("n"))&&(b=nfunc(b)
  1705. r'''(?x)
  1706. # (expr, ...,
  1707. \((?:(?:\s*[\w$]+\s*=)?(?:[\w$"+\.\s(\[]+(?:[)\]]\s*)?),)*
  1708. # b=...
  1709. (?P<b>[\w$]+)\s*=\s*(?!(?P=b)[^\w$])[\w$]+\s*(?:(?:
  1710. \.\s*[\w$]+ |
  1711. \[\s*[\w$]+\s*\] |
  1712. \.\s*get\s*\(\s*[\w$"]+\s*\)
  1713. )\s*){,2}(?:\s*\|\|\s*null(?=\s*\)))?\s*
  1714. \)\s*&&\s*\( # ...)&&(
  1715. # b = nfunc, b = narray[idx]
  1716. (?P=b)\s*=\s*(?P<nfunc>[\w$]+)\s*
  1717. (?:\[\s*(?P<idx>[\w$]+)\s*\]\s*)?
  1718. # (...)
  1719. \(\s*[\w$]+\s*\)
  1720. ''', jscode, 'Initial JS player n function name', group=('nfunc', 'idx'),
  1721. default=(None, None))
  1722. # thx bashonly: yt-dlp/yt-dlp/pull/10611
  1723. if not func_name:
  1724. self.report_warning('Falling back to generic n function search')
  1725. return self._search_regex(
  1726. r'''(?xs)
  1727. (?:(?<=[^\w$])|^) # instead of \b, which ignores $
  1728. (?P<name>(?!\d)[a-zA-Z\d_$]+)\s*=\s*function\((?!\d)[a-zA-Z\d_$]+\)
  1729. \s*\{(?:(?!};).)+?(?:
  1730. ["']enhanced_except_ |
  1731. return\s*(?P<q>"|')[a-zA-Z\d-]+_w8_(?P=q)\s*\+\s*[\w$]+
  1732. )
  1733. ''', jscode, 'Initial JS player n function name', group='name')
  1734. if not idx:
  1735. return func_name
  1736. return self._search_json(
  1737. r'var\s+{0}\s*='.format(re.escape(func_name)), jscode,
  1738. 'Initial JS player n function list ({0}.{1})'.format(func_name, idx),
  1739. func_name, contains_pattern=r'\[[\s\S]+\]', end_pattern='[,;]',
  1740. transform_source=js_to_json)[int(idx)]
  1741. def _extract_n_function_code(self, video_id, player_url):
  1742. player_id = self._extract_player_info(player_url)
  1743. func_code = self.cache.load('youtube-nsig', player_id)
  1744. jscode = func_code or self._load_player(video_id, player_url)
  1745. jsi = JSInterpreter(jscode)
  1746. if func_code:
  1747. return jsi, player_id, func_code
  1748. func_name = self._extract_n_function_name(jscode)
  1749. func_code = jsi.extract_function_code(func_name)
  1750. self.cache.store('youtube-nsig', player_id, func_code)
  1751. return jsi, player_id, func_code
  1752. def _extract_n_function_from_code(self, jsi, func_code):
  1753. func = jsi.extract_function_from_code(*func_code)
  1754. def extract_nsig(s):
  1755. try:
  1756. ret = func([s], kwargs={'_ytdl_do_not_return': s})
  1757. except JSInterpreter.Exception:
  1758. raise
  1759. except Exception as e:
  1760. raise JSInterpreter.Exception(traceback.format_exc(), cause=e)
  1761. if ret.startswith('enhanced_except_') or ret.endswith(s):
  1762. raise JSInterpreter.Exception('Signature function returned an exception')
  1763. return ret
  1764. return extract_nsig
  1765. def _unthrottle_format_urls(self, video_id, player_url, *formats):
  1766. def decrypt_nsig(n):
  1767. return self._cached(self._decrypt_nsig, 'nsig', n, player_url)
  1768. for fmt in formats:
  1769. parsed_fmt_url = compat_urllib_parse.urlparse(fmt['url'])
  1770. n_param = compat_parse_qs(parsed_fmt_url.query).get('n')
  1771. if not n_param:
  1772. continue
  1773. n_param = n_param[-1]
  1774. n_response = decrypt_nsig(n_param)(n_param, video_id, player_url)
  1775. if n_response is None:
  1776. # give up if descrambling failed
  1777. break
  1778. fmt['url'] = update_url_query(fmt['url'], {'n': n_response})
  1779. # from yt-dlp, with tweaks
  1780. def _extract_signature_timestamp(self, video_id, player_url, ytcfg=None, fatal=False):
  1781. """
  1782. Extract signatureTimestamp (sts)
  1783. Required to tell API what sig/player version is in use.
  1784. """
  1785. sts = traverse_obj(ytcfg, 'STS', expected_type=int)
  1786. if not sts:
  1787. # Attempt to extract from player
  1788. if player_url is None:
  1789. error_msg = 'Cannot extract signature timestamp without player_url.'
  1790. if fatal:
  1791. raise ExtractorError(error_msg)
  1792. self.report_warning(error_msg)
  1793. return
  1794. code = self._load_player(video_id, player_url, fatal=fatal)
  1795. sts = int_or_none(self._search_regex(
  1796. r'(?:signatureTimestamp|sts)\s*:\s*(?P<sts>[0-9]{5})', code or '',
  1797. 'JS player signature timestamp', group='sts', fatal=fatal))
  1798. return sts
  1799. def _mark_watched(self, video_id, player_response):
  1800. playback_url = url_or_none(try_get(
  1801. player_response,
  1802. lambda x: x['playbackTracking']['videostatsPlaybackUrl']['baseUrl']))
  1803. if not playback_url:
  1804. return
  1805. # cpn generation algorithm is reverse engineered from base.js.
  1806. # In fact it works even with dummy cpn.
  1807. CPN_ALPHABET = string.ascii_letters + string.digits + '-_'
  1808. cpn = ''.join(CPN_ALPHABET[random.randint(0, 256) & 63] for _ in range(16))
  1809. # more consistent results setting it to right before the end
  1810. qs = parse_qs(playback_url)
  1811. video_length = '{0}'.format(float((qs.get('len') or ['1.5'])[0]) - 1)
  1812. playback_url = update_url_query(
  1813. playback_url, {
  1814. 'ver': '2',
  1815. 'cpn': cpn,
  1816. 'cmt': video_length,
  1817. 'el': 'detailpage', # otherwise defaults to "shorts"
  1818. })
  1819. self._download_webpage(
  1820. playback_url, video_id, 'Marking watched',
  1821. 'Unable to mark watched', fatal=False)
  1822. @staticmethod
  1823. def _extract_urls(webpage):
  1824. # Embedded YouTube player
  1825. entries = [
  1826. unescapeHTML(mobj.group('url'))
  1827. for mobj in re.finditer(r'''(?x)
  1828. (?:
  1829. <iframe[^>]+?src=|
  1830. data-video-url=|
  1831. <embed[^>]+?src=|
  1832. embedSWF\(?:\s*|
  1833. <object[^>]+data=|
  1834. new\s+SWFObject\(
  1835. )
  1836. (["\'])
  1837. (?P<url>(?:https?:)?//(?:www\.)?youtube(?:-nocookie)?\.com/
  1838. (?:embed|v|p)/[0-9A-Za-z_-]{11}.*?)
  1839. \1''', webpage)]
  1840. # lazyYT YouTube embed
  1841. entries.extend(list(map(
  1842. unescapeHTML,
  1843. re.findall(r'class="lazyYT" data-youtube-id="([^"]+)"', webpage))))
  1844. # Wordpress "YouTube Video Importer" plugin
  1845. matches = re.findall(r'''(?x)<div[^>]+
  1846. class=(?P<q1>[\'"])[^\'"]*\byvii_single_video_player\b[^\'"]*(?P=q1)[^>]+
  1847. data-video_id=(?P<q2>[\'"])([^\'"]+)(?P=q2)''', webpage)
  1848. entries.extend(m[-1] for m in matches)
  1849. return entries
  1850. @staticmethod
  1851. def _extract_url(webpage):
  1852. urls = YoutubeIE._extract_urls(webpage)
  1853. return urls[0] if urls else None
  1854. @classmethod
  1855. def extract_id(cls, url):
  1856. mobj = re.match(cls._VALID_URL, url, re.VERBOSE)
  1857. if mobj is None:
  1858. raise ExtractorError('Invalid URL: %s' % url)
  1859. return mobj.group(2)
  1860. def _extract_chapters_from_json(self, data, video_id, duration):
  1861. chapters_list = try_get(
  1862. data,
  1863. lambda x: x['playerOverlays']
  1864. ['playerOverlayRenderer']
  1865. ['decoratedPlayerBarRenderer']
  1866. ['decoratedPlayerBarRenderer']
  1867. ['playerBar']
  1868. ['chapteredPlayerBarRenderer']
  1869. ['chapters'],
  1870. list)
  1871. if not chapters_list:
  1872. return
  1873. def chapter_time(chapter):
  1874. return float_or_none(
  1875. try_get(
  1876. chapter,
  1877. lambda x: x['chapterRenderer']['timeRangeStartMillis'],
  1878. int),
  1879. scale=1000)
  1880. chapters = []
  1881. for next_num, chapter in enumerate(chapters_list, start=1):
  1882. start_time = chapter_time(chapter)
  1883. if start_time is None:
  1884. continue
  1885. end_time = (chapter_time(chapters_list[next_num])
  1886. if next_num < len(chapters_list) else duration)
  1887. if end_time is None:
  1888. continue
  1889. title = try_get(
  1890. chapter, lambda x: x['chapterRenderer']['title']['simpleText'],
  1891. compat_str)
  1892. chapters.append({
  1893. 'start_time': start_time,
  1894. 'end_time': end_time,
  1895. 'title': title,
  1896. })
  1897. return chapters
  1898. def _extract_yt_initial_variable(self, webpage, regex, video_id, name):
  1899. return self._parse_json(self._search_regex(
  1900. (r'%s\s*%s' % (regex, self._YT_INITIAL_BOUNDARY_RE),
  1901. regex), webpage, name, default='{}'), video_id, fatal=False)
  1902. def _real_extract(self, url):
  1903. url, smuggled_data = unsmuggle_url(url, {})
  1904. video_id = self._match_id(url)
  1905. base_url = self.http_scheme() + '//www.youtube.com/'
  1906. webpage_url = base_url + 'watch?v=' + video_id
  1907. webpage = self._download_webpage(
  1908. webpage_url + '&bpctr=9999999999&has_verified=1', video_id, fatal=False)
  1909. player_response = None
  1910. player_url = None
  1911. if webpage:
  1912. player_response = self._extract_yt_initial_variable(
  1913. webpage, self._YT_INITIAL_PLAYER_RESPONSE_RE,
  1914. video_id, 'initial player response')
  1915. is_live = traverse_obj(player_response, ('videoDetails', 'isLive'))
  1916. if False and not player_response:
  1917. player_response = self._call_api(
  1918. 'player', {'videoId': video_id}, video_id)
  1919. if True or not player_response:
  1920. origin = 'https://www.youtube.com'
  1921. pb_context = {'html5Preference': 'HTML5_PREF_WANTS'}
  1922. player_url = self._extract_player_url(webpage)
  1923. ytcfg = self._extract_ytcfg(video_id, webpage or '')
  1924. sts = self._extract_signature_timestamp(video_id, player_url, ytcfg)
  1925. if sts:
  1926. pb_context['signatureTimestamp'] = sts
  1927. client_names = traverse_obj(self._INNERTUBE_CLIENTS, (
  1928. T(dict.items), lambda _, k_v: not k_v[1].get('REQUIRE_PO_TOKEN'),
  1929. 0))[:1]
  1930. if 'web' not in client_names:
  1931. # webpage links won't download: ignore links and playability
  1932. player_response = filter_dict(
  1933. player_response or {},
  1934. lambda k, _: k not in ('streamingData', 'playabilityStatus'))
  1935. if is_live and 'ios' not in client_names:
  1936. client_names.append('ios')
  1937. headers = {
  1938. 'Sec-Fetch-Mode': 'navigate',
  1939. 'Origin': origin,
  1940. 'X-Goog-Visitor-Id': self._extract_visitor_data(ytcfg) or '',
  1941. }
  1942. auth = self._generate_sapisidhash_header(origin)
  1943. if auth is not None:
  1944. headers['Authorization'] = auth
  1945. headers['X-Origin'] = origin
  1946. for client in traverse_obj(self._INNERTUBE_CLIENTS, (client_names, T(dict))):
  1947. query = {
  1948. 'playbackContext': {
  1949. 'contentPlaybackContext': pb_context,
  1950. },
  1951. 'contentCheckOk': True,
  1952. 'racyCheckOk': True,
  1953. 'context': {
  1954. 'client': merge_dicts(
  1955. traverse_obj(client, ('INNERTUBE_CONTEXT', 'client')), {
  1956. 'hl': 'en',
  1957. 'timeZone': 'UTC',
  1958. 'utcOffsetMinutes': 0,
  1959. }),
  1960. },
  1961. 'videoId': video_id,
  1962. }
  1963. api_headers = merge_dicts(headers, traverse_obj(client, {
  1964. 'X-YouTube-Client-Name': 'INNERTUBE_CONTEXT_CLIENT_NAME',
  1965. 'X-YouTube-Client-Version': (
  1966. 'INNERTUBE_CONTEXT', 'client', 'clientVersion'),
  1967. 'User-Agent': (
  1968. 'INNERTUBE_CONTEXT', 'client', 'userAgent'),
  1969. }))
  1970. api_player_response = self._call_api(
  1971. 'player', query, video_id, fatal=False, headers=api_headers,
  1972. note=join_nonempty(
  1973. 'Downloading', traverse_obj(query, (
  1974. 'context', 'client', 'clientName')),
  1975. 'API JSON', delim=' '))
  1976. hls = traverse_obj(
  1977. (player_response, api_player_response),
  1978. (Ellipsis, 'streamingData', 'hlsManifestUrl', T(url_or_none)))
  1979. if len(hls) == 2 and not hls[0] and hls[1]:
  1980. player_response['streamingData']['hlsManifestUrl'] = hls[1]
  1981. else:
  1982. video_details = merge_dicts(*traverse_obj(
  1983. (player_response, api_player_response),
  1984. (Ellipsis, 'videoDetails', T(dict))))
  1985. player_response.update(api_player_response or {})
  1986. player_response['videoDetails'] = video_details
  1987. def is_agegated(playability):
  1988. if not isinstance(playability, dict):
  1989. return
  1990. if playability.get('desktopLegacyAgeGateReason'):
  1991. return True
  1992. reasons = filter(None, (playability.get(r) for r in ('status', 'reason')))
  1993. AGE_GATE_REASONS = (
  1994. 'confirm your age', 'age-restricted', 'inappropriate', # reason
  1995. 'age_verification_required', 'age_check_required', # status
  1996. )
  1997. return any(expected in reason for expected in AGE_GATE_REASONS for reason in reasons)
  1998. def get_playability_status(response):
  1999. return try_get(response, lambda x: x['playabilityStatus'], dict) or {}
  2000. playability_status = get_playability_status(player_response)
  2001. if (is_agegated(playability_status)
  2002. and int_or_none(self._downloader.params.get('age_limit'), default=18) >= 18):
  2003. self.report_age_confirmation()
  2004. # Thanks: https://github.com/yt-dlp/yt-dlp/pull/3233
  2005. pb_context = {'html5Preference': 'HTML5_PREF_WANTS'}
  2006. # Use signatureTimestamp if available
  2007. # Thanks https://github.com/ytdl-org/youtube-dl/issues/31034#issuecomment-1160718026
  2008. player_url = self._extract_player_url(webpage)
  2009. ytcfg = self._extract_ytcfg(video_id, webpage)
  2010. sts = self._extract_signature_timestamp(video_id, player_url, ytcfg)
  2011. if sts:
  2012. pb_context['signatureTimestamp'] = sts
  2013. query = {
  2014. 'playbackContext': {'contentPlaybackContext': pb_context},
  2015. 'contentCheckOk': True,
  2016. 'racyCheckOk': True,
  2017. 'context': {
  2018. 'client': {'clientName': 'TVHTML5_SIMPLY_EMBEDDED_PLAYER', 'clientVersion': '2.0', 'hl': 'en', 'clientScreen': 'EMBED'},
  2019. 'thirdParty': {'embedUrl': 'https://google.com'},
  2020. },
  2021. 'videoId': video_id,
  2022. }
  2023. headers = {
  2024. 'X-YouTube-Client-Name': '85',
  2025. 'X-YouTube-Client-Version': '2.0',
  2026. 'Origin': 'https://www.youtube.com',
  2027. }
  2028. video_info = self._call_api('player', query, video_id, fatal=False, headers=headers)
  2029. age_gate_status = get_playability_status(video_info)
  2030. if age_gate_status.get('status') == 'OK':
  2031. player_response = video_info
  2032. playability_status = age_gate_status
  2033. trailer_video_id = try_get(
  2034. playability_status,
  2035. lambda x: x['errorScreen']['playerLegacyDesktopYpcTrailerRenderer']['trailerVideoId'],
  2036. compat_str)
  2037. if trailer_video_id:
  2038. return self.url_result(
  2039. trailer_video_id, self.ie_key(), trailer_video_id)
  2040. def get_text(x):
  2041. if not x:
  2042. return
  2043. text = x.get('simpleText')
  2044. if text and isinstance(text, compat_str):
  2045. return text
  2046. runs = x.get('runs')
  2047. if not isinstance(runs, list):
  2048. return
  2049. return ''.join([r['text'] for r in runs if isinstance(r.get('text'), compat_str)])
  2050. search_meta = (
  2051. (lambda x: self._html_search_meta(x, webpage, default=None))
  2052. if webpage else lambda _: None)
  2053. video_details = player_response.get('videoDetails') or {}
  2054. microformat = try_get(
  2055. player_response,
  2056. lambda x: x['microformat']['playerMicroformatRenderer'],
  2057. dict) or {}
  2058. video_title = video_details.get('title') \
  2059. or get_text(microformat.get('title')) \
  2060. or search_meta(['og:title', 'twitter:title', 'title'])
  2061. video_description = video_details.get('shortDescription')
  2062. if not smuggled_data.get('force_singlefeed', False):
  2063. if not self._downloader.params.get('noplaylist'):
  2064. multifeed_metadata_list = try_get(
  2065. player_response,
  2066. lambda x: x['multicamera']['playerLegacyMulticameraRenderer']['metadataList'],
  2067. compat_str)
  2068. if multifeed_metadata_list:
  2069. entries = []
  2070. feed_ids = []
  2071. for feed in multifeed_metadata_list.split(','):
  2072. # Unquote should take place before split on comma (,) since textual
  2073. # fields may contain comma as well (see
  2074. # https://github.com/ytdl-org/youtube-dl/issues/8536)
  2075. feed_data = compat_parse_qs(
  2076. compat_urllib_parse_unquote_plus(feed))
  2077. def feed_entry(name):
  2078. return try_get(
  2079. feed_data, lambda x: x[name][0], compat_str)
  2080. feed_id = feed_entry('id')
  2081. if not feed_id:
  2082. continue
  2083. feed_title = feed_entry('title')
  2084. title = video_title
  2085. if feed_title:
  2086. title += ' (%s)' % feed_title
  2087. entries.append({
  2088. '_type': 'url_transparent',
  2089. 'ie_key': 'Youtube',
  2090. 'url': smuggle_url(
  2091. base_url + 'watch?v=' + feed_data['id'][0],
  2092. {'force_singlefeed': True}),
  2093. 'title': title,
  2094. })
  2095. feed_ids.append(feed_id)
  2096. self.to_screen(
  2097. 'Downloading multifeed video (%s) - add --no-playlist to just download video %s'
  2098. % (', '.join(feed_ids), video_id))
  2099. return self.playlist_result(
  2100. entries, video_id, video_title, video_description)
  2101. else:
  2102. self.to_screen('Downloading just video %s because of --no-playlist' % video_id)
  2103. if not player_url:
  2104. player_url = self._extract_player_url(webpage)
  2105. formats = []
  2106. itags = collections.defaultdict(set)
  2107. itag_qualities = {}
  2108. q = qualities(['tiny', 'small', 'medium', 'large', 'hd720', 'hd1080', 'hd1440', 'hd2160', 'hd2880', 'highres'])
  2109. CHUNK_SIZE = 10 << 20
  2110. is_live = video_details.get('isLive')
  2111. streaming_data = player_response.get('streamingData') or {}
  2112. streaming_formats = streaming_data.get('formats') or []
  2113. streaming_formats.extend(streaming_data.get('adaptiveFormats') or [])
  2114. def build_fragments(f):
  2115. return LazyList({
  2116. 'url': update_url_query(f['url'], {
  2117. 'range': '{0}-{1}'.format(range_start, min(range_start + CHUNK_SIZE - 1, f['filesize'])),
  2118. })
  2119. } for range_start in range(0, f['filesize'], CHUNK_SIZE))
  2120. lower = lambda s: s.lower()
  2121. for fmt in streaming_formats:
  2122. if fmt.get('targetDurationSec'):
  2123. continue
  2124. itag = str_or_none(fmt.get('itag'))
  2125. audio_track = traverse_obj(fmt, ('audioTrack', T(dict))) or {}
  2126. quality = traverse_obj(fmt, ((
  2127. # The 3gp format (17) in android client has a quality of "small",
  2128. # but is actually worse than other formats
  2129. T(lambda _: 'tiny' if itag == 17 else None),
  2130. ('quality', T(lambda q: q if q and q != 'tiny' else None)),
  2131. ('audioQuality', T(lower)),
  2132. 'quality'), T(txt_or_none)), get_all=False)
  2133. if quality and itag:
  2134. itag_qualities[itag] = quality
  2135. # FORMAT_STREAM_TYPE_OTF(otf=1) requires downloading the init fragment
  2136. # (adding `&sq=0` to the URL) and parsing emsg box to determine the
  2137. # number of fragments that would subsequently be requested with (`&sq=N`)
  2138. if fmt.get('type') == 'FORMAT_STREAM_TYPE_OTF':
  2139. continue
  2140. fmt_url = fmt.get('url')
  2141. if not fmt_url:
  2142. sc = compat_parse_qs(fmt.get('signatureCipher'))
  2143. fmt_url = traverse_obj(sc, ('url', -1, T(url_or_none)))
  2144. encrypted_sig = traverse_obj(sc, ('s', -1))
  2145. if not (fmt_url and encrypted_sig):
  2146. continue
  2147. player_url = player_url or self._extract_player_url(webpage)
  2148. if not player_url:
  2149. continue
  2150. try:
  2151. fmt_url = update_url_query(fmt_url, {
  2152. traverse_obj(sc, ('sp', -1)) or 'signature':
  2153. [self._decrypt_signature(encrypted_sig, video_id, player_url)],
  2154. })
  2155. except ExtractorError as e:
  2156. self.report_warning('Signature extraction failed: Some formats may be missing',
  2157. video_id=video_id, only_once=True)
  2158. self.write_debug(error_to_compat_str(e), only_once=True)
  2159. continue
  2160. language_preference = (
  2161. 10 if audio_track.get('audioIsDefault')
  2162. else -10 if 'descriptive' in (traverse_obj(audio_track, ('displayName', T(lower))) or '')
  2163. else -1)
  2164. name = (
  2165. traverse_obj(fmt, ('qualityLabel', T(txt_or_none)))
  2166. or quality.replace('audio_quality_', ''))
  2167. dct = {
  2168. 'format_id': join_nonempty(itag, fmt.get('isDrc') and 'drc'),
  2169. 'url': fmt_url,
  2170. # Format 22 is likely to be damaged: see https://github.com/yt-dlp/yt-dlp/issues/3372
  2171. 'source_preference': ((-5 if itag == '22' else -1)
  2172. + (100 if 'Premium' in name else 0)),
  2173. 'quality': q(quality),
  2174. 'language': join_nonempty(audio_track.get('id', '').split('.')[0],
  2175. 'desc' if language_preference < -1 else '') or None,
  2176. 'language_preference': language_preference,
  2177. # Strictly de-prioritize 3gp formats
  2178. 'preference': -2 if itag == '17' else None,
  2179. }
  2180. if itag:
  2181. itags[itag].add(('https', dct.get('language')))
  2182. self._unthrottle_format_urls(video_id, player_url, dct)
  2183. dct.update(traverse_obj(fmt, {
  2184. 'asr': ('audioSampleRate', T(int_or_none)),
  2185. 'filesize': ('contentLength', T(int_or_none)),
  2186. 'format_note': ('qualityLabel', T(lambda x: x or quality)),
  2187. # for some formats, fps is wrongly returned as 1
  2188. 'fps': ('fps', T(int_or_none), T(lambda f: f if f > 1 else None)),
  2189. 'audio_channels': ('audioChannels', T(int_or_none)),
  2190. 'height': ('height', T(int_or_none)),
  2191. 'has_drm': ('drmFamilies', T(bool)),
  2192. 'tbr': (('averageBitrate', 'bitrate'), T(lambda t: float_or_none(t, 1000))),
  2193. 'width': ('width', T(int_or_none)),
  2194. '_duration_ms': ('approxDurationMs', T(int_or_none)),
  2195. }, get_all=False))
  2196. mime_mobj = re.match(
  2197. r'((?:[^/]+)/(?:[^;]+))(?:;\s*codecs="([^"]+)")?', fmt.get('mimeType') or '')
  2198. if mime_mobj:
  2199. dct['ext'] = mimetype2ext(mime_mobj.group(1))
  2200. dct.update(parse_codecs(mime_mobj.group(2)))
  2201. single_stream = 'none' in (dct.get(c) for c in ('acodec', 'vcodec'))
  2202. if single_stream and dct.get('ext'):
  2203. dct['container'] = dct['ext'] + '_dash'
  2204. if single_stream or itag == '17':
  2205. # avoid Youtube throttling
  2206. dct.update({
  2207. 'protocol': 'http_dash_segments',
  2208. 'fragments': build_fragments(dct),
  2209. } if dct['filesize'] else {
  2210. 'downloader_options': {'http_chunk_size': CHUNK_SIZE}, # No longer useful?
  2211. })
  2212. formats.append(dct)
  2213. def process_manifest_format(f, proto, client_name, itag, all_formats=False):
  2214. key = (proto, f.get('language'))
  2215. if not all_formats and key in itags[itag]:
  2216. return False
  2217. itags[itag].add(key)
  2218. if itag:
  2219. f['format_id'] = (
  2220. '{0}-{1}'.format(itag, proto)
  2221. if all_formats or any(p != proto for p, _ in itags[itag])
  2222. else itag)
  2223. if f.get('source_preference') is None:
  2224. f['source_preference'] = -1
  2225. if itag in ('616', '235'):
  2226. f['format_note'] = join_nonempty(f.get('format_note'), 'Premium', delim=' ')
  2227. f['source_preference'] += 100
  2228. f['quality'] = q(traverse_obj(f, (
  2229. 'format_id', T(lambda s: itag_qualities[s.split('-')[0]])), default=-1))
  2230. if try_call(lambda: f['fps'] <= 1):
  2231. del f['fps']
  2232. if proto == 'hls' and f.get('has_drm'):
  2233. f['has_drm'] = 'maybe'
  2234. f['source_preference'] -= 5
  2235. return True
  2236. hls_manifest_url = streaming_data.get('hlsManifestUrl')
  2237. if hls_manifest_url:
  2238. for f in self._extract_m3u8_formats(
  2239. hls_manifest_url, video_id, 'mp4',
  2240. entry_protocol='m3u8_native', live=is_live, fatal=False):
  2241. if process_manifest_format(
  2242. f, 'hls', None, self._search_regex(
  2243. r'/itag/(\d+)', f['url'], 'itag', default=None)):
  2244. formats.append(f)
  2245. if self._downloader.params.get('youtube_include_dash_manifest', True):
  2246. dash_manifest_url = streaming_data.get('dashManifestUrl')
  2247. if dash_manifest_url:
  2248. for f in self._extract_mpd_formats(
  2249. dash_manifest_url, video_id, fatal=False):
  2250. if process_manifest_format(
  2251. f, 'dash', None, f['format_id']):
  2252. f['filesize'] = traverse_obj(f, (
  2253. ('fragment_base_url', 'url'), T(lambda u: self._search_regex(
  2254. r'/clen/(\d+)', u, 'file size', default=None)),
  2255. T(int_or_none)), get_all=False)
  2256. formats.append(f)
  2257. playable_formats = [f for f in formats if not f.get('has_drm')]
  2258. if formats:
  2259. if not playable_formats:
  2260. # If there are no formats that definitely don't have DRM, all have DRM
  2261. self.report_drm(video_id)
  2262. formats[:] = playable_formats
  2263. else:
  2264. if streaming_data.get('licenseInfos'):
  2265. raise ExtractorError(
  2266. 'This video is DRM protected.', expected=True)
  2267. pemr = try_get(
  2268. playability_status,
  2269. lambda x: x['errorScreen']['playerErrorMessageRenderer'],
  2270. dict) or {}
  2271. reason = get_text(pemr.get('reason')) or playability_status.get('reason')
  2272. subreason = pemr.get('subreason')
  2273. if subreason:
  2274. subreason = clean_html(get_text(subreason))
  2275. if subreason == 'The uploader has not made this video available in your country.':
  2276. countries = microformat.get('availableCountries')
  2277. if not countries:
  2278. regions_allowed = search_meta('regionsAllowed')
  2279. countries = regions_allowed.split(',') if regions_allowed else None
  2280. self.raise_geo_restricted(
  2281. subreason, countries)
  2282. reason += '\n' + subreason
  2283. if reason:
  2284. raise ExtractorError(reason, expected=True)
  2285. self._sort_formats(formats)
  2286. keywords = video_details.get('keywords') or []
  2287. if not keywords and webpage:
  2288. keywords = [
  2289. unescapeHTML(m.group('content'))
  2290. for m in re.finditer(self._meta_regex('og:video:tag'), webpage)]
  2291. for keyword in keywords:
  2292. if keyword.startswith('yt:stretch='):
  2293. mobj = re.search(r'(\d+)\s*:\s*(\d+)', keyword)
  2294. if mobj:
  2295. # NB: float is intentional for forcing float division
  2296. w, h = (float(v) for v in mobj.groups())
  2297. if w > 0 and h > 0:
  2298. ratio = w / h
  2299. for f in formats:
  2300. if f.get('vcodec') != 'none':
  2301. f['stretched_ratio'] = ratio
  2302. break
  2303. thumbnails = []
  2304. for container in (video_details, microformat):
  2305. for thumbnail in try_get(
  2306. container,
  2307. lambda x: x['thumbnail']['thumbnails'], list) or []:
  2308. thumbnail_url = url_or_none(thumbnail.get('url'))
  2309. if not thumbnail_url:
  2310. continue
  2311. thumbnails.append({
  2312. 'height': int_or_none(thumbnail.get('height')),
  2313. 'url': update_url(thumbnail_url, query=None, fragment=None),
  2314. 'width': int_or_none(thumbnail.get('width')),
  2315. })
  2316. if thumbnails:
  2317. break
  2318. else:
  2319. thumbnail = search_meta(['og:image', 'twitter:image'])
  2320. if thumbnail:
  2321. thumbnails = [{'url': thumbnail}]
  2322. category = microformat.get('category') or search_meta('genre')
  2323. channel_id = self._extract_channel_id(
  2324. webpage, videodetails=video_details, metadata=microformat)
  2325. duration = int_or_none(
  2326. video_details.get('lengthSeconds')
  2327. or microformat.get('lengthSeconds')) \
  2328. or parse_duration(search_meta('duration'))
  2329. for f in formats:
  2330. # Some formats may have much smaller duration than others (possibly damaged during encoding)
  2331. # but avoid false positives with small duration differences.
  2332. # Ref: https://github.com/yt-dlp/yt-dlp/issues/2823
  2333. if try_call(lambda x: float(x.pop('_duration_ms')) / duration < 500, args=(f,)):
  2334. self.report_warning(
  2335. '{0}: Some possibly damaged formats will be deprioritized'.format(video_id), only_once=True)
  2336. # Strictly de-prioritize damaged formats
  2337. f['preference'] = -10
  2338. owner_profile_url = self._yt_urljoin(self._extract_author_var(
  2339. webpage, 'url', videodetails=video_details, metadata=microformat))
  2340. uploader = self._extract_author_var(
  2341. webpage, 'name', videodetails=video_details, metadata=microformat)
  2342. info = {
  2343. 'id': video_id,
  2344. 'title': self._live_title(video_title) if is_live else video_title,
  2345. 'formats': formats,
  2346. 'thumbnails': thumbnails,
  2347. 'description': video_description,
  2348. 'upload_date': unified_strdate(
  2349. microformat.get('uploadDate')
  2350. or search_meta('uploadDate')),
  2351. 'uploader': uploader,
  2352. 'channel_id': channel_id,
  2353. 'duration': duration,
  2354. 'view_count': int_or_none(
  2355. video_details.get('viewCount')
  2356. or microformat.get('viewCount')
  2357. or search_meta('interactionCount')),
  2358. 'average_rating': float_or_none(video_details.get('averageRating')),
  2359. 'age_limit': 18 if (
  2360. microformat.get('isFamilySafe') is False
  2361. or search_meta('isFamilyFriendly') == 'false'
  2362. or search_meta('og:restrictions:age') == '18+') else 0,
  2363. 'webpage_url': webpage_url,
  2364. 'categories': [category] if category else None,
  2365. 'tags': keywords,
  2366. 'is_live': is_live,
  2367. }
  2368. pctr = traverse_obj(
  2369. player_response,
  2370. ('captions', 'playerCaptionsTracklistRenderer', T(dict)))
  2371. if pctr:
  2372. def process_language(container, base_url, lang_code, query):
  2373. lang_subs = []
  2374. for fmt in self._SUBTITLE_FORMATS:
  2375. query.update({
  2376. 'fmt': fmt,
  2377. })
  2378. lang_subs.append({
  2379. 'ext': fmt,
  2380. 'url': update_url_query(base_url, query),
  2381. })
  2382. container[lang_code] = lang_subs
  2383. def process_subtitles():
  2384. subtitles = {}
  2385. for caption_track in traverse_obj(pctr, (
  2386. 'captionTracks', lambda _, v: v.get('baseUrl'))):
  2387. base_url = self._yt_urljoin(caption_track['baseUrl'])
  2388. if not base_url:
  2389. continue
  2390. if caption_track.get('kind') != 'asr':
  2391. lang_code = caption_track.get('languageCode')
  2392. if not lang_code:
  2393. continue
  2394. process_language(
  2395. subtitles, base_url, lang_code, {})
  2396. continue
  2397. automatic_captions = {}
  2398. for translation_language in traverse_obj(pctr, (
  2399. 'translationLanguages', lambda _, v: v.get('languageCode'))):
  2400. translation_language_code = translation_language['languageCode']
  2401. process_language(
  2402. automatic_captions, base_url, translation_language_code,
  2403. {'tlang': translation_language_code})
  2404. info['automatic_captions'] = automatic_captions
  2405. info['subtitles'] = subtitles
  2406. process_subtitles()
  2407. parsed_url = compat_urllib_parse_urlparse(url)
  2408. for component in (parsed_url.fragment, parsed_url.query):
  2409. query = compat_parse_qs(component)
  2410. for k, v in query.items():
  2411. for d_k, s_ks in [('start', ('start', 't')), ('end', ('end',))]:
  2412. d_k += '_time'
  2413. if d_k not in info and k in s_ks:
  2414. info[d_k] = parse_duration(query[k][0])
  2415. if video_description:
  2416. # Youtube Music Auto-generated description
  2417. 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)
  2418. if mobj:
  2419. release_year = mobj.group('release_year')
  2420. release_date = mobj.group('release_date')
  2421. if release_date:
  2422. release_date = release_date.replace('-', '')
  2423. if not release_year:
  2424. release_year = release_date[:4]
  2425. info.update({
  2426. 'album': mobj.group('album'.strip()),
  2427. 'artist': mobj.group('clean_artist') or ', '.join(a.strip() for a in mobj.group('artist').split('·')),
  2428. 'track': mobj.group('track').strip(),
  2429. 'release_date': release_date,
  2430. 'release_year': int_or_none(release_year),
  2431. })
  2432. initial_data = None
  2433. if webpage:
  2434. initial_data = self._extract_yt_initial_variable(
  2435. webpage, self._YT_INITIAL_DATA_RE, video_id,
  2436. 'yt initial data')
  2437. if not initial_data:
  2438. initial_data = self._call_api(
  2439. 'next', {'videoId': video_id}, video_id, fatal=False)
  2440. if initial_data:
  2441. chapters = self._extract_chapters_from_json(
  2442. initial_data, video_id, duration)
  2443. if not chapters:
  2444. for engagment_pannel in (initial_data.get('engagementPanels') or []):
  2445. contents = try_get(
  2446. engagment_pannel, lambda x: x['engagementPanelSectionListRenderer']['content']['macroMarkersListRenderer']['contents'],
  2447. list)
  2448. if not contents:
  2449. continue
  2450. def chapter_time(mmlir):
  2451. return parse_duration(
  2452. get_text(mmlir.get('timeDescription')))
  2453. chapters = []
  2454. for next_num, content in enumerate(contents, start=1):
  2455. mmlir = content.get('macroMarkersListItemRenderer') or {}
  2456. start_time = chapter_time(mmlir)
  2457. end_time = chapter_time(try_get(
  2458. contents, lambda x: x[next_num]['macroMarkersListItemRenderer'])) \
  2459. if next_num < len(contents) else duration
  2460. if start_time is None or end_time is None:
  2461. continue
  2462. chapters.append({
  2463. 'start_time': start_time,
  2464. 'end_time': end_time,
  2465. 'title': get_text(mmlir.get('title')),
  2466. })
  2467. if chapters:
  2468. break
  2469. if chapters:
  2470. info['chapters'] = chapters
  2471. contents = try_get(
  2472. initial_data,
  2473. lambda x: x['contents']['twoColumnWatchNextResults']['results']['results']['contents'],
  2474. list) or []
  2475. if not info['channel_id']:
  2476. channel_id = self._extract_channel_id('', renderers=contents)
  2477. if not info['uploader']:
  2478. info['uploader'] = self._extract_author_var('', 'name', renderers=contents)
  2479. if not owner_profile_url:
  2480. owner_profile_url = self._yt_urljoin(self._extract_author_var('', 'url', renderers=contents))
  2481. for content in contents:
  2482. vpir = content.get('videoPrimaryInfoRenderer')
  2483. if vpir:
  2484. stl = vpir.get('superTitleLink')
  2485. if stl:
  2486. stl = get_text(stl)
  2487. if try_get(
  2488. vpir,
  2489. lambda x: x['superTitleIcon']['iconType']) == 'LOCATION_PIN':
  2490. info['location'] = stl
  2491. else:
  2492. # •? doesn't match, but [•]? does; \xa0 = non-breaking space
  2493. mobj = re.search(r'([^\xa0\s].*?)[\xa0\s]*S(\d+)[\xa0\s]*[•]?[\xa0\s]*E(\d+)', stl)
  2494. if mobj:
  2495. info.update({
  2496. 'series': mobj.group(1),
  2497. 'season_number': int(mobj.group(2)),
  2498. 'episode_number': int(mobj.group(3)),
  2499. })
  2500. for tlb in (try_get(
  2501. vpir,
  2502. lambda x: x['videoActions']['menuRenderer']['topLevelButtons'],
  2503. list) or []):
  2504. tbr = traverse_obj(tlb, ('segmentedLikeDislikeButtonRenderer', 'likeButton', 'toggleButtonRenderer'), 'toggleButtonRenderer') or {}
  2505. for getter, regex in [(
  2506. lambda x: x['defaultText']['accessibility']['accessibilityData'],
  2507. r'(?P<count>[\d,]+)\s*(?P<type>(?:dis)?like)'), ([
  2508. lambda x: x['accessibility'],
  2509. lambda x: x['accessibilityData']['accessibilityData'],
  2510. ], r'(?P<type>(?:dis)?like) this video along with (?P<count>[\d,]+) other people')]:
  2511. label = (try_get(tbr, getter, dict) or {}).get('label')
  2512. if label:
  2513. mobj = re.match(regex, label)
  2514. if mobj:
  2515. info[mobj.group('type') + '_count'] = str_to_int(mobj.group('count'))
  2516. break
  2517. sbr_tooltip = try_get(
  2518. vpir, lambda x: x['sentimentBar']['sentimentBarRenderer']['tooltip'])
  2519. if sbr_tooltip:
  2520. # however dislike_count was hidden by YT, as if there could ever be dislikable content on YT
  2521. like_count, dislike_count = sbr_tooltip.split(' / ')
  2522. info.update({
  2523. 'like_count': str_to_int(like_count),
  2524. 'dislike_count': str_to_int(dislike_count),
  2525. })
  2526. else:
  2527. info['like_count'] = traverse_obj(vpir, (
  2528. 'videoActions', 'menuRenderer', 'topLevelButtons', Ellipsis,
  2529. 'segmentedLikeDislikeButtonViewModel', 'likeButtonViewModel', 'likeButtonViewModel',
  2530. 'toggleButtonViewModel', 'toggleButtonViewModel', 'defaultButtonViewModel',
  2531. 'buttonViewModel', (('title', ('accessibilityText', T(lambda s: s.split()), Ellipsis))), T(parse_count)),
  2532. get_all=False)
  2533. vsir = content.get('videoSecondaryInfoRenderer')
  2534. if vsir:
  2535. rows = try_get(
  2536. vsir,
  2537. lambda x: x['metadataRowContainer']['metadataRowContainerRenderer']['rows'],
  2538. list) or []
  2539. multiple_songs = False
  2540. for row in rows:
  2541. if try_get(row, lambda x: x['metadataRowRenderer']['hasDividerLine']) is True:
  2542. multiple_songs = True
  2543. break
  2544. for row in rows:
  2545. mrr = row.get('metadataRowRenderer') or {}
  2546. mrr_title = mrr.get('title')
  2547. if not mrr_title:
  2548. continue
  2549. mrr_title = get_text(mrr['title'])
  2550. mrr_contents_text = get_text(mrr['contents'][0])
  2551. if mrr_title == 'License':
  2552. info['license'] = mrr_contents_text
  2553. elif not multiple_songs:
  2554. if mrr_title == 'Album':
  2555. info['album'] = mrr_contents_text
  2556. elif mrr_title == 'Artist':
  2557. info['artist'] = mrr_contents_text
  2558. elif mrr_title == 'Song':
  2559. info['track'] = mrr_contents_text
  2560. # this is not extraction but spelunking!
  2561. carousel_lockups = traverse_obj(
  2562. initial_data,
  2563. ('engagementPanels', Ellipsis, 'engagementPanelSectionListRenderer',
  2564. 'content', 'structuredDescriptionContentRenderer', 'items', Ellipsis,
  2565. 'videoDescriptionMusicSectionRenderer', 'carouselLockups', Ellipsis),
  2566. expected_type=dict) or []
  2567. # try to reproduce logic from metadataRowContainerRenderer above (if it still is)
  2568. fields = (('ALBUM', 'album'), ('ARTIST', 'artist'), ('SONG', 'track'), ('LICENSES', 'license'))
  2569. # multiple_songs ?
  2570. if len(carousel_lockups) > 1:
  2571. fields = fields[-1:]
  2572. for info_row in traverse_obj(
  2573. carousel_lockups,
  2574. (0, 'carouselLockupRenderer', 'infoRows', Ellipsis, 'infoRowRenderer'),
  2575. expected_type=dict):
  2576. row_title = traverse_obj(info_row, ('title', 'simpleText'))
  2577. row_text = traverse_obj(info_row, 'defaultMetadata', 'expandedMetadata', expected_type=get_text)
  2578. if not row_text:
  2579. continue
  2580. for name, field in fields:
  2581. if name == row_title and not info.get(field):
  2582. info[field] = row_text
  2583. for s_k, d_k in [('artist', 'creator'), ('track', 'alt_title')]:
  2584. v = info.get(s_k)
  2585. if v:
  2586. info[d_k] = v
  2587. self.mark_watched(video_id, player_response)
  2588. return merge_dicts(
  2589. info, {
  2590. 'uploader_id': self._extract_uploader_id(owner_profile_url),
  2591. 'uploader_url': owner_profile_url,
  2592. 'channel_id': channel_id,
  2593. 'channel_url': channel_id and self._yt_urljoin('/channel/' + channel_id),
  2594. 'channel': info['uploader'],
  2595. })
  2596. class YoutubeTabIE(YoutubeBaseInfoExtractor):
  2597. IE_DESC = 'YouTube.com tab'
  2598. _VALID_URL = r'''(?x)
  2599. https?://
  2600. (?:\w+\.)?
  2601. (?:
  2602. youtube(?:kids)?\.com|
  2603. invidio\.us
  2604. )/
  2605. (?:
  2606. (?:channel|c|user|feed|hashtag)/|
  2607. (?:playlist|watch)\?.*?\blist=|
  2608. (?!(?:watch|embed|v|e|results)\b)
  2609. )
  2610. (?P<id>[^/?\#&]+)
  2611. '''
  2612. IE_NAME = 'youtube:tab'
  2613. _TESTS = [{
  2614. # Shorts
  2615. 'url': 'https://www.youtube.com/@SuperCooperShorts/shorts',
  2616. 'playlist_mincount': 5,
  2617. 'info_dict': {
  2618. 'description': 'Short clips from Super Cooper Sundays!',
  2619. 'id': 'UCKMA8kHZ8bPYpnMNaUSxfEQ',
  2620. 'title': 'Super Cooper Shorts - Shorts',
  2621. 'uploader': 'Super Cooper Shorts',
  2622. 'uploader_id': '@SuperCooperShorts',
  2623. },
  2624. }, {
  2625. # Channel that does not have a Shorts tab. Test should just download videos on Home tab instead
  2626. 'url': 'https://www.youtube.com/@emergencyawesome/shorts',
  2627. 'info_dict': {
  2628. 'description': 'md5:592c080c06fef4de3c902c4a8eecd850',
  2629. 'id': 'UCDiFRMQWpcp8_KD4vwIVicw',
  2630. 'title': 'Emergency Awesome - Home',
  2631. },
  2632. 'playlist_mincount': 5,
  2633. 'skip': 'new test page needed to replace `Emergency Awesome - Shorts`',
  2634. }, {
  2635. # playlists, multipage
  2636. 'url': 'https://www.youtube.com/c/ИгорьКлейнер/playlists?view=1&flow=grid',
  2637. 'playlist_mincount': 94,
  2638. 'info_dict': {
  2639. 'id': 'UCqj7Cz7revf5maW9g5pgNcg',
  2640. 'title': r're:Igor Kleiner(?: Ph\.D\.)? - Playlists',
  2641. 'description': 'md5:be97ee0f14ee314f1f002cf187166ee2',
  2642. 'uploader': 'Igor Kleiner',
  2643. 'uploader_id': '@IgorDataScience',
  2644. },
  2645. }, {
  2646. # playlists, multipage, different order
  2647. 'url': 'https://www.youtube.com/user/igorkle1/playlists?view=1&sort=dd',
  2648. 'playlist_mincount': 94,
  2649. 'info_dict': {
  2650. 'id': 'UCqj7Cz7revf5maW9g5pgNcg',
  2651. 'title': r're:Igor Kleiner(?: Ph\.D\.)? - Playlists',
  2652. 'description': 'md5:be97ee0f14ee314f1f002cf187166ee2',
  2653. 'uploader': 'Igor Kleiner',
  2654. 'uploader_id': '@IgorDataScience',
  2655. },
  2656. }, {
  2657. # playlists, series
  2658. 'url': 'https://www.youtube.com/c/3blue1brown/playlists?view=50&sort=dd&shelf_id=3',
  2659. 'playlist_mincount': 5,
  2660. 'info_dict': {
  2661. 'id': 'UCYO_jab_esuFRV4b17AJtAw',
  2662. 'title': '3Blue1Brown - Playlists',
  2663. 'description': 'md5:e1384e8a133307dd10edee76e875d62f',
  2664. 'uploader': '3Blue1Brown',
  2665. 'uploader_id': '@3blue1brown',
  2666. },
  2667. }, {
  2668. # playlists, singlepage
  2669. 'url': 'https://www.youtube.com/user/ThirstForScience/playlists',
  2670. 'playlist_mincount': 4,
  2671. 'info_dict': {
  2672. 'id': 'UCAEtajcuhQ6an9WEzY9LEMQ',
  2673. 'title': 'ThirstForScience - Playlists',
  2674. 'description': 'md5:609399d937ea957b0f53cbffb747a14c',
  2675. 'uploader': 'ThirstForScience',
  2676. 'uploader_id': '@ThirstForScience',
  2677. },
  2678. }, {
  2679. 'url': 'https://www.youtube.com/c/ChristophLaimer/playlists',
  2680. 'only_matching': True,
  2681. }, {
  2682. # basic, single video playlist
  2683. 'url': 'https://www.youtube.com/playlist?list=PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc',
  2684. 'info_dict': {
  2685. 'id': 'PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc',
  2686. 'title': 'youtube-dl public playlist',
  2687. 'uploader': 'Sergey M.',
  2688. 'uploader_id': '@sergeym.6173',
  2689. 'channel_id': 'UCmlqkdCBesrv2Lak1mF_MxA',
  2690. },
  2691. 'playlist_count': 1,
  2692. }, {
  2693. # empty playlist
  2694. 'url': 'https://www.youtube.com/playlist?list=PL4lCao7KL_QFodcLWhDpGCYnngnHtQ-Xf',
  2695. 'info_dict': {
  2696. 'id': 'PL4lCao7KL_QFodcLWhDpGCYnngnHtQ-Xf',
  2697. 'title': 'youtube-dl empty playlist',
  2698. 'uploader': 'Sergey M.',
  2699. 'uploader_id': '@sergeym.6173',
  2700. 'channel_id': 'UCmlqkdCBesrv2Lak1mF_MxA',
  2701. },
  2702. 'playlist_count': 0,
  2703. }, {
  2704. # Home tab
  2705. 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/featured',
  2706. 'info_dict': {
  2707. 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
  2708. 'title': 'lex will - Home',
  2709. 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
  2710. 'uploader': 'lex will',
  2711. 'uploader_id': '@lexwill718',
  2712. },
  2713. 'playlist_mincount': 2,
  2714. }, {
  2715. # Videos tab
  2716. 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/videos',
  2717. 'info_dict': {
  2718. 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
  2719. 'title': 'lex will - Videos',
  2720. 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
  2721. 'uploader': 'lex will',
  2722. 'uploader_id': '@lexwill718',
  2723. },
  2724. 'playlist_mincount': 975,
  2725. }, {
  2726. # Videos tab, sorted by popular
  2727. 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/videos?view=0&sort=p&flow=grid',
  2728. 'info_dict': {
  2729. 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
  2730. 'title': 'lex will - Videos',
  2731. 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
  2732. 'uploader': 'lex will',
  2733. 'uploader_id': '@lexwill718',
  2734. },
  2735. 'playlist_mincount': 199,
  2736. }, {
  2737. # Playlists tab
  2738. 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/playlists',
  2739. 'info_dict': {
  2740. 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
  2741. 'title': 'lex will - Playlists',
  2742. 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
  2743. 'uploader': 'lex will',
  2744. 'uploader_id': '@lexwill718',
  2745. },
  2746. 'playlist_mincount': 17,
  2747. }, {
  2748. # Community tab
  2749. 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/community',
  2750. 'info_dict': {
  2751. 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
  2752. 'title': 'lex will - Community',
  2753. 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
  2754. 'uploader': 'lex will',
  2755. 'uploader_id': '@lexwill718',
  2756. },
  2757. 'playlist_mincount': 18,
  2758. }, {
  2759. # Channels tab
  2760. 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w/channels',
  2761. 'info_dict': {
  2762. 'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
  2763. 'title': r're:lex will - (?:Home|Channels)',
  2764. 'description': 'md5:2163c5d0ff54ed5f598d6a7e6211e488',
  2765. 'uploader': 'lex will',
  2766. 'uploader_id': '@lexwill718',
  2767. },
  2768. 'playlist_mincount': 75,
  2769. }, {
  2770. # Releases tab
  2771. 'url': 'https://www.youtube.com/@daftpunk/releases',
  2772. 'info_dict': {
  2773. 'id': 'UC_kRDKYrUlrbtrSiyu5Tflg',
  2774. 'title': 'Daft Punk - Releases',
  2775. 'description': 'Daft Punk (1993 - 2021) - Official YouTube Channel',
  2776. 'uploader_id': '@daftpunk',
  2777. 'uploader': 'Daft Punk',
  2778. },
  2779. 'playlist_mincount': 36,
  2780. }, {
  2781. 'url': 'https://invidio.us/channel/UCmlqkdCBesrv2Lak1mF_MxA',
  2782. 'only_matching': True,
  2783. }, {
  2784. 'url': 'https://www.youtubekids.com/channel/UCmlqkdCBesrv2Lak1mF_MxA',
  2785. 'only_matching': True,
  2786. }, {
  2787. 'url': 'https://music.youtube.com/channel/UCmlqkdCBesrv2Lak1mF_MxA',
  2788. 'only_matching': True,
  2789. }, {
  2790. 'note': 'Playlist with deleted videos (#651). As a bonus, the video #51 is also twice in this list.',
  2791. 'url': 'https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC',
  2792. 'info_dict': {
  2793. 'title': '29C3: Not my department',
  2794. 'id': 'PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC',
  2795. 'uploader': 'Christiaan008',
  2796. 'uploader_id': '@ChRiStIaAn008',
  2797. 'channel_id': 'UCEPzS1rYsrkqzSLNp76nrcg',
  2798. },
  2799. 'playlist_count': 96,
  2800. }, {
  2801. 'note': 'Large playlist',
  2802. 'url': 'https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q',
  2803. 'info_dict': {
  2804. 'title': 'Uploads from Cauchemar',
  2805. 'id': 'UUBABnxM4Ar9ten8Mdjj1j0Q',
  2806. 'uploader': 'Cauchemar',
  2807. 'uploader_id': '@Cauchemar89',
  2808. 'channel_id': 'UCBABnxM4Ar9ten8Mdjj1j0Q',
  2809. },
  2810. 'playlist_mincount': 1123,
  2811. }, {
  2812. # even larger playlist, 8832 videos
  2813. 'url': 'http://www.youtube.com/user/NASAgovVideo/videos',
  2814. 'only_matching': True,
  2815. }, {
  2816. 'note': 'Buggy playlist: the webpage has a "Load more" button but it doesn\'t have more videos',
  2817. 'url': 'https://www.youtube.com/playlist?list=UUXw-G3eDE9trcvY2sBMM_aA',
  2818. 'info_dict': {
  2819. 'title': 'Uploads from Interstellar Movie',
  2820. 'id': 'UUXw-G3eDE9trcvY2sBMM_aA',
  2821. 'uploader': 'Interstellar Movie',
  2822. 'uploader_id': '@InterstellarMovie',
  2823. 'channel_id': 'UCXw-G3eDE9trcvY2sBMM_aA',
  2824. },
  2825. 'playlist_mincount': 21,
  2826. }, {
  2827. # https://github.com/ytdl-org/youtube-dl/issues/21844
  2828. 'url': 'https://www.youtube.com/playlist?list=PLzH6n4zXuckpfMu_4Ff8E7Z1behQks5ba',
  2829. 'info_dict': {
  2830. 'title': 'Data Analysis with Dr Mike Pound',
  2831. 'id': 'PLzH6n4zXuckpfMu_4Ff8E7Z1behQks5ba',
  2832. 'uploader': 'Computerphile',
  2833. 'uploader_id': '@Computerphile',
  2834. 'channel_id': 'UC9-y-6csu5WGm29I7JiwpnA',
  2835. },
  2836. 'playlist_mincount': 11,
  2837. }, {
  2838. 'url': 'https://invidio.us/playlist?list=PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc',
  2839. 'only_matching': True,
  2840. }, {
  2841. # Playlist URL that does not actually serve a playlist
  2842. 'url': 'https://www.youtube.com/watch?v=FqZTN594JQw&list=PLMYEtVRpaqY00V9W81Cwmzp6N6vZqfUKD4',
  2843. 'info_dict': {
  2844. 'id': 'FqZTN594JQw',
  2845. 'ext': 'webm',
  2846. 'title': "Smiley's People 01 detective, Adventure Series, Action",
  2847. 'uploader': 'STREEM',
  2848. 'uploader_id': 'UCyPhqAZgwYWZfxElWVbVJng',
  2849. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/channel/UCyPhqAZgwYWZfxElWVbVJng',
  2850. 'upload_date': '20150526',
  2851. 'license': 'Standard YouTube License',
  2852. 'description': 'md5:507cdcb5a49ac0da37a920ece610be80',
  2853. 'categories': ['People & Blogs'],
  2854. 'tags': list,
  2855. 'view_count': int,
  2856. 'like_count': int,
  2857. },
  2858. 'params': {
  2859. 'skip_download': True,
  2860. },
  2861. 'skip': 'This video is not available.',
  2862. 'add_ie': [YoutubeIE.ie_key()],
  2863. }, {
  2864. 'url': 'https://www.youtubekids.com/watch?v=Agk7R8I8o5U&list=PUZ6jURNr1WQZCNHF0ao-c0g',
  2865. 'only_matching': True,
  2866. }, {
  2867. 'url': 'https://www.youtube.com/watch?v=MuAGGZNfUkU&list=RDMM',
  2868. 'only_matching': True,
  2869. }, {
  2870. 'url': 'https://www.youtube.com/channel/UCoMdktPbSTixAyNGwb-UYkQ/live',
  2871. 'info_dict': {
  2872. 'id': r're:[\da-zA-Z_-]{8,}',
  2873. 'ext': 'mp4',
  2874. 'title': r're:(?s)[A-Z].{20,}',
  2875. 'uploader': 'Sky News',
  2876. 'uploader_id': '@SkyNews',
  2877. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@SkyNews',
  2878. 'upload_date': r're:\d{8}',
  2879. 'description': r're:(?s)(?:.*\n)+SUBSCRIBE to our YouTube channel for more videos: http://www\.youtube\.com/skynews *\n.*',
  2880. 'categories': ['News & Politics'],
  2881. 'tags': list,
  2882. 'like_count': int,
  2883. },
  2884. 'params': {
  2885. 'skip_download': True,
  2886. },
  2887. }, {
  2888. 'url': 'https://www.youtube.com/user/TheYoungTurks/live',
  2889. 'info_dict': {
  2890. 'id': 'a48o2S1cPoo',
  2891. 'ext': 'mp4',
  2892. 'title': 'The Young Turks - Live Main Show',
  2893. 'uploader': 'The Young Turks',
  2894. 'uploader_id': 'TheYoungTurks',
  2895. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/user/TheYoungTurks',
  2896. 'upload_date': '20150715',
  2897. 'license': 'Standard YouTube License',
  2898. 'description': 'md5:438179573adcdff3c97ebb1ee632b891',
  2899. 'categories': ['News & Politics'],
  2900. 'tags': ['Cenk Uygur (TV Program Creator)', 'The Young Turks (Award-Winning Work)', 'Talk Show (TV Genre)'],
  2901. 'like_count': int,
  2902. },
  2903. 'params': {
  2904. 'skip_download': True,
  2905. },
  2906. 'only_matching': True,
  2907. }, {
  2908. 'url': 'https://www.youtube.com/channel/UC1yBKRuGpC1tSM73A0ZjYjQ/live',
  2909. 'only_matching': True,
  2910. }, {
  2911. 'url': 'https://www.youtube.com/c/CommanderVideoHq/live',
  2912. 'only_matching': True,
  2913. }, {
  2914. 'url': 'https://www.youtube.com/feed/trending',
  2915. 'only_matching': True,
  2916. }, {
  2917. # needs auth
  2918. 'url': 'https://www.youtube.com/feed/library',
  2919. 'only_matching': True,
  2920. }, {
  2921. # needs auth
  2922. 'url': 'https://www.youtube.com/feed/history',
  2923. 'only_matching': True,
  2924. }, {
  2925. # needs auth
  2926. 'url': 'https://www.youtube.com/feed/subscriptions',
  2927. 'only_matching': True,
  2928. }, {
  2929. # needs auth
  2930. 'url': 'https://www.youtube.com/feed/watch_later',
  2931. 'only_matching': True,
  2932. }, {
  2933. # no longer available?
  2934. 'url': 'https://www.youtube.com/feed/recommended',
  2935. 'only_matching': True,
  2936. }, {
  2937. # inline playlist with not always working continuations
  2938. 'url': 'https://www.youtube.com/watch?v=UC6u0Tct-Fo&list=PL36D642111D65BE7C',
  2939. 'only_matching': True,
  2940. }, {
  2941. 'url': 'https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8',
  2942. 'only_matching': True,
  2943. }, {
  2944. 'url': 'https://www.youtube.com/course',
  2945. 'only_matching': True,
  2946. }, {
  2947. 'url': 'https://www.youtube.com/zsecurity',
  2948. 'only_matching': True,
  2949. }, {
  2950. 'url': 'http://www.youtube.com/NASAgovVideo/videos',
  2951. 'only_matching': True,
  2952. }, {
  2953. 'url': 'https://www.youtube.com/TheYoungTurks/live',
  2954. 'only_matching': True,
  2955. }, {
  2956. 'url': 'https://www.youtube.com/hashtag/cctv9',
  2957. 'info_dict': {
  2958. 'id': 'cctv9',
  2959. 'title': '#cctv9',
  2960. },
  2961. 'playlist_mincount': 350,
  2962. }, {
  2963. 'url': 'https://www.youtube.com/watch?list=PLW4dVinRY435CBE_JD3t-0SRXKfnZHS1P&feature=youtu.be&v=M9cJMXmQ_ZU',
  2964. 'only_matching': True,
  2965. }, {
  2966. 'note': 'Search tab',
  2967. 'url': 'https://www.youtube.com/c/3blue1brown/search?query=linear%20algebra',
  2968. 'playlist_mincount': 20,
  2969. 'info_dict': {
  2970. 'id': 'UCYO_jab_esuFRV4b17AJtAw',
  2971. 'title': '3Blue1Brown - Search - linear algebra',
  2972. 'description': 'md5:e1384e8a133307dd10edee76e875d62f',
  2973. 'uploader': '3Blue1Brown',
  2974. 'uploader_id': '@3blue1brown',
  2975. 'channel_id': 'UCYO_jab_esuFRV4b17AJtAw',
  2976. },
  2977. }]
  2978. @classmethod
  2979. def suitable(cls, url):
  2980. return not YoutubeIE.suitable(url) and super(
  2981. YoutubeTabIE, cls).suitable(url)
  2982. @staticmethod
  2983. def _extract_grid_item_renderer(item):
  2984. assert isinstance(item, dict)
  2985. for key, renderer in item.items():
  2986. if not key.startswith('grid') or not key.endswith('Renderer'):
  2987. continue
  2988. if not isinstance(renderer, dict):
  2989. continue
  2990. return renderer
  2991. @staticmethod
  2992. def _get_text(r, k):
  2993. return traverse_obj(
  2994. r, (k, 'runs', 0, 'text'), (k, 'simpleText'),
  2995. expected_type=txt_or_none)
  2996. def _grid_entries(self, grid_renderer):
  2997. for item in traverse_obj(grid_renderer, ('items', Ellipsis, T(dict))):
  2998. lockup_view_model = traverse_obj(item, ('lockupViewModel', T(dict)))
  2999. if lockup_view_model:
  3000. entry = self._extract_lockup_view_model(lockup_view_model)
  3001. if entry:
  3002. yield entry
  3003. continue
  3004. renderer = self._extract_grid_item_renderer(item)
  3005. if not isinstance(renderer, dict):
  3006. continue
  3007. title = self._get_text(renderer, 'title')
  3008. # playlist
  3009. playlist_id = renderer.get('playlistId')
  3010. if playlist_id:
  3011. yield self.url_result(
  3012. 'https://www.youtube.com/playlist?list=%s' % playlist_id,
  3013. ie=YoutubeTabIE.ie_key(), video_id=playlist_id,
  3014. video_title=title)
  3015. continue
  3016. # video
  3017. video_id = renderer.get('videoId')
  3018. if video_id:
  3019. yield self._extract_video(renderer)
  3020. continue
  3021. # channel
  3022. channel_id = renderer.get('channelId')
  3023. if channel_id:
  3024. title = self._get_text(renderer, 'title')
  3025. yield self.url_result(
  3026. 'https://www.youtube.com/channel/%s' % channel_id,
  3027. ie=YoutubeTabIE.ie_key(), video_title=title)
  3028. continue
  3029. # generic endpoint URL support
  3030. ep_url = urljoin('https://www.youtube.com/', try_get(
  3031. renderer, lambda x: x['navigationEndpoint']['commandMetadata']['webCommandMetadata']['url'],
  3032. compat_str))
  3033. if ep_url:
  3034. for ie in (YoutubeTabIE, YoutubePlaylistIE, YoutubeIE):
  3035. if ie.suitable(ep_url):
  3036. yield self.url_result(
  3037. ep_url, ie=ie.ie_key(), video_id=ie._match_id(ep_url), video_title=title)
  3038. break
  3039. def _shelf_entries_from_content(self, shelf_renderer):
  3040. content = shelf_renderer.get('content')
  3041. if not isinstance(content, dict):
  3042. return
  3043. renderer = content.get('gridRenderer')
  3044. if renderer:
  3045. # TODO: add support for nested playlists so each shelf is processed
  3046. # as separate playlist
  3047. # TODO: this includes only first N items
  3048. for entry in self._grid_entries(renderer):
  3049. yield entry
  3050. renderer = content.get('horizontalListRenderer')
  3051. if renderer:
  3052. # TODO
  3053. pass
  3054. def _shelf_entries(self, shelf_renderer, skip_channels=False):
  3055. ep = try_get(
  3056. shelf_renderer, lambda x: x['endpoint']['commandMetadata']['webCommandMetadata']['url'],
  3057. compat_str)
  3058. shelf_url = urljoin('https://www.youtube.com', ep)
  3059. if shelf_url:
  3060. # Skipping links to another channels, note that checking for
  3061. # endpoint.commandMetadata.webCommandMetadata.webPageTypwebPageType == WEB_PAGE_TYPE_CHANNEL
  3062. # will not work
  3063. if skip_channels and '/channels?' in shelf_url:
  3064. return
  3065. title = try_get(
  3066. shelf_renderer, lambda x: x['title']['runs'][0]['text'], compat_str)
  3067. yield self.url_result(shelf_url, video_title=title)
  3068. # Shelf may not contain shelf URL, fallback to extraction from content
  3069. for entry in self._shelf_entries_from_content(shelf_renderer):
  3070. yield entry
  3071. def _playlist_entries(self, video_list_renderer):
  3072. for content in video_list_renderer['contents']:
  3073. if not isinstance(content, dict):
  3074. continue
  3075. renderer = content.get('playlistVideoRenderer') or content.get('playlistPanelVideoRenderer')
  3076. if not isinstance(renderer, dict):
  3077. continue
  3078. video_id = renderer.get('videoId')
  3079. if not video_id:
  3080. continue
  3081. yield self._extract_video(renderer)
  3082. def _extract_lockup_view_model(self, view_model):
  3083. content_id = view_model.get('contentId')
  3084. if not content_id:
  3085. return
  3086. content_type = view_model.get('contentType')
  3087. if content_type not in ('LOCKUP_CONTENT_TYPE_PLAYLIST', 'LOCKUP_CONTENT_TYPE_PODCAST'):
  3088. self.report_warning(
  3089. 'Unsupported lockup view model content type "{0}"{1}'.format(content_type, bug_reports_message()), only_once=True)
  3090. return
  3091. return merge_dicts(self.url_result(
  3092. update_url_query('https://www.youtube.com/playlist', {'list': content_id}),
  3093. ie=YoutubeTabIE.ie_key(), video_id=content_id), {
  3094. 'title': traverse_obj(view_model, (
  3095. 'metadata', 'lockupMetadataViewModel', 'title', 'content', T(compat_str))),
  3096. 'thumbnails': self._extract_thumbnails(view_model, (
  3097. 'contentImage', 'collectionThumbnailViewModel', 'primaryThumbnail',
  3098. 'thumbnailViewModel', 'image'), final_key='sources'),
  3099. })
  3100. def _video_entry(self, video_renderer):
  3101. video_id = video_renderer.get('videoId')
  3102. if video_id:
  3103. return self._extract_video(video_renderer)
  3104. def _post_thread_entries(self, post_thread_renderer):
  3105. post_renderer = try_get(
  3106. post_thread_renderer, lambda x: x['post']['backstagePostRenderer'], dict)
  3107. if not post_renderer:
  3108. return
  3109. # video attachment
  3110. video_renderer = try_get(
  3111. post_renderer, lambda x: x['backstageAttachment']['videoRenderer'], dict)
  3112. video_id = None
  3113. if video_renderer:
  3114. entry = self._video_entry(video_renderer)
  3115. if entry:
  3116. yield entry
  3117. # inline video links
  3118. runs = try_get(post_renderer, lambda x: x['contentText']['runs'], list) or []
  3119. for run in runs:
  3120. if not isinstance(run, dict):
  3121. continue
  3122. ep_url = try_get(
  3123. run, lambda x: x['navigationEndpoint']['urlEndpoint']['url'], compat_str)
  3124. if not ep_url:
  3125. continue
  3126. if not YoutubeIE.suitable(ep_url):
  3127. continue
  3128. ep_video_id = YoutubeIE._match_id(ep_url)
  3129. if video_id == ep_video_id:
  3130. continue
  3131. yield self.url_result(ep_url, ie=YoutubeIE.ie_key(), video_id=video_id)
  3132. def _post_thread_continuation_entries(self, post_thread_continuation):
  3133. contents = post_thread_continuation.get('contents')
  3134. if not isinstance(contents, list):
  3135. return
  3136. for content in contents:
  3137. renderer = content.get('backstagePostThreadRenderer')
  3138. if not isinstance(renderer, dict):
  3139. continue
  3140. for entry in self._post_thread_entries(renderer):
  3141. yield entry
  3142. def _rich_grid_entries(self, contents):
  3143. for content in contents:
  3144. content = traverse_obj(
  3145. content, ('richItemRenderer', 'content'),
  3146. expected_type=dict) or {}
  3147. video_renderer = traverse_obj(
  3148. content, 'videoRenderer', 'reelItemRenderer',
  3149. expected_type=dict)
  3150. if video_renderer:
  3151. entry = self._video_entry(video_renderer)
  3152. if entry:
  3153. yield entry
  3154. # playlist
  3155. renderer = traverse_obj(
  3156. content, 'playlistRenderer', expected_type=dict) or {}
  3157. title = self._get_text(renderer, 'title')
  3158. playlist_id = renderer.get('playlistId')
  3159. if playlist_id:
  3160. yield self.url_result(
  3161. 'https://www.youtube.com/playlist?list=%s' % playlist_id,
  3162. ie=YoutubeTabIE.ie_key(), video_id=playlist_id,
  3163. video_title=title)
  3164. @staticmethod
  3165. def _build_continuation_query(continuation, ctp=None):
  3166. query = {
  3167. 'ctoken': continuation,
  3168. 'continuation': continuation,
  3169. }
  3170. if ctp:
  3171. query['itct'] = ctp
  3172. return query
  3173. @staticmethod
  3174. def _extract_next_continuation_data(renderer):
  3175. next_continuation = try_get(
  3176. renderer, lambda x: x['continuations'][0]['nextContinuationData'], dict)
  3177. if not next_continuation:
  3178. return
  3179. continuation = next_continuation.get('continuation')
  3180. if not continuation:
  3181. return
  3182. ctp = next_continuation.get('clickTrackingParams')
  3183. return YoutubeTabIE._build_continuation_query(continuation, ctp)
  3184. @classmethod
  3185. def _extract_continuation(cls, renderer):
  3186. next_continuation = cls._extract_next_continuation_data(renderer)
  3187. if next_continuation:
  3188. return next_continuation
  3189. contents = []
  3190. for key in ('contents', 'items'):
  3191. contents.extend(try_get(renderer, lambda x: x[key], list) or [])
  3192. for content in contents:
  3193. if not isinstance(content, dict):
  3194. continue
  3195. continuation_ep = try_get(
  3196. content, lambda x: x['continuationItemRenderer']['continuationEndpoint'],
  3197. dict)
  3198. if not continuation_ep:
  3199. continue
  3200. continuation = try_get(
  3201. continuation_ep, lambda x: x['continuationCommand']['token'], compat_str)
  3202. if not continuation:
  3203. continue
  3204. ctp = continuation_ep.get('clickTrackingParams')
  3205. return YoutubeTabIE._build_continuation_query(continuation, ctp)
  3206. def _entries(self, tab, item_id, webpage):
  3207. tab_content = try_get(tab, lambda x: x['content'], dict)
  3208. if not tab_content:
  3209. return
  3210. slr_renderer = try_get(tab_content, lambda x: x['sectionListRenderer'], dict)
  3211. if slr_renderer:
  3212. is_channels_tab = tab.get('title') == 'Channels'
  3213. continuation = None
  3214. slr_contents = try_get(slr_renderer, lambda x: x['contents'], list) or []
  3215. for slr_content in slr_contents:
  3216. if not isinstance(slr_content, dict):
  3217. continue
  3218. is_renderer = try_get(slr_content, lambda x: x['itemSectionRenderer'], dict)
  3219. if not is_renderer:
  3220. continue
  3221. isr_contents = try_get(is_renderer, lambda x: x['contents'], list) or []
  3222. for isr_content in isr_contents:
  3223. if not isinstance(isr_content, dict):
  3224. continue
  3225. renderer = isr_content.get('playlistVideoListRenderer')
  3226. if renderer:
  3227. for entry in self._playlist_entries(renderer):
  3228. yield entry
  3229. continuation = self._extract_continuation(renderer)
  3230. continue
  3231. renderer = isr_content.get('gridRenderer')
  3232. if renderer:
  3233. for entry in self._grid_entries(renderer):
  3234. yield entry
  3235. continuation = self._extract_continuation(renderer)
  3236. continue
  3237. renderer = isr_content.get('shelfRenderer')
  3238. if renderer:
  3239. for entry in self._shelf_entries(renderer, not is_channels_tab):
  3240. yield entry
  3241. continue
  3242. renderer = isr_content.get('backstagePostThreadRenderer')
  3243. if renderer:
  3244. for entry in self._post_thread_entries(renderer):
  3245. yield entry
  3246. continuation = self._extract_continuation(renderer)
  3247. continue
  3248. renderer = isr_content.get('videoRenderer')
  3249. if renderer:
  3250. entry = self._video_entry(renderer)
  3251. if entry:
  3252. yield entry
  3253. if not continuation:
  3254. continuation = self._extract_continuation(is_renderer)
  3255. if not continuation:
  3256. continuation = self._extract_continuation(slr_renderer)
  3257. else:
  3258. rich_grid_renderer = tab_content.get('richGridRenderer')
  3259. if not rich_grid_renderer:
  3260. return
  3261. for entry in self._rich_grid_entries(rich_grid_renderer.get('contents') or []):
  3262. yield entry
  3263. continuation = self._extract_continuation(rich_grid_renderer)
  3264. ytcfg = self._extract_ytcfg(item_id, webpage)
  3265. client_version = try_get(
  3266. ytcfg, lambda x: x['INNERTUBE_CLIENT_VERSION'], compat_str) or '2.20210407.08.00'
  3267. headers = {
  3268. 'x-youtube-client-name': '1',
  3269. 'x-youtube-client-version': client_version,
  3270. 'content-type': 'application/json',
  3271. }
  3272. context = try_get(ytcfg, lambda x: x['INNERTUBE_CONTEXT'], dict) or {
  3273. 'client': {
  3274. 'clientName': 'WEB',
  3275. 'clientVersion': client_version,
  3276. },
  3277. }
  3278. visitor_data = try_get(context, lambda x: x['client']['visitorData'], compat_str)
  3279. identity_token = self._extract_identity_token(ytcfg, webpage)
  3280. if identity_token:
  3281. headers['x-youtube-identity-token'] = identity_token
  3282. data = {
  3283. 'context': context,
  3284. }
  3285. for page_num in itertools.count(1):
  3286. if not continuation:
  3287. break
  3288. if visitor_data:
  3289. headers['X-Goog-Visitor-Id'] = visitor_data
  3290. data['continuation'] = continuation['continuation']
  3291. data['clickTracking'] = {
  3292. 'clickTrackingParams': continuation['itct'],
  3293. }
  3294. count = 0
  3295. retries = 3
  3296. while count <= retries:
  3297. try:
  3298. # Downloading page may result in intermittent 5xx HTTP error
  3299. # that is usually worked around with a retry
  3300. response = self._download_json(
  3301. 'https://www.youtube.com/youtubei/v1/browse?key=AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8',
  3302. None, 'Downloading page %d%s' % (page_num, ' (retry #%d)' % count if count else ''),
  3303. headers=headers, data=json.dumps(data).encode('utf8'))
  3304. break
  3305. except ExtractorError as e:
  3306. if isinstance(e.cause, compat_HTTPError) and e.cause.code in (500, 503):
  3307. count += 1
  3308. if count <= retries:
  3309. continue
  3310. raise
  3311. if not response:
  3312. break
  3313. visitor_data = try_get(
  3314. response, lambda x: x['responseContext']['visitorData'], compat_str) or visitor_data
  3315. continuation_contents = try_get(
  3316. response, lambda x: x['continuationContents'], dict)
  3317. if continuation_contents:
  3318. continuation_renderer = continuation_contents.get('playlistVideoListContinuation')
  3319. if continuation_renderer:
  3320. for entry in self._playlist_entries(continuation_renderer):
  3321. yield entry
  3322. continuation = self._extract_continuation(continuation_renderer)
  3323. continue
  3324. continuation_renderer = continuation_contents.get('gridContinuation')
  3325. if continuation_renderer:
  3326. for entry in self._grid_entries(continuation_renderer):
  3327. yield entry
  3328. continuation = self._extract_continuation(continuation_renderer)
  3329. continue
  3330. continuation_renderer = continuation_contents.get('itemSectionContinuation')
  3331. if continuation_renderer:
  3332. for entry in self._post_thread_continuation_entries(continuation_renderer):
  3333. yield entry
  3334. continuation = self._extract_continuation(continuation_renderer)
  3335. continue
  3336. on_response_received = dict_get(response, ('onResponseReceivedActions', 'onResponseReceivedEndpoints'))
  3337. continuation_items = try_get(
  3338. on_response_received, lambda x: x[0]['appendContinuationItemsAction']['continuationItems'], list)
  3339. if continuation_items:
  3340. continuation_item = continuation_items[0]
  3341. if not isinstance(continuation_item, dict):
  3342. continue
  3343. renderer = self._extract_grid_item_renderer(continuation_item)
  3344. if renderer:
  3345. grid_renderer = {'items': continuation_items}
  3346. for entry in self._grid_entries(grid_renderer):
  3347. yield entry
  3348. continuation = self._extract_continuation(grid_renderer)
  3349. continue
  3350. renderer = continuation_item.get('playlistVideoRenderer') or continuation_item.get('itemSectionRenderer')
  3351. if renderer:
  3352. video_list_renderer = {'contents': continuation_items}
  3353. for entry in self._playlist_entries(video_list_renderer):
  3354. yield entry
  3355. continuation = self._extract_continuation(video_list_renderer)
  3356. continue
  3357. renderer = continuation_item.get('backstagePostThreadRenderer')
  3358. if renderer:
  3359. continuation_renderer = {'contents': continuation_items}
  3360. for entry in self._post_thread_continuation_entries(continuation_renderer):
  3361. yield entry
  3362. continuation = self._extract_continuation(continuation_renderer)
  3363. continue
  3364. renderer = continuation_item.get('richItemRenderer')
  3365. if renderer:
  3366. for entry in self._rich_grid_entries(continuation_items):
  3367. yield entry
  3368. continuation = self._extract_continuation({'contents': continuation_items})
  3369. continue
  3370. break
  3371. @staticmethod
  3372. def _extract_selected_tab(tabs):
  3373. for tab in tabs:
  3374. renderer = dict_get(tab, ('tabRenderer', 'expandableTabRenderer')) or {}
  3375. if renderer.get('selected') is True:
  3376. return renderer
  3377. else:
  3378. raise ExtractorError('Unable to find selected tab')
  3379. def _extract_uploader(self, metadata, data):
  3380. uploader = {}
  3381. renderers = traverse_obj(data,
  3382. ('sidebar', 'playlistSidebarRenderer', 'items'))
  3383. uploader['channel_id'] = self._extract_channel_id('', metadata=metadata, renderers=renderers)
  3384. uploader['uploader'] = (
  3385. self._extract_author_var('', 'name', renderers=renderers)
  3386. or self._extract_author_var('', 'name', metadata=metadata))
  3387. uploader['uploader_url'] = self._yt_urljoin(
  3388. self._extract_author_var('', 'url', metadata=metadata, renderers=renderers))
  3389. uploader['uploader_id'] = self._extract_uploader_id(uploader['uploader_url'])
  3390. uploader['channel'] = uploader['uploader']
  3391. return uploader
  3392. @classmethod
  3393. def _extract_alert(cls, data):
  3394. alerts = []
  3395. for alert in traverse_obj(data, ('alerts', Ellipsis), expected_type=dict):
  3396. alert_text = traverse_obj(
  3397. alert, (None, lambda x: x['alertRenderer']['text']), get_all=False)
  3398. if not alert_text:
  3399. continue
  3400. text = cls._get_text(alert_text, 'text')
  3401. if text:
  3402. alerts.append(text)
  3403. return '\n'.join(alerts)
  3404. def _extract_from_tabs(self, item_id, webpage, data, tabs):
  3405. selected_tab = self._extract_selected_tab(tabs)
  3406. renderer = traverse_obj(data, ('metadata', 'channelMetadataRenderer'),
  3407. expected_type=dict) or {}
  3408. playlist_id = item_id
  3409. title = description = None
  3410. if renderer:
  3411. channel_title = txt_or_none(renderer.get('title')) or item_id
  3412. tab_title = txt_or_none(selected_tab.get('title'))
  3413. title = join_nonempty(
  3414. channel_title or item_id, tab_title,
  3415. txt_or_none(selected_tab.get('expandedText')),
  3416. delim=' - ')
  3417. description = txt_or_none(renderer.get('description'))
  3418. playlist_id = txt_or_none(renderer.get('externalId')) or playlist_id
  3419. else:
  3420. renderer = traverse_obj(data,
  3421. ('metadata', 'playlistMetadataRenderer'),
  3422. ('header', 'hashtagHeaderRenderer'),
  3423. expected_type=dict) or {}
  3424. title = traverse_obj(renderer, 'title', ('hashtag', 'simpleText'),
  3425. expected_type=txt_or_none)
  3426. playlist = self.playlist_result(
  3427. self._entries(selected_tab, item_id, webpage),
  3428. playlist_id=playlist_id, playlist_title=title,
  3429. playlist_description=description)
  3430. return merge_dicts(playlist, self._extract_uploader(renderer, data))
  3431. def _extract_from_playlist(self, item_id, url, data, playlist):
  3432. title = traverse_obj((playlist, data),
  3433. (0, 'title'), (1, 'titleText', 'simpleText'),
  3434. expected_type=txt_or_none)
  3435. playlist_id = txt_or_none(playlist.get('playlistId')) or item_id
  3436. # Inline playlist rendition continuation does not always work
  3437. # at Youtube side, so delegating regular tab-based playlist URL
  3438. # processing whenever possible.
  3439. playlist_url = urljoin(url, traverse_obj(
  3440. playlist, ('endpoint', 'commandMetadata', 'webCommandMetadata', 'url'),
  3441. expected_type=url_or_none))
  3442. if playlist_url and playlist_url != url:
  3443. return self.url_result(
  3444. playlist_url, ie=YoutubeTabIE.ie_key(), video_id=playlist_id,
  3445. video_title=title)
  3446. return self.playlist_result(
  3447. self._playlist_entries(playlist), playlist_id=playlist_id,
  3448. playlist_title=title)
  3449. def _extract_identity_token(self, ytcfg, webpage):
  3450. if ytcfg:
  3451. token = try_get(ytcfg, lambda x: x['ID_TOKEN'], compat_str)
  3452. if token:
  3453. return token
  3454. return self._search_regex(
  3455. r'\bID_TOKEN["\']\s*:\s*["\'](.+?)["\']', webpage,
  3456. 'identity token', default=None)
  3457. def _real_extract(self, url):
  3458. item_id = self._match_id(url)
  3459. url = update_url(url, netloc='www.youtube.com')
  3460. qs = parse_qs(url)
  3461. def qs_get(key, default=None):
  3462. return qs.get(key, [default])[-1]
  3463. # Go around for /feeds/videos.xml?playlist_id={pl_id}
  3464. if item_id == 'feeds' and '/feeds/videos.xml?' in url:
  3465. playlist_id = qs_get('playlist_id')
  3466. if playlist_id:
  3467. return self.url_result(
  3468. update_url_query('https://www.youtube.com/playlist', {
  3469. 'list': playlist_id,
  3470. }), ie=self.ie_key(), video_id=playlist_id)
  3471. # Handle both video/playlist URLs
  3472. video_id = qs_get('v')
  3473. playlist_id = qs_get('list')
  3474. if video_id and playlist_id:
  3475. if self._downloader.params.get('noplaylist'):
  3476. self.to_screen('Downloading just video %s because of --no-playlist' % video_id)
  3477. return self.url_result(video_id, ie=YoutubeIE.ie_key(), video_id=video_id)
  3478. self.to_screen('Downloading playlist %s - add --no-playlist to just download video %s' % (playlist_id, video_id))
  3479. webpage = self._download_webpage(url, item_id)
  3480. data = self._extract_yt_initial_data(item_id, webpage)
  3481. tabs = try_get(
  3482. data, lambda x: x['contents']['twoColumnBrowseResultsRenderer']['tabs'], list)
  3483. if tabs:
  3484. return self._extract_from_tabs(item_id, webpage, data, tabs)
  3485. playlist = try_get(
  3486. data, lambda x: x['contents']['twoColumnWatchNextResults']['playlist']['playlist'], dict)
  3487. if playlist:
  3488. return self._extract_from_playlist(item_id, url, data, playlist)
  3489. # Fallback to video extraction if no playlist alike page is recognized.
  3490. # First check for the current video then try the v attribute of URL query.
  3491. video_id = try_get(
  3492. data, lambda x: x['currentVideoEndpoint']['watchEndpoint']['videoId'],
  3493. compat_str) or video_id
  3494. if video_id:
  3495. return self.url_result(video_id, ie=YoutubeIE.ie_key(), video_id=video_id)
  3496. # Capture and output alerts
  3497. alert = self._extract_alert(data)
  3498. if alert:
  3499. raise ExtractorError(alert, expected=True)
  3500. # Failed to recognize
  3501. raise ExtractorError('Unable to recognize tab page')
  3502. class YoutubePlaylistIE(InfoExtractor):
  3503. IE_DESC = 'YouTube.com playlists'
  3504. _VALID_URL = r'''(?x)(?:
  3505. (?:https?://)?
  3506. (?:\w+\.)?
  3507. (?:
  3508. (?:
  3509. youtube(?:kids)?\.com|
  3510. invidio\.us
  3511. )
  3512. /.*?\?.*?\blist=
  3513. )?
  3514. (?P<id>%(playlist_id)s)
  3515. )''' % {'playlist_id': YoutubeBaseInfoExtractor._PLAYLIST_ID_RE}
  3516. IE_NAME = 'youtube:playlist'
  3517. _TESTS = [{
  3518. 'note': 'issue #673',
  3519. 'url': 'PLBB231211A4F62143',
  3520. 'info_dict': {
  3521. 'title': '[OLD]Team Fortress 2 (Class-based LP)',
  3522. 'id': 'PLBB231211A4F62143',
  3523. 'uploader': 'Wickman',
  3524. 'uploader_id': '@WickmanVT',
  3525. 'channel_id': 'UCKSpbfbl5kRQpTdL7kMc-1Q',
  3526. },
  3527. 'playlist_mincount': 29,
  3528. }, {
  3529. 'url': 'PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl',
  3530. 'info_dict': {
  3531. 'title': 'YDL_safe_search',
  3532. 'id': 'PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl',
  3533. },
  3534. 'playlist_count': 2,
  3535. 'skip': 'This playlist is private',
  3536. }, {
  3537. 'note': 'embedded',
  3538. 'url': 'https://www.youtube.com/embed/videoseries?list=PL6IaIsEjSbf96XFRuNccS_RuEXwNdsoEu',
  3539. # TODO: full playlist requires _reload_with_unavailable_videos()
  3540. # 'playlist_count': 4,
  3541. 'playlist_mincount': 1,
  3542. 'info_dict': {
  3543. 'title': 'JODA15',
  3544. 'id': 'PL6IaIsEjSbf96XFRuNccS_RuEXwNdsoEu',
  3545. 'uploader': 'milan',
  3546. 'uploader_id': '@milan5503',
  3547. 'channel_id': 'UCEI1-PVPcYXjB73Hfelbmaw',
  3548. },
  3549. }, {
  3550. 'url': 'http://www.youtube.com/embed/_xDOZElKyNU?list=PLsyOSbh5bs16vubvKePAQ1x3PhKavfBIl',
  3551. 'playlist_mincount': 455,
  3552. 'info_dict': {
  3553. 'title': '2018 Chinese New Singles (11/6 updated)',
  3554. 'id': 'PLsyOSbh5bs16vubvKePAQ1x3PhKavfBIl',
  3555. 'uploader': 'LBK',
  3556. 'uploader_id': '@music_king',
  3557. 'channel_id': 'UC21nz3_MesPLqtDqwdvnoxA',
  3558. },
  3559. }, {
  3560. 'url': 'TLGGrESM50VT6acwMjAyMjAxNw',
  3561. 'only_matching': True,
  3562. }, {
  3563. # music album playlist
  3564. 'url': 'OLAK5uy_m4xAFdmMC5rX3Ji3g93pQe3hqLZw_9LhM',
  3565. 'only_matching': True,
  3566. }]
  3567. @classmethod
  3568. def suitable(cls, url):
  3569. if YoutubeTabIE.suitable(url):
  3570. return False
  3571. if parse_qs(url).get('v', [None])[0]:
  3572. return False
  3573. return super(YoutubePlaylistIE, cls).suitable(url)
  3574. def _real_extract(self, url):
  3575. playlist_id = self._match_id(url)
  3576. qs = parse_qs(url)
  3577. if not qs:
  3578. qs = {'list': playlist_id}
  3579. return self.url_result(
  3580. update_url_query('https://www.youtube.com/playlist', qs),
  3581. ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
  3582. class YoutubeYtBeIE(InfoExtractor):
  3583. _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}
  3584. _TESTS = [{
  3585. 'url': 'https://youtu.be/yeWKywCrFtk?list=PL2qgrgXsNUG5ig9cat4ohreBjYLAPC0J5',
  3586. 'info_dict': {
  3587. 'id': 'yeWKywCrFtk',
  3588. 'ext': 'mp4',
  3589. 'title': 'Small Scale Baler and Braiding Rugs',
  3590. 'uploader': 'Backus-Page House Museum',
  3591. 'uploader_id': '@backuspagemuseum',
  3592. 'uploader_url': r're:https?://(?:www\.)?youtube\.com/@backuspagemuseum',
  3593. 'upload_date': '20161008',
  3594. 'description': 'md5:800c0c78d5eb128500bffd4f0b4f2e8a',
  3595. 'categories': ['Nonprofits & Activism'],
  3596. 'tags': list,
  3597. 'like_count': int,
  3598. },
  3599. 'params': {
  3600. 'noplaylist': True,
  3601. 'skip_download': True,
  3602. },
  3603. }, {
  3604. 'url': 'https://youtu.be/uWyaPkt-VOI?list=PL9D9FC436B881BA21',
  3605. 'only_matching': True,
  3606. }]
  3607. def _real_extract(self, url):
  3608. mobj = re.match(self._VALID_URL, url)
  3609. video_id = mobj.group('id')
  3610. playlist_id = mobj.group('playlist_id')
  3611. return self.url_result(
  3612. update_url_query('https://www.youtube.com/watch', {
  3613. 'v': video_id,
  3614. 'list': playlist_id,
  3615. 'feature': 'youtu.be',
  3616. }), ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
  3617. class YoutubeYtUserIE(InfoExtractor):
  3618. _VALID_URL = r'ytuser:(?P<id>.+)'
  3619. _TESTS = [{
  3620. 'url': 'ytuser:phihag',
  3621. 'only_matching': True,
  3622. }]
  3623. def _real_extract(self, url):
  3624. user_id = self._match_id(url)
  3625. return self.url_result(
  3626. 'https://www.youtube.com/user/%s' % user_id,
  3627. ie=YoutubeTabIE.ie_key(), video_id=user_id)
  3628. class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
  3629. IE_NAME = 'youtube:favorites'
  3630. IE_DESC = 'YouTube.com favourite videos, ":ytfav" for short (requires authentication)'
  3631. _VALID_URL = r'https?://(?:www\.)?youtube\.com/my_favorites|:ytfav(?:ou?rites)?'
  3632. _LOGIN_REQUIRED = True
  3633. _TESTS = [{
  3634. 'url': ':ytfav',
  3635. 'only_matching': True,
  3636. }, {
  3637. 'url': ':ytfavorites',
  3638. 'only_matching': True,
  3639. }]
  3640. def _real_extract(self, url):
  3641. return self.url_result(
  3642. 'https://www.youtube.com/playlist?list=LL',
  3643. ie=YoutubeTabIE.ie_key())
  3644. class YoutubeSearchIE(SearchInfoExtractor, YoutubeBaseInfoExtractor):
  3645. IE_DESC = 'YouTube.com searches'
  3646. IE_NAME = 'youtube:search'
  3647. _SEARCH_KEY = 'ytsearch'
  3648. _SEARCH_PARAMS = 'EgIQAQ%3D%3D' # Videos only
  3649. _MAX_RESULTS = float('inf')
  3650. _TESTS = [{
  3651. 'url': 'ytsearch10:youtube-dl test video',
  3652. 'playlist_count': 10,
  3653. 'info_dict': {
  3654. 'id': 'youtube-dl test video',
  3655. 'title': 'youtube-dl test video',
  3656. },
  3657. }]
  3658. def _get_n_results(self, query, n):
  3659. """Get a specified number of results for a query"""
  3660. entries = itertools.islice(self._search_results(query, self._SEARCH_PARAMS), 0, None if n == float('inf') else n)
  3661. return self.playlist_result(entries, query, query)
  3662. class YoutubeSearchDateIE(YoutubeSearchIE):
  3663. IE_NAME = YoutubeSearchIE.IE_NAME + ':date'
  3664. _SEARCH_KEY = 'ytsearchdate'
  3665. IE_DESC = 'YouTube.com searches, newest videos first'
  3666. _SEARCH_PARAMS = 'CAISAhAB' # Videos only, sorted by date
  3667. _TESTS = [{
  3668. 'url': 'ytsearchdate10:youtube-dl test video',
  3669. 'playlist_count': 10,
  3670. 'info_dict': {
  3671. 'id': 'youtube-dl test video',
  3672. 'title': 'youtube-dl test video',
  3673. },
  3674. }]
  3675. class YoutubeSearchURLIE(YoutubeBaseInfoExtractor):
  3676. IE_DESC = 'YouTube search URLs with sorting and filter support'
  3677. IE_NAME = YoutubeSearchIE.IE_NAME + '_url'
  3678. _VALID_URL = r'https?://(?:www\.)?youtube\.com/results\?(.*?&)?(?:search_query|q)=(?:[^&]+)(?:[&]|$)'
  3679. _TESTS = [{
  3680. 'url': 'https://www.youtube.com/results?baz=bar&search_query=youtube-dl+test+video&filters=video&lclk=video',
  3681. 'playlist_mincount': 5,
  3682. 'info_dict': {
  3683. 'id': 'youtube-dl test video',
  3684. 'title': 'youtube-dl test video',
  3685. },
  3686. 'params': {'playlistend': 5},
  3687. }, {
  3688. 'url': 'https://www.youtube.com/results?q=test&sp=EgQIBBgB',
  3689. 'only_matching': True,
  3690. }]
  3691. def _real_extract(self, url):
  3692. qs = parse_qs(url)
  3693. query = (qs.get('search_query') or qs.get('q'))[-1]
  3694. params = qs.get('sp', ('',))[-1]
  3695. return self.playlist_result(self._search_results(query, params), query, query)
  3696. class YoutubeFeedsInfoExtractor(YoutubeTabIE):
  3697. """
  3698. Base class for feed extractors
  3699. Subclasses must define the _FEED_NAME property.
  3700. """
  3701. _LOGIN_REQUIRED = True
  3702. @property
  3703. def IE_NAME(self):
  3704. return 'youtube:%s' % self._FEED_NAME
  3705. def _real_initialize(self):
  3706. self._login()
  3707. def _real_extract(self, url):
  3708. return self.url_result(
  3709. 'https://www.youtube.com/feed/%s' % self._FEED_NAME,
  3710. ie=YoutubeTabIE.ie_key())
  3711. class YoutubeWatchLaterIE(InfoExtractor):
  3712. IE_NAME = 'youtube:watchlater'
  3713. IE_DESC = 'Youtube watch later list, ":ytwatchlater" for short (requires authentication)'
  3714. _VALID_URL = r':ytwatchlater'
  3715. _TESTS = [{
  3716. 'url': ':ytwatchlater',
  3717. 'only_matching': True,
  3718. }]
  3719. def _real_extract(self, url):
  3720. return self.url_result(
  3721. 'https://www.youtube.com/playlist?list=WL', ie=YoutubeTabIE.ie_key())
  3722. class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
  3723. IE_DESC = 'YouTube.com recommended videos, ":ytrec" for short (requires authentication)'
  3724. _VALID_URL = r':ytrec(?:ommended)?'
  3725. _FEED_NAME = 'recommended'
  3726. _TESTS = [{
  3727. 'url': ':ytrec',
  3728. 'only_matching': True,
  3729. }, {
  3730. 'url': ':ytrecommended',
  3731. 'only_matching': True,
  3732. }]
  3733. class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
  3734. IE_DESC = 'YouTube.com subscriptions feed, "ytsubs" keyword (requires authentication)'
  3735. _VALID_URL = r':ytsubs(?:criptions)?'
  3736. _FEED_NAME = 'subscriptions'
  3737. _TESTS = [{
  3738. 'url': ':ytsubs',
  3739. 'only_matching': True,
  3740. }, {
  3741. 'url': ':ytsubscriptions',
  3742. 'only_matching': True,
  3743. }]
  3744. class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):
  3745. IE_DESC = 'Youtube watch history, ":ythistory" for short (requires authentication)'
  3746. _VALID_URL = r':ythistory'
  3747. _FEED_NAME = 'history'
  3748. _TESTS = [{
  3749. 'url': ':ythistory',
  3750. 'only_matching': True,
  3751. }]
  3752. class YoutubeTruncatedURLIE(InfoExtractor):
  3753. IE_NAME = 'youtube:truncated_url'
  3754. IE_DESC = False # Do not list
  3755. _VALID_URL = r'''(?x)
  3756. (?:https?://)?
  3757. (?:\w+\.)?[yY][oO][uU][tT][uU][bB][eE](?:-nocookie)?\.com/
  3758. (?:watch\?(?:
  3759. feature=[a-z_]+|
  3760. annotation_id=annotation_[^&]+|
  3761. x-yt-cl=[0-9]+|
  3762. hl=[^&]*|
  3763. t=[0-9]+
  3764. )?
  3765. |
  3766. attribution_link\?a=[^&]+
  3767. )
  3768. $
  3769. '''
  3770. _TESTS = [{
  3771. 'url': 'https://www.youtube.com/watch?annotation_id=annotation_3951667041',
  3772. 'only_matching': True,
  3773. }, {
  3774. 'url': 'https://www.youtube.com/watch?',
  3775. 'only_matching': True,
  3776. }, {
  3777. 'url': 'https://www.youtube.com/watch?x-yt-cl=84503534',
  3778. 'only_matching': True,
  3779. }, {
  3780. 'url': 'https://www.youtube.com/watch?feature=foo',
  3781. 'only_matching': True,
  3782. }, {
  3783. 'url': 'https://www.youtube.com/watch?hl=en-GB',
  3784. 'only_matching': True,
  3785. }, {
  3786. 'url': 'https://www.youtube.com/watch?t=2372',
  3787. 'only_matching': True,
  3788. }]
  3789. def _real_extract(self, url):
  3790. raise ExtractorError(
  3791. 'Did you forget to quote the URL? Remember that & is a meta '
  3792. 'character in most shells, so you want to put the URL in quotes, '
  3793. 'like youtube-dl '
  3794. '"https://www.youtube.com/watch?feature=foo&v=BaW_jenozKc" '
  3795. ' or simply youtube-dl BaW_jenozKc .',
  3796. expected=True)
  3797. class YoutubeTruncatedIDIE(InfoExtractor):
  3798. IE_NAME = 'youtube:truncated_id'
  3799. IE_DESC = False # Do not list
  3800. _VALID_URL = r'https?://(?:www\.)?youtube\.com/watch\?v=(?P<id>[0-9A-Za-z_-]{1,10})$'
  3801. _TESTS = [{
  3802. 'url': 'https://www.youtube.com/watch?v=N_708QY7Ob',
  3803. 'only_matching': True,
  3804. }]
  3805. def _real_extract(self, url):
  3806. video_id = self._match_id(url)
  3807. raise ExtractorError(
  3808. 'Incomplete YouTube ID %s. URL %s looks truncated.' % (video_id, url),
  3809. expected=True)