ChangeLog 177 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295
  1. version 2020.09.20
  2. Core
  3. * [extractor/common] Relax interaction count extraction in _json_ld
  4. + [extractor/common] Extract author as uploader for VideoObject in _json_ld
  5. * [downloader/hls] Fix incorrect end byte in Range HTTP header for
  6. media segments with EXT-X-BYTERANGE (#14748, #24512)
  7. * [extractor/common] Handle ssl.CertificateError in _request_webpage (#26601)
  8. * [downloader/http] Improve timeout detection when reading block of data
  9. (#10935)
  10. * [downloader/http] Retry download when urlopen times out (#10935, #26603)
  11. Extractors
  12. * [redtube] Extend URL regular expression (#26506)
  13. * [twitch] Refactor
  14. * [twitch:stream] Switch to GraphQL and fix reruns (#26535)
  15. + [telequebec] Add support for brightcove videos (#25833)
  16. * [pornhub] Extract metadata from JSON-LD (#26614)
  17. * [pornhub] Fix view count extraction (#26621, #26614)
  18. version 2020.09.14
  19. Core
  20. + [postprocessor/embedthumbnail] Add support for non jpg/png thumbnails
  21. (#25687, #25717)
  22. Extractors
  23. * [rtlnl] Extend URL regular expression (#26549, #25821)
  24. * [youtube] Fix empty description extraction (#26575, #26006)
  25. * [srgssr] Extend URL regular expression (#26555, #26556, #26578)
  26. * [googledrive] Use redirect URLs for source format (#18877, #23919, #24689,
  27. #26565)
  28. * [svtplay] Fix id extraction (#26576)
  29. * [redbulltv] Improve support for rebull.com TV localized URLs (#22063)
  30. + [redbulltv] Add support for new redbull.com TV URLs (#22037, #22063)
  31. * [soundcloud:pagedplaylist] Reduce pagination limit (#26557)
  32. version 2020.09.06
  33. Core
  34. + [utils] Recognize wav mimetype (#26463)
  35. Extractors
  36. * [nrktv:episode] Improve video id extraction (#25594, #26369, #26409)
  37. * [youtube] Fix age gate content detection (#26100, #26152, #26311, #26384)
  38. * [youtube:user] Extend URL regular expression (#26443)
  39. * [xhamster] Improve initials regular expression (#26526, #26353)
  40. * [svtplay] Fix video id extraction (#26425, #26428, #26438)
  41. * [twitch] Rework extractors (#12297, #20414, #20604, #21811, #21812, #22979,
  42. #24263, #25010, #25553, #25606)
  43. * Switch to GraphQL
  44. + Add support for collections
  45. + Add support for clips and collections playlists
  46. * [biqle] Improve video ext extraction
  47. * [xhamster] Fix extraction (#26157, #26254)
  48. * [xhamster] Extend URL regular expression (#25789, #25804, #25927))
  49. version 2020.07.28
  50. Extractors
  51. * [youtube] Fix sigfunc name extraction (#26134, #26135, #26136, #26137)
  52. * [youtube] Improve description extraction (#25937, #25980)
  53. * [wistia] Restrict embed regular expression (#25969)
  54. * [youtube] Prevent excess HTTP 301 (#25786)
  55. + [youtube:playlists] Extend URL regular expression (#25810)
  56. + [bellmedia] Add support for cp24.com clip URLs (#25764)
  57. * [brightcove] Improve embed detection (#25674)
  58. version 2020.06.16.1
  59. Extractors
  60. * [youtube] Force old layout (#25682, #25683, #25680, #25686)
  61. * [youtube] Fix categories and improve tags extraction
  62. version 2020.06.16
  63. Extractors
  64. * [youtube] Fix uploader id and uploader URL extraction
  65. * [youtube] Improve view count extraction
  66. * [youtube] Fix upload date extraction (#25677)
  67. * [youtube] Fix thumbnails extraction (#25676)
  68. * [youtube] Fix playlist and feed extraction (#25675)
  69. + [facebook] Add support for single-video ID links
  70. + [youtube] Extract chapters from JSON (#24819)
  71. + [kaltura] Add support for multiple embeds on a webpage (#25523)
  72. version 2020.06.06
  73. Extractors
  74. * [tele5] Bypass geo restriction
  75. + [jwplatform] Add support for bypass geo restriction
  76. * [tele5] Prefer jwplatform over nexx (#25533)
  77. * [twitch:stream] Expect 400 and 410 HTTP errors from API
  78. * [twitch:stream] Fix extraction (#25528)
  79. * [twitch] Fix thumbnails extraction (#25531)
  80. + [twitch] Pass v5 Accept HTTP header (#25531)
  81. * [brightcove] Fix subtitles extraction (#25540)
  82. + [malltv] Add support for sk.mall.tv (#25445)
  83. * [periscope] Fix untitled broadcasts (#25482)
  84. * [jwplatform] Improve embeds extraction (#25467)
  85. version 2020.05.29
  86. Core
  87. * [postprocessor/ffmpeg] Embed series metadata with --add-metadata
  88. * [utils] Fix file permissions in write_json_file (#12471, #25122)
  89. Extractors
  90. * [ard:beta] Extend URL regular expression (#25405)
  91. + [youtube] Add support for more invidious instances (#25417)
  92. * [giantbomb] Extend URL regular expression (#25222)
  93. * [ard] Improve URL regular expression (#25134, #25198)
  94. * [redtube] Improve formats extraction and extract m3u8 formats (#25311,
  95. #25321)
  96. * [indavideo] Switch to HTTPS for API request (#25191)
  97. * [redtube] Improve title extraction (#25208)
  98. * [vimeo] Improve format extraction and sorting (#25285)
  99. * [soundcloud] Reduce API playlist page limit (#25274)
  100. + [youtube] Add support for yewtu.be (#25226)
  101. * [mailru] Fix extraction (#24530, #25239)
  102. * [bellator] Fix mgid extraction (#25195)
  103. version 2020.05.08
  104. Core
  105. * [downloader/http] Request last data block of exact remaining size
  106. * [downloader/http] Finish downloading once received data length matches
  107. expected
  108. * [extractor/common] Use compat_cookiejar_Cookie for _set_cookie to always
  109. ensure cookie name and value are bytestrings on python 2 (#23256, #24776)
  110. + [compat] Introduce compat_cookiejar_Cookie
  111. * [utils] Improve cookie files support
  112. + Add support for UTF-8 in cookie files
  113. * Skip malformed cookie file entries instead of crashing (invalid entry
  114. length, invalid expires at)
  115. Extractors
  116. * [youtube] Improve signature cipher extraction (#25187, #25188)
  117. * [iprima] Improve extraction (#25138)
  118. * [uol] Fix extraction (#22007)
  119. + [orf] Add support for more radio stations (#24938, #24968)
  120. * [dailymotion] Fix typo
  121. - [puhutv] Remove no longer available HTTP formats (#25124)
  122. version 2020.05.03
  123. Core
  124. + [extractor/common] Extract multiple JSON-LD entries
  125. * [options] Clarify doc on --exec command (#19087, #24883)
  126. * [extractor/common] Skip malformed ISM manifest XMLs while extracting
  127. ISM formats (#24667)
  128. Extractors
  129. * [crunchyroll] Fix and improve extraction (#25096, #25060)
  130. * [youtube] Improve player id extraction
  131. * [youtube] Use redirected video id if any (#25063)
  132. * [yahoo] Fix GYAO Player extraction and relax URL regular expression
  133. (#24178, #24778)
  134. * [tvplay] Fix Viafree extraction (#15189, #24473, #24789)
  135. * [tenplay] Relax URL regular expression (#25001)
  136. + [prosiebensat1] Extract series metadata
  137. * [prosiebensat1] Improve extraction and remove 7tv.de support (#24948)
  138. - [prosiebensat1] Remove 7tv.de support (#24948)
  139. * [youtube] Fix DRM videos detection (#24736)
  140. * [thisoldhouse] Fix video id extraction (#24548, #24549)
  141. + [soundcloud] Extract AAC format (#19173, #24708)
  142. * [youtube] Skip broken multifeed videos (#24711)
  143. * [nova:embed] Fix extraction (#24700)
  144. * [motherless] Fix extraction (#24699)
  145. * [twitch:clips] Extend URL regular expression (#24290, #24642)
  146. * [tv4] Fix ISM formats extraction (#24667)
  147. * [tele5] Fix extraction (#24553)
  148. + [mofosex] Add support for generic embeds (#24633)
  149. + [youporn] Add support for generic embeds
  150. + [spankwire] Add support for generic embeds (#24633)
  151. * [spankwire] Fix extraction (#18924, #20648)
  152. version 2020.03.24
  153. Core
  154. - [utils] Revert support for cookie files with spaces used instead of tabs
  155. Extractors
  156. * [teachable] Update upskillcourses and gns3 domains
  157. * [generic] Look for teachable embeds before wistia
  158. + [teachable] Extract chapter metadata (#24421)
  159. + [bilibili] Add support for player.bilibili.com (#24402)
  160. + [bilibili] Add support for new URL schema with BV ids (#24439, #24442)
  161. * [limelight] Remove disabled API requests (#24255)
  162. * [soundcloud] Fix download URL extraction (#24394)
  163. + [cbc:watch] Add support for authentication (#19160)
  164. * [hellporno] Fix extraction (#24399)
  165. * [xtube] Fix formats extraction (#24348)
  166. * [ndr] Fix extraction (#24326)
  167. * [nhk] Update m3u8 URL and use native HLS downloader (#24329)
  168. - [nhk] Remove obsolete rtmp formats (#24329)
  169. * [nhk] Relax URL regular expression (#24329)
  170. - [vimeo] Revert fix showcase password protected video extraction (#24224)
  171. version 2020.03.08
  172. Core
  173. + [utils] Add support for cookie files with spaces used instead of tabs
  174. Extractors
  175. + [pornhub] Add support for pornhubpremium.com (#24288)
  176. - [youtube] Remove outdated code and unnecessary requests
  177. * [youtube] Improve extraction in 429 HTTP error conditions (#24283)
  178. * [nhk] Update API version (#24270)
  179. version 2020.03.06
  180. Extractors
  181. * [youtube] Fix age-gated videos support without login (#24248)
  182. * [vimeo] Fix showcase password protected video extraction (#24224)
  183. * [pornhub] Improve title extraction (#24184)
  184. * [peertube] Improve extraction (#23657)
  185. + [servus] Add support for new URL schema (#23475, #23583, #24142)
  186. * [vimeo] Fix subtitles URLs (#24209)
  187. version 2020.03.01
  188. Core
  189. * [YoutubeDL] Force redirect URL to unicode on python 2
  190. - [options] Remove duplicate short option -v for --version (#24162)
  191. Extractors
  192. * [xhamster] Fix extraction (#24205)
  193. * [franceculture] Fix extraction (#24204)
  194. + [telecinco] Add support for article opening videos
  195. * [telecinco] Fix extraction (#24195)
  196. * [xtube] Fix metadata extraction (#21073, #22455)
  197. * [youjizz] Fix extraction (#24181)
  198. - Remove no longer needed compat_str around geturl
  199. * [pornhd] Fix extraction (#24128)
  200. + [teachable] Add support for multiple videos per lecture (#24101)
  201. + [wistia] Add support for multiple generic embeds (#8347, 11385)
  202. * [imdb] Fix extraction (#23443)
  203. * [tv2dk:bornholm:play] Fix extraction (#24076)
  204. version 2020.02.16
  205. Core
  206. * [YoutubeDL] Fix playlist entry indexing with --playlist-items (#10591,
  207. #10622)
  208. * [update] Fix updating via symlinks (#23991)
  209. + [compat] Introduce compat_realpath (#23991)
  210. Extractors
  211. + [npr] Add support for streams (#24042)
  212. + [24video] Add support for porn.24video.net (#23779, #23784)
  213. - [jpopsuki] Remove extractor (#23858)
  214. * [nova] Improve extraction (#23690)
  215. * [nova:embed] Improve (#23690)
  216. * [nova:embed] Fix extraction (#23672)
  217. + [abc:iview] Add support for 720p (#22907, #22921)
  218. * [nytimes] Improve format sorting (#24010)
  219. + [toggle] Add support for mewatch.sg (#23895, #23930)
  220. * [thisoldhouse] Fix extraction (#23951)
  221. + [popcorntimes] Add support for popcorntimes.tv (#23949)
  222. * [sportdeutschland] Update to new API
  223. * [twitch:stream] Lowercase channel id for stream request (#23917)
  224. * [tv5mondeplus] Fix extraction (#23907, #23911)
  225. * [tva] Relax URL regular expression (#23903)
  226. * [vimeo] Fix album extraction (#23864)
  227. * [viewlift] Improve extraction
  228. * Fix extraction (#23851)
  229. + Add support for authentication
  230. + Add support for more domains
  231. * [svt] Fix series extraction (#22297)
  232. * [svt] Fix article extraction (#22897, #22919)
  233. * [soundcloud] Imporve private playlist/set tracks extraction (#3707)
  234. version 2020.01.24
  235. Extractors
  236. * [youtube] Fix sigfunc name extraction (#23819)
  237. * [stretchinternet] Fix extraction (#4319)
  238. * [voicerepublic] Fix extraction
  239. * [azmedien] Fix extraction (#23783)
  240. * [businessinsider] Fix jwplatform id extraction (#22929, #22954)
  241. + [24video] Add support for 24video.vip (#23753)
  242. * [ivi:compilation] Fix entries extraction (#23770)
  243. * [ard] Improve extraction (#23761)
  244. * Simplify extraction
  245. + Extract age limit and series
  246. * Bypass geo-restriction
  247. + [nbc] Add support for nbc multi network URLs (#23049)
  248. * [americastestkitchen] Fix extraction
  249. * [zype] Improve extraction
  250. + Extract subtitles (#21258)
  251. + Support URLs with alternative keys/tokens (#21258)
  252. + Extract more metadata
  253. * [orf:tvthek] Improve geo restricted videos detection (#23741)
  254. * [soundcloud] Restore previews extraction (#23739)
  255. version 2020.01.15
  256. Extractors
  257. * [yourporn] Fix extraction (#21645, #22255, #23459)
  258. + [canvas] Add support for new API endpoint (#17680, #18629)
  259. * [ndr:base:embed] Improve thumbnails extraction (#23731)
  260. + [vodplatform] Add support for embed.kwikmotion.com domain
  261. + [twitter] Add support for promo_video_website cards (#23711)
  262. * [orf:radio] Clean description and improve extraction
  263. * [orf:fm4] Fix extraction (#23599)
  264. * [safari] Fix kaltura session extraction (#23679, #23670)
  265. * [lego] Fix extraction and extract subtitle (#23687)
  266. * [cloudflarestream] Improve extraction
  267. + Add support for bytehighway.net domain
  268. + Add support for signed URLs
  269. + Extract thumbnail
  270. * [naver] Improve extraction
  271. * Improve geo-restriction handling
  272. + Extract automatic captions
  273. + Extract uploader metadata
  274. + Extract VLive HLS formats
  275. * Improve metadata extraction
  276. - [pandatv] Remove extractor (#23630)
  277. * [dctp] Fix format extraction (#23656)
  278. + [scrippsnetworks] Add support for www.discovery.com videos
  279. * [discovery] Fix anonymous token extraction (#23650)
  280. * [nrktv:seriebase] Fix extraction (#23625, #23537)
  281. * [wistia] Improve format extraction and extract subtitles (#22590)
  282. * [vice] Improve extraction (#23631)
  283. * [redtube] Detect private videos (#23518)
  284. version 2020.01.01
  285. Extractors
  286. * [brightcove] Invalidate policy key cache on failing requests
  287. * [pornhub] Improve locked videos detection (#22449, #22780)
  288. + [pornhub] Add support for m3u8 formats
  289. * [pornhub] Fix extraction (#22749, #23082)
  290. * [brightcove] Update policy key on failing requests
  291. * [spankbang] Improve removed video detection (#23423)
  292. * [spankbang] Fix extraction (#23307, #23423, #23444)
  293. * [soundcloud] Automatically update client id on failing requests
  294. * [prosiebensat1] Improve geo restriction handling (#23571)
  295. * [brightcove] Cache brightcove player policy keys
  296. * [teachable] Fail with error message if no video URL found
  297. * [teachable] Improve locked lessons detection (#23528)
  298. + [scrippsnetworks] Add support for Scripps Networks sites (#19857, #22981)
  299. * [mitele] Fix extraction (#21354, #23456)
  300. * [soundcloud] Update client id (#23516)
  301. * [mailru] Relax URL regular expressions (#23509)
  302. version 2019.12.25
  303. Core
  304. * [utils] Improve str_to_int
  305. + [downloader/hls] Add ability to override AES decryption key URL (#17521)
  306. Extractors
  307. * [mediaset] Fix parse formats (#23508)
  308. + [tv2dk:bornholm:play] Add support for play.tv2bornholm.dk (#23291)
  309. + [slideslive] Add support for url and vimeo service names (#23414)
  310. * [slideslive] Fix extraction (#23413)
  311. * [twitch:clips] Fix extraction (#23375)
  312. + [soundcloud] Add support for token protected embeds (#18954)
  313. * [vk] Improve extraction
  314. * Fix User Videos extraction (#23356)
  315. * Extract all videos for lists with more than 1000 videos (#23356)
  316. + Add support for video albums (#14327, #14492)
  317. - [kontrtube] Remove extractor
  318. - [videopremium] Remove extractor
  319. - [musicplayon] Remove extractor (#9225)
  320. + [ufctv] Add support for ufcfightpass.imgdge.com and
  321. ufcfightpass.imggaming.com (#23343)
  322. + [twitch] Extract m3u8 formats frame rate (#23333)
  323. + [imggaming] Add support for playlists and extract subtitles
  324. + [ufcarabia] Add support for UFC Arabia (#23312)
  325. * [ufctv] Fix extraction
  326. * [yahoo] Fix gyao brightcove player id (#23303)
  327. * [vzaar] Override AES decryption key URL (#17521)
  328. + [vzaar] Add support for AES HLS manifests (#17521, #23299)
  329. * [nrl] Fix extraction
  330. * [teachingchannel] Fix extraction
  331. * [nintendo] Fix extraction and partially add support for Nintendo Direct
  332. videos (#4592)
  333. + [ooyala] Add better fallback values for domain and streams variables
  334. + [youtube] Add support youtubekids.com (#23272)
  335. * [tv2] Detect DRM protection
  336. + [tv2] Add support for katsomo.fi and mtv.fi (#10543)
  337. * [tv2] Fix tv2.no article extraction
  338. * [msn] Improve extraction
  339. + Add support for YouTube and NBCSports embeds
  340. + Add support for articles with multiple videos
  341. * Improve AOL embed support
  342. * Improve format extraction
  343. * [abcotvs] Relax URL regular expression and improve metadata extraction
  344. (#18014)
  345. * [channel9] Reduce response size
  346. * [adobetv] Improve extaction
  347. * Use OnDemandPagedList for list extractors
  348. * Reduce show extraction requests
  349. * Extract original video format and subtitles
  350. + Add support for adobe tv embeds
  351. version 2019.11.28
  352. Core
  353. + [utils] Add generic caesar cipher and rot47
  354. * [utils] Handle rd-suffixed day parts in unified_strdate (#23199)
  355. Extractors
  356. * [vimeo] Improve extraction
  357. * Fix review extraction
  358. * Fix ondemand extraction
  359. * Make password protected player case as an expected error (#22896)
  360. * Simplify channel based extractors code
  361. - [openload] Remove extractor (#11999)
  362. - [verystream] Remove extractor
  363. - [streamango] Remove extractor (#15406)
  364. * [dailymotion] Improve extraction
  365. * Extract http formats included in m3u8 manifest
  366. * Fix user extraction (#3553, #21415)
  367. + Add suport for User Authentication (#11491)
  368. * Fix password protected videos extraction (#23176)
  369. * Respect age limit option and family filter cookie value (#18437)
  370. * Handle video url playlist query param
  371. * Report allowed countries for geo-restricted videos
  372. * [corus] Improve extraction
  373. + Add support for Series Plus, W Network, YTV, ABC Spark, disneychannel.com
  374. and disneylachaine.ca (#20861)
  375. + Add support for self hosted videos (#22075)
  376. * Detect DRM protection (#14910, #9164)
  377. * [vivo] Fix extraction (#22328, #22279)
  378. + [bitchute] Extract upload date (#22990, #23193)
  379. * [soundcloud] Update client id (#23214)
  380. version 2019.11.22
  381. Core
  382. + [extractor/common] Clean jwplayer description HTML tags
  383. + [extractor/common] Add data, headers and query to all major extract formats
  384. methods
  385. Extractors
  386. * [chaturbate] Fix extraction (#23010, #23012)
  387. + [ntvru] Add support for non relative file URLs (#23140)
  388. * [vk] Fix wall audio thumbnails extraction (#23135)
  389. * [ivi] Fix format extraction (#21991)
  390. - [comcarcoff] Remove extractor
  391. + [drtv] Add support for new URL schema (#23059)
  392. + [nexx] Add support for Multi Player JS Setup (#23052)
  393. + [teamcoco] Add support for new videos (#23054)
  394. * [soundcloud] Check if the soundtrack has downloads left (#23045)
  395. * [facebook] Fix posts video data extraction (#22473)
  396. - [addanime] Remove extractor
  397. - [minhateca] Remove extractor
  398. - [daisuki] Remove extractor
  399. * [seeker] Fix extraction
  400. - [revision3] Remove extractors
  401. * [twitch] Fix video comments URL (#18593, #15828)
  402. * [twitter] Improve extraction
  403. + Add support for generic embeds (#22168)
  404. * Always extract http formats for native videos (#14934)
  405. + Add support for Twitter Broadcasts (#21369)
  406. + Extract more metadata
  407. * Improve VMap format extraction
  408. * Unify extraction code for both twitter statuses and cards
  409. + [twitch] Add support for Clip embed URLs
  410. * [lnkgo] Fix extraction (#16834)
  411. * [mixcloud] Improve extraction
  412. * Improve metadata extraction (#11721)
  413. * Fix playlist extraction (#22378)
  414. * Fix user mixes extraction (#15197, #17865)
  415. + [kinja] Add support for Kinja embeds (#5756, #11282, #22237, #22384)
  416. * [onionstudios] Fix extraction
  417. + [hotstar] Pass Referer header to format requests (#22836)
  418. * [dplay] Minimize response size
  419. + [patreon] Extract uploader_id and filesize
  420. * [patreon] Minimize response size
  421. * [roosterteeth] Fix login request (#16094, #22689)
  422. version 2019.11.05
  423. Extractors
  424. + [scte] Add support for learning.scte.org (#22975)
  425. + [msn] Add support for Vidible and AOL embeds (#22195, #22227)
  426. * [myspass] Fix video URL extraction and improve metadata extraction (#22448)
  427. * [jamendo] Improve extraction
  428. * Fix album extraction (#18564)
  429. * Improve metadata extraction (#18565, #21379)
  430. * [mediaset] Relax URL guid matching (#18352)
  431. + [mediaset] Extract unprotected M3U and MPD manifests (#17204)
  432. * [telegraaf] Fix extraction
  433. + [bellmedia] Add support for marilyn.ca videos (#22193)
  434. * [stv] Fix extraction (#22928)
  435. - [iconosquare] Remove extractor
  436. - [keek] Remove extractor
  437. - [gameone] Remove extractor (#21778)
  438. - [flipagram] Remove extractor
  439. - [bambuser] Remove extractor
  440. * [wistia] Reduce embed extraction false positives
  441. + [wistia] Add support for inline embeds (#22931)
  442. - [go90] Remove extractor
  443. * [kakao] Remove raw request
  444. + [kakao] Extract format total bitrate
  445. * [daum] Fix VOD and Clip extracton (#15015)
  446. * [kakao] Improve extraction
  447. + Add support for embed URLs
  448. + Add support for Kakao Legacy vid based embed URLs
  449. * Only extract fields used for extraction
  450. * Strip description and extract tags
  451. * [mixcloud] Fix cloudcast data extraction (#22821)
  452. * [yahoo] Improve extraction
  453. + Add support for live streams (#3597, #3779, #22178)
  454. * Bypass cookie consent page for european domains (#16948, #22576)
  455. + Add generic support for embeds (#20332)
  456. * [tv2] Fix and improve extraction (#22787)
  457. + [tv2dk] Add support for TV2 DK sites
  458. * [onet] Improve extraction …
  459. + Add support for onet100.vod.pl
  460. + Extract m3u8 formats
  461. * Correct audio only format info
  462. * [fox9] Fix extraction
  463. version 2019.10.29
  464. Core
  465. * [utils] Actualize major IPv4 address blocks per country
  466. Extractors
  467. + [go] Add support for abc.com and freeform.com (#22823, #22864)
  468. + [mtv] Add support for mtvjapan.com
  469. * [mtv] Fix extraction for mtv.de (#22113)
  470. * [videodetective] Fix extraction
  471. * [internetvideoarchive] Fix extraction
  472. * [nbcnews] Fix extraction (#12569, #12576, #21703, #21923)
  473. - [hark] Remove extractor
  474. - [tutv] Remove extractor
  475. - [learnr] Remove extractor
  476. - [macgamestore] Remove extractor
  477. * [la7] Update Kaltura service URL (#22358)
  478. * [thesun] Fix extraction (#16966)
  479. - [makertv] Remove extractor
  480. + [tenplay] Add support for 10play.com.au (#21446)
  481. * [soundcloud] Improve extraction
  482. * Improve format extraction (#22123)
  483. + Extract uploader_id and uploader_url (#21916)
  484. + Extract all known thumbnails (#19071, #20659)
  485. * Fix extration for private playlists (#20976)
  486. + Add support for playlist embeds (#20976)
  487. * Skip preview formats (#22806)
  488. * [dplay] Improve extraction
  489. + Add support for dplay.fi, dplay.jp and es.dplay.com (#16969)
  490. * Fix it.dplay.com extraction (#22826)
  491. + Extract creator, tags and thumbnails
  492. * Handle playback API call errors
  493. + [discoverynetworks] Add support for dplay.co.uk
  494. * [vk] Improve extraction
  495. + Add support for Odnoklassniki embeds
  496. + Extract more videos from user lists (#4470)
  497. + Fix wall post audio extraction (#18332)
  498. * Improve error detection (#22568)
  499. + [odnoklassniki] Add support for embeds
  500. * [puhutv] Improve extraction
  501. * Fix subtitles extraction
  502. * Transform HLS URLs to HTTP URLs
  503. * Improve metadata extraction
  504. * [ceskatelevize] Skip DRM media
  505. + [facebook] Extract subtitles (#22777)
  506. * [globo] Handle alternative hash signing method
  507. version 2019.10.22
  508. Core
  509. * [utils] Improve subtitles_filename (#22753)
  510. Extractors
  511. * [facebook] Bypass download rate limits (#21018)
  512. + [contv] Add support for contv.com
  513. - [viewster] Remove extractor
  514. * [xfileshare] Improve extractor (#17032, #17906, #18237, #18239)
  515. * Update the list of domains
  516. + Add support for aa-encoded video data
  517. * Improve jwplayer format extraction
  518. + Add support for Clappr sources
  519. * [mangomolo] Fix video format extraction and add support for player URLs
  520. * [audioboom] Improve metadata extraction
  521. * [twitch] Update VOD URL matching (#22395, #22727)
  522. - [mit] Remove support for video.mit.edu (#22403)
  523. - [servingsys] Remove extractor (#22639)
  524. * [dumpert] Fix extraction (#22428, #22564)
  525. * [atresplayer] Fix extraction (#16277, #16716)
  526. version 2019.10.16
  527. Core
  528. * [extractor/common] Make _is_valid_url more relaxed
  529. Extractors
  530. * [vimeo] Improve album videos id extraction (#22599)
  531. + [globo] Extract subtitles (#22713)
  532. * [bokecc] Improve player params extraction (#22638)
  533. * [nexx] Handle result list (#22666)
  534. * [vimeo] Fix VHX embed extraction
  535. * [nbc] Switch to graphql API (#18581, #22693, #22701)
  536. - [vessel] Remove extractor
  537. - [promptfile] Remove extractor (#6239)
  538. * [kaltura] Fix service URL extraction (#22658)
  539. * [kaltura] Fix embed info strip (#22658)
  540. * [globo] Fix format extraction (#20319)
  541. * [redtube] Improve metadata extraction (#22492, #22615)
  542. * [pornhub:uservideos:upload] Fix extraction (#22619)
  543. + [telequebec:squat] Add support for squat.telequebec.tv (#18503)
  544. - [wimp] Remove extractor (#22088, #22091)
  545. + [gfycat] Extend URL regular expression (#22225)
  546. + [chaturbate] Extend URL regular expression (#22309)
  547. * [peertube] Update instances (#22414)
  548. + [telequebec] Add support for coucou.telequebec.tv (#22482)
  549. + [xvideos] Extend URL regular expression (#22471)
  550. - [youtube] Remove support for invidious.enkirton.net (#22543)
  551. + [openload] Add support for oload.monster (#22592)
  552. * [nrktv:seriebase] Fix extraction (#22596)
  553. + [youtube] Add support for yt.lelux.fi (#22597)
  554. * [orf:tvthek] Make manifest requests non fatal (#22578)
  555. * [teachable] Skip login when already logged in (#22572)
  556. * [viewlift] Improve extraction (#22545)
  557. * [nonktube] Fix extraction (#22544)
  558. version 2019.09.28
  559. Core
  560. * [YoutubeDL] Honour all --get-* options with --flat-playlist (#22493)
  561. Extractors
  562. * [vk] Fix extraction (#22522)
  563. * [heise] Fix kaltura embeds extraction (#22514)
  564. * [ted] Check for resources validity and extract subtitled downloads (#22513)
  565. + [youtube] Add support for
  566. owxfohz4kjyv25fvlqilyxast7inivgiktls3th44jhk3ej3i7ya.b32.i2p (#22292)
  567. + [nhk] Add support for clips
  568. * [nhk] Fix video extraction (#22249, #22353)
  569. * [byutv] Fix extraction (#22070)
  570. + [openload] Add support for oload.online (#22304)
  571. + [youtube] Add support for invidious.drycat.fr (#22451)
  572. * [jwplatfom] Do not match video URLs (#20596, #22148)
  573. * [youtube:playlist] Unescape playlist uploader (#22483)
  574. + [bilibili] Add support audio albums and songs (#21094)
  575. + [instagram] Add support for tv URLs
  576. + [mixcloud] Allow uppercase letters in format URLs (#19280)
  577. * [brightcove] Delegate all supported legacy URLs to new extractor (#11523,
  578. #12842, #13912, #15669, #16303)
  579. * [hotstar] Use native HLS downloader by default
  580. + [hotstar] Extract more formats (#22323)
  581. * [9now] Fix extraction (#22361)
  582. * [zdf] Bypass geo restriction
  583. + [tv4] Extract series metadata
  584. * [tv4] Fix extraction (#22443)
  585. version 2019.09.12.1
  586. Extractors
  587. * [youtube] Remove quality and tbr for itag 43 (#22372)
  588. version 2019.09.12
  589. Extractors
  590. * [youtube] Quick extraction tempfix (#22367, #22163)
  591. version 2019.09.01
  592. Core
  593. + [extractor/generic] Add support for squarespace embeds (#21294, #21802,
  594. #21859)
  595. + [downloader/external] Respect mtime option for aria2c (#22242)
  596. Extractors
  597. + [xhamster:user] Add support for user pages (#16330, #18454)
  598. + [xhamster] Add support for more domains
  599. + [verystream] Add support for woof.tube (#22217)
  600. + [dailymotion] Add support for lequipe.fr (#21328, #22152)
  601. + [openload] Add support for oload.vip (#22205)
  602. + [bbccouk] Extend URL regular expression (#19200)
  603. + [youtube] Add support for invidious.nixnet.xyz and yt.elukerio.org (#22223)
  604. * [safari] Fix authentication (#22161, #22184)
  605. * [usanetwork] Fix extraction (#22105)
  606. + [einthusan] Add support for einthusan.ca (#22171)
  607. * [youtube] Improve unavailable message extraction (#22117)
  608. + [piksel] Extract subtitles (#20506)
  609. version 2019.08.13
  610. Core
  611. * [downloader/fragment] Fix ETA calculation of resumed download (#21992)
  612. * [YoutubeDL] Check annotations availability (#18582)
  613. Extractors
  614. * [youtube:playlist] Improve flat extraction (#21927)
  615. * [youtube] Fix annotations extraction (#22045)
  616. + [discovery] Extract series meta field (#21808)
  617. * [youtube] Improve error detection (#16445)
  618. * [vimeo] Fix album extraction (#1933, #15704, #15855, #18967, #21986)
  619. + [roosterteeth] Add support for watch URLs
  620. * [discovery] Limit video data by show slug (#21980)
  621. version 2019.08.02
  622. Extractors
  623. + [tvigle] Add support for HLS and DASH formats (#21967)
  624. * [tvigle] Fix extraction (#21967)
  625. + [yandexvideo] Add support for DASH formats (#21971)
  626. * [discovery] Use API call for video data extraction (#21808)
  627. + [mgtv] Extract format_note (#21881)
  628. * [tvn24] Fix metadata extraction (#21833, #21834)
  629. * [dlive] Relax URL regular expression (#21909)
  630. + [openload] Add support for oload.best (#21913)
  631. * [youtube] Improve metadata extraction for age gate content (#21943)
  632. version 2019.07.30
  633. Extractors
  634. * [youtube] Fix and improve title and description extraction (#21934)
  635. version 2019.07.27
  636. Extractors
  637. + [yahoo:japannews] Add support for yahoo.co.jp (#21698, #21265)
  638. + [discovery] Add support go.discovery.com URLs
  639. * [youtube:playlist] Relax video regular expression (#21844)
  640. * [generic] Restrict --default-search schemeless URLs detection pattern
  641. (#21842)
  642. * [vrv] Fix CMS signing query extraction (#21809)
  643. version 2019.07.16
  644. Extractors
  645. + [asiancrush] Add support for yuyutv.com, midnightpulp.com and cocoro.tv
  646. (#21281, #21290)
  647. * [kaltura] Check source format URL (#21290)
  648. * [ctsnews] Fix YouTube embeds extraction (#21678)
  649. + [einthusan] Add support for einthusan.com (#21748, #21775)
  650. + [youtube] Add support for invidious.mastodon.host (#21777)
  651. + [gfycat] Extend URL regular expression (#21779, #21780)
  652. * [youtube] Restrict is_live extraction (#21782)
  653. version 2019.07.14
  654. Extractors
  655. * [porn91] Fix extraction (#21312)
  656. + [yandexmusic] Extract track number and disk number (#21421)
  657. + [yandexmusic] Add support for multi disk albums (#21420, #21421)
  658. * [lynda] Handle missing subtitles (#20490, #20513)
  659. + [youtube] Add more invidious instances to URL regular expression (#21694)
  660. * [twitter] Improve uploader id extraction (#21705)
  661. * [spankbang] Fix and improve metadata extraction
  662. * [spankbang] Fix extraction (#21763, #21764)
  663. + [dlive] Add support for dlive.tv (#18080)
  664. + [livejournal] Add support for livejournal.com (#21526)
  665. * [roosterteeth] Fix free episode extraction (#16094)
  666. * [dbtv] Fix extraction
  667. * [bellator] Fix extraction
  668. - [rudo] Remove extractor (#18430, #18474)
  669. * [facebook] Fallback to twitter:image meta for thumbnail extraction (#21224)
  670. * [bleacherreport] Fix Bleacher Report CMS extraction
  671. * [espn] Fix fivethirtyeight.com extraction
  672. * [5tv] Relax video URL regular expression and support https URLs
  673. * [youtube] Fix is_live extraction (#21734)
  674. * [youtube] Fix authentication (#11270)
  675. version 2019.07.12
  676. Core
  677. + [adobepass] Add support for AT&T U-verse (mso ATT) (#13938, #21016)
  678. Extractors
  679. + [mgtv] Pass Referer HTTP header for format URLs (#21726)
  680. + [beeg] Add support for api/v6 v2 URLs without t argument (#21701)
  681. * [voxmedia:volume] Improvevox embed extraction (#16846)
  682. * [funnyordie] Move extraction to VoxMedia extractor (#16846)
  683. * [gameinformer] Fix extraction (#8895, #15363, #17206)
  684. * [funk] Fix extraction (#17915)
  685. * [packtpub] Relax lesson URL regular expression (#21695)
  686. * [packtpub] Fix extraction (#21268)
  687. * [philharmoniedeparis] Relax URL regular expression (#21672)
  688. * [peertube] Detect embed URLs in generic extraction (#21666)
  689. * [mixer:vod] Relax URL regular expression (#21657, #21658)
  690. + [lecturio] Add support id based URLs (#21630)
  691. + [go] Add site info for disneynow (#21613)
  692. * [ted] Restrict info regular expression (#21631)
  693. * [twitch:vod] Actualize m3u8 URL (#21538, #21607)
  694. * [vzaar] Fix videos with empty title (#21606)
  695. * [tvland] Fix extraction (#21384)
  696. * [arte] Clean extractor (#15583, #21614)
  697. version 2019.07.02
  698. Core
  699. + [utils] Introduce random_user_agent and use as default User-Agent (#21546)
  700. Extractors
  701. + [vevo] Add support for embed.vevo.com URLs (#21565)
  702. + [openload] Add support for oload.biz (#21574)
  703. * [xiami] Update API base URL (#21575)
  704. * [yourporn] Fix extraction (#21585)
  705. + [acast] Add support for URLs with episode id (#21444)
  706. + [dailymotion] Add support for DM.player embeds
  707. * [soundcloud] Update client id
  708. version 2019.06.27
  709. Extractors
  710. + [go] Add support for disneynow.com (#21528)
  711. * [mixer:vod] Relax URL regular expression (#21531, #21536)
  712. * [drtv] Relax URL regular expression
  713. * [fusion] Fix extraction (#17775, #21269)
  714. - [nfb] Remove extractor (#21518)
  715. + [beeg] Add support for api/v6 v2 URLs (#21511)
  716. + [brightcove:new] Add support for playlists (#21331)
  717. + [openload] Add support for oload.life (#21495)
  718. * [vimeo:channel,group] Make title extraction non fatal
  719. * [vimeo:likes] Implement extrator in terms of channel extractor (#21493)
  720. + [pornhub] Add support for more paged video sources
  721. + [pornhub] Add support for downloading single pages and search pages (#15570)
  722. * [pornhub] Rework extractors (#11922, #16078, #17454, #17936)
  723. + [youtube] Add another signature function pattern
  724. * [tf1] Fix extraction (#21365, #21372)
  725. * [crunchyroll] Move Accept-Language workaround to video extractor since
  726. it causes playlists not to list any videos
  727. * [crunchyroll:playlist] Fix and relax title extraction (#21291, #21443)
  728. version 2019.06.21
  729. Core
  730. * [utils] Restrict parse_codecs and add theora as known vcodec (#21381)
  731. Extractors
  732. * [youtube] Update signature function patterns (#21469, #21476)
  733. * [youtube] Make --write-annotations non fatal (#21452)
  734. + [sixplay] Add support for rtlmost.hu (#21405)
  735. * [youtube] Hardcode codec metadata for av01 video only formats (#21381)
  736. * [toutv] Update client key (#21370)
  737. + [biqle] Add support for new embed domain
  738. * [cbs] Improve DRM protected videos detection (#21339)
  739. version 2019.06.08
  740. Core
  741. * [downloader/common] Improve rate limit (#21301)
  742. * [utils] Improve strip_or_none
  743. * [extractor/common] Strip src attribute for HTML5 entries code (#18485,
  744. #21169)
  745. Extractors
  746. * [ted] Fix playlist extraction (#20844, #21032)
  747. * [vlive:playlist] Fix video extraction when no playlist is found (#20590)
  748. + [vlive] Add CH+ support (#16887, #21209)
  749. + [openload] Add support for oload.website (#21329)
  750. + [tvnow] Extract HD formats (#21201)
  751. + [redbulltv] Add support for rrn:content URLs (#21297)
  752. * [youtube] Fix average rating extraction (#21304)
  753. + [bitchute] Extract HTML5 formats (#21306)
  754. * [cbsnews] Fix extraction (#9659, #15397)
  755. * [vvvvid] Relax URL regular expression (#21299)
  756. + [prosiebensat1] Add support for new API (#21272)
  757. + [vrv] Extract adaptive_hls formats (#21243)
  758. * [viki] Switch to HTTPS (#21001)
  759. * [LiveLeak] Check if the original videos exist (#21206, #21208)
  760. * [rtp] Fix extraction (#15099)
  761. * [youtube] Improve DRM protected videos detection (#1774)
  762. + [srgssrplay] Add support for popupvideoplayer URLs (#21155)
  763. + [24video] Add support for porno.24video.net (#21194)
  764. + [24video] Add support for 24video.site (#21193)
  765. - [pornflip] Remove extractor
  766. - [criterion] Remove extractor (#21195)
  767. * [pornhub] Use HTTPS (#21061)
  768. * [bitchute] Fix uploader extraction (#21076)
  769. * [streamcloud] Reduce waiting time to 6 seconds (#21092)
  770. - [novamov] Remove extractors (#21077)
  771. + [openload] Add support for oload.press (#21135)
  772. * [vivo] Fix extraction (#18906, #19217)
  773. version 2019.05.20
  774. Core
  775. + [extractor/common] Move workaround for applying first Set-Cookie header
  776. into a separate _apply_first_set_cookie_header method
  777. Extractors
  778. * [safari] Fix authentication (#21090)
  779. * [vk] Use _apply_first_set_cookie_header
  780. * [vrt] Fix extraction (#20527)
  781. + [canvas] Add support for vrtnieuws and sporza site ids and extract
  782. AES HLS formats
  783. + [vrv] Extract captions (#19238)
  784. * [tele5] Improve video id extraction
  785. * [tele5] Relax URL regular expression (#21020, #21063)
  786. * [svtplay] Update API URL (#21075)
  787. + [yahoo:gyao] Add X-User-Agent header to dam proxy requests (#21071)
  788. version 2019.05.11
  789. Core
  790. * [utils] Transliterate "þ" as "th" (#20897)
  791. Extractors
  792. + [cloudflarestream] Add support for videodelivery.net (#21049)
  793. + [byutv] Add support for DVR videos (#20574, #20676)
  794. + [gfycat] Add support for URLs with tags (#20696, #20731)
  795. + [openload] Add support for verystream.com (#20701, #20967)
  796. * [youtube] Use sp field value for signature field name (#18841, #18927,
  797. #21028)
  798. + [yahoo:gyao] Extend URL regular expression (#21008)
  799. * [youtube] Fix channel id extraction (#20982, #21003)
  800. + [sky] Add support for news.sky.com (#13055)
  801. + [youtube:entrylistbase] Retry on 5xx HTTP errors (#20965)
  802. + [francetvinfo] Extend video id extraction (#20619, #20740)
  803. * [4tube] Update token hosts (#20918)
  804. * [hotstar] Move to API v2 (#20931)
  805. * [fox] Fix API error handling under python 2 (#20925)
  806. + [redbulltv] Extend URL regular expression (#20922)
  807. version 2019.04.30
  808. Extractors
  809. * [openload] Use real Chrome versions (#20902)
  810. - [youtube] Remove info el for get_video_info request
  811. * [youtube] Improve extraction robustness
  812. - [dramafever] Remove extractor (#20868)
  813. * [adn] Fix subtitle extraction (#12724)
  814. + [ccc] Extract creator (#20355)
  815. + [ccc:playlist] Add support for media.ccc.de playlists (#14601, #20355)
  816. + [sverigesradio] Add support for sverigesradio.se (#18635)
  817. + [cinemax] Add support for cinemax.com
  818. * [sixplay] Try extracting non-DRM protected manifests (#20849)
  819. + [youtube] Extract Youtube Music Auto-generated metadata (#20599, #20742)
  820. - [wrzuta] Remove extractor (#20684, #20801)
  821. * [twitch] Prefer source format (#20850)
  822. + [twitcasting] Add support for private videos (#20843)
  823. * [reddit] Validate thumbnail URL (#20030)
  824. * [yandexmusic] Fix track URL extraction (#20820)
  825. version 2019.04.24
  826. Extractors
  827. * [youtube] Fix extraction (#20758, #20759, #20761, #20762, #20764, #20766,
  828. #20767, #20769, #20771, #20768, #20770)
  829. * [toutv] Fix extraction and extract series info (#20757)
  830. + [vrv] Add support for movie listings (#19229)
  831. + [youtube] Print error when no data is available (#20737)
  832. + [soundcloud] Add support for new rendition and improve extraction (#20699)
  833. + [ooyala] Add support for geo verification proxy
  834. + [nrl] Add support for nrl.com (#15991)
  835. + [vimeo] Extract live archive source format (#19144)
  836. + [vimeo] Add support for live streams and improve info extraction (#19144)
  837. + [ntvcojp] Add support for cu.ntv.co.jp
  838. + [nhk] Extract RTMPT format
  839. + [nhk] Add support for audio URLs
  840. + [udemy] Add another course id extraction pattern (#20491)
  841. + [openload] Add support for oload.services (#20691)
  842. + [openload] Add support for openloed.co (#20691, #20693)
  843. * [bravotv] Fix extraction (#19213)
  844. version 2019.04.17
  845. Extractors
  846. * [openload] Randomize User-Agent (#20688)
  847. + [openload] Add support for oladblock domains (#20471)
  848. * [adn] Fix subtitle extraction (#12724)
  849. + [aol] Add support for localized websites
  850. + [yahoo] Add support GYAO episode URLs
  851. + [yahoo] Add support for streaming.yahoo.co.jp (#5811, #7098)
  852. + [yahoo] Add support for gyao.yahoo.co.jp
  853. * [aenetworks] Fix history topic extraction and extract more formats
  854. + [cbs] Extract smpte and vtt subtitles
  855. + [streamango] Add support for streamcherry.com (#20592)
  856. + [yourporn] Add support for sxyprn.com (#20646)
  857. * [mgtv] Fix extraction (#20650)
  858. * [linkedin:learning] Use urljoin for form action URL (#20431)
  859. + [gdc] Add support for kaltura embeds (#20575)
  860. * [dispeak] Improve mp4 bitrate extraction
  861. * [kaltura] Sanitize embed URLs
  862. * [jwplatfom] Do not match manifest URLs (#20596)
  863. * [aol] Restrict URL regular expression and improve format extraction
  864. + [tiktok] Add support for new URL schema (#20573)
  865. + [stv:player] Add support for player.stv.tv (#20586)
  866. version 2019.04.07
  867. Core
  868. + [downloader/external] Pass rtmp_conn to ffmpeg
  869. Extractors
  870. + [ruutu] Add support for audio podcasts (#20473, #20545)
  871. + [xvideos] Extract all thumbnails (#20432)
  872. + [platzi] Add support for platzi.com (#20562)
  873. * [dvtv] Fix extraction (#18514, #19174)
  874. + [vrv] Add basic support for individual movie links (#19229)
  875. + [bfi:player] Add support for player.bfi.org.uk (#19235)
  876. * [hbo] Fix extraction and extract subtitles (#14629, #13709)
  877. * [youtube] Extract srv[1-3] subtitle formats (#20566)
  878. * [adultswim] Fix extraction (#18025)
  879. * [teamcoco] Fix extraction and add suport for subdomains (#17099, #20339)
  880. * [adn] Fix subtitle compatibility with ffmpeg
  881. * [adn] Fix extraction and add support for positioning styles (#20549)
  882. * [vk] Use unique video id (#17848)
  883. * [newstube] Fix extraction
  884. * [rtl2] Actualize extraction
  885. + [adobeconnect] Add support for adobeconnect.com (#20283)
  886. + [gaia] Add support for authentication (#14605)
  887. + [mediasite] Add support for dashed ids and named catalogs (#20531)
  888. version 2019.04.01
  889. Core
  890. * [utils] Improve int_or_none and float_or_none (#20403)
  891. * Check for valid --min-sleep-interval when --max-sleep-interval is specified
  892. (#20435)
  893. Extractors
  894. + [weibo] Extend URL regular expression (#20496)
  895. + [xhamster] Add support for xhamster.one (#20508)
  896. + [mediasite] Add support for catalogs (#20507)
  897. + [teamtreehouse] Add support for teamtreehouse.com (#9836)
  898. + [ina] Add support for audio URLs
  899. * [ina] Improve extraction
  900. * [cwtv] Fix episode number extraction (#20461)
  901. * [npo] Improve DRM detection
  902. + [pornhub] Add support for DASH formats (#20403)
  903. * [svtplay] Update API endpoint (#20430)
  904. version 2019.03.18
  905. Core
  906. * [extractor/common] Improve HTML5 entries extraction
  907. + [utils] Introduce parse_bitrate
  908. * [update] Hide update URLs behind redirect
  909. * [extractor/common] Fix url meta field for unfragmented DASH formats (#20346)
  910. Extractors
  911. + [yandexvideo] Add extractor
  912. * [openload] Improve embed detection
  913. + [corus] Add support for bigbrothercanada.ca (#20357)
  914. + [orf:radio] Extract series (#20012)
  915. + [cbc:watch] Add support for gem.cbc.ca (#20251, #20359)
  916. - [anysex] Remove extractor (#19279)
  917. + [ciscolive] Add support for new URL schema (#20320, #20351)
  918. + [youtube] Add support for invidiou.sh (#20309)
  919. - [anitube] Remove extractor (#20334)
  920. - [ruleporn] Remove extractor (#15344, #20324)
  921. * [npr] Fix extraction (#10793, #13440)
  922. * [biqle] Fix extraction (#11471, #15313)
  923. * [viddler] Modernize
  924. * [moevideo] Fix extraction
  925. * [primesharetv] Remove extractor
  926. * [hypem] Modernize and extract more metadata (#15320)
  927. * [veoh] Fix extraction
  928. * [escapist] Modernize
  929. - [videomega] Remove extractor (#10108)
  930. + [beeg] Add support for beeg.porn (#20306)
  931. * [vimeo:review] Improve config url extraction and extract original format
  932. (#20305)
  933. * [fox] Detect geo restriction and authentication errors (#20208)
  934. version 2019.03.09
  935. Core
  936. * [extractor/common] Use compat_etree_Element
  937. + [compat] Introduce compat_etree_Element
  938. * [extractor/common] Fallback url to base URL for DASH formats
  939. * [extractor/common] Do not fail on invalid data while parsing F4M manifest
  940. in non fatal mode
  941. * [extractor/common] Return MPD manifest as format's url meta field (#20242)
  942. * [utils] Strip #HttpOnly_ prefix from cookies files (#20219)
  943. Extractors
  944. * [francetv:site] Relax video id regular expression (#20268)
  945. * [toutv] Detect invalid login error
  946. * [toutv] Fix authentication (#20261)
  947. + [urplay] Extract timestamp (#20235)
  948. + [openload] Add support for oload.space (#20246)
  949. * [facebook] Improve uploader extraction (#20250)
  950. * [bbc] Use compat_etree_Element
  951. * [crunchyroll] Use compat_etree_Element
  952. * [npo] Improve ISM extraction
  953. * [rai] Improve extraction (#20253)
  954. * [paramountnetwork] Fix mgid extraction (#20241)
  955. * [libsyn] Improve extraction (#20229)
  956. + [youtube] Add more invidious instances to URL regular expression (#20228)
  957. * [spankbang] Fix extraction (#20023)
  958. * [espn] Extend URL regular expression (#20013)
  959. * [sixplay] Handle videos with empty assets (#20016)
  960. + [vimeo] Add support for Vimeo Pro portfolio protected videos (#20070)
  961. version 2019.03.01
  962. Core
  963. + [downloader/external] Add support for rate limit and retries for wget
  964. * [downloader/external] Fix infinite retries for curl (#19303)
  965. Extractors
  966. * [npo] Fix extraction (#20084)
  967. * [francetv:site] Extend video id regex (#20029, #20071)
  968. + [periscope] Extract width and height (#20015)
  969. * [servus] Fix extraction (#19297)
  970. * [bbccouk] Make subtitles non fatal (#19651)
  971. * [metacafe] Fix family filter bypass (#19287)
  972. version 2019.02.18
  973. Extractors
  974. * [tvp:website] Fix and improve extraction
  975. + [tvp] Detect unavailable videos
  976. * [tvp] Fix description extraction and make thumbnail optional
  977. + [linuxacademy] Add support for linuxacademy.com (#12207)
  978. * [bilibili] Update keys (#19233)
  979. * [udemy] Extend URL regular expressions (#14330, #15883)
  980. * [udemy] Update User-Agent and detect captcha (#14713, #15839, #18126)
  981. * [noovo] Fix extraction (#19230)
  982. * [rai] Relax URL regular expression (#19232)
  983. + [vshare] Pass Referer to download request (#19205, #19221)
  984. + [openload] Add support for oload.live (#19222)
  985. * [imgur] Use video id as title fallback (#18590)
  986. + [twitch] Add new source format detection approach (#19193)
  987. * [tvplayhome] Fix video id extraction (#19190)
  988. * [tvplayhome] Fix episode metadata extraction (#19190)
  989. * [rutube:embed] Fix extraction (#19163)
  990. + [rutube:embed] Add support private videos (#19163)
  991. + [soundcloud] Extract more metadata
  992. + [trunews] Add support for trunews.com (#19153)
  993. + [linkedin:learning] Extract chapter_number and chapter_id (#19162)
  994. version 2019.02.08
  995. Core
  996. * [utils] Improve JSON-LD regular expression (#18058)
  997. * [YoutubeDL] Fallback to ie_key of matching extractor while making
  998. download archive id when no explicit ie_key is provided (#19022)
  999. Extractors
  1000. + [malltv] Add support for mall.tv (#18058, #17856)
  1001. + [spankbang:playlist] Add support for playlists (#19145)
  1002. * [spankbang] Extend URL regular expression
  1003. * [trutv] Fix extraction (#17336)
  1004. * [toutv] Fix authentication (#16398, #18700)
  1005. * [pornhub] Fix tags and categories extraction (#13720, #19135)
  1006. * [pornhd] Fix formats extraction
  1007. + [pornhd] Extract like count (#19123, #19125)
  1008. * [radiocanada] Switch to the new media requests (#19115)
  1009. + [teachable] Add support for courses.workitdaily.com (#18871)
  1010. - [vporn] Remove extractor (#16276)
  1011. + [soundcloud:pagedplaylist] Add ie and title to entries (#19022, #19086)
  1012. + [drtuber] Extract duration (#19078)
  1013. * [soundcloud] Fix paged playlists extraction, add support for albums and update client id
  1014. * [soundcloud] Update client id
  1015. * [drtv] Improve preference (#19079)
  1016. + [openload] Add support for openload.pw and oload.pw (#18930)
  1017. + [openload] Add support for oload.info (#19073)
  1018. * [crackle] Authorize media detail request (#16931)
  1019. version 2019.01.30.1
  1020. Core
  1021. * [postprocessor/ffmpeg] Fix avconv processing broken in #19025 (#19067)
  1022. version 2019.01.30
  1023. Core
  1024. * [postprocessor/ffmpeg] Do not copy Apple TV chapter tracks while embedding
  1025. subtitles (#19024, #19042)
  1026. * [postprocessor/ffmpeg] Disable "Last message repeated" messages (#19025)
  1027. Extractors
  1028. * [yourporn] Fix extraction and extract duration (#18815, #18852, #19061)
  1029. * [drtv] Improve extraction (#19039)
  1030. + Add support for EncryptedUri videos
  1031. + Extract more metadata
  1032. * Fix subtitles extraction
  1033. + [fox] Add support for locked videos using cookies (#19060)
  1034. * [fox] Fix extraction for free videos (#19060)
  1035. + [zattoo] Add support for tv.salt.ch (#19059)
  1036. version 2019.01.27
  1037. Core
  1038. + [extractor/common] Extract season in _json_ld
  1039. * [postprocessor/ffmpeg] Fallback to ffmpeg/avconv for audio codec detection
  1040. (#681)
  1041. Extractors
  1042. * [vice] Fix extraction for locked videos (#16248)
  1043. + [wakanim] Detect DRM protected videos
  1044. + [wakanim] Add support for wakanim.tv (#14374)
  1045. * [usatoday] Fix extraction for videos with custom brightcove partner id
  1046. (#18990)
  1047. * [drtv] Fix extraction (#18989)
  1048. * [nhk] Extend URL regular expression (#18968)
  1049. * [go] Fix Adobe Pass requests for Disney Now (#18901)
  1050. + [openload] Add support for oload.club (#18969)
  1051. version 2019.01.24
  1052. Core
  1053. * [YoutubeDL] Fix negation for string operators in format selection (#18961)
  1054. version 2019.01.23
  1055. Core
  1056. * [utils] Fix urljoin for paths with non-http(s) schemes
  1057. * [extractor/common] Improve jwplayer relative URL handling (#18892)
  1058. + [YoutubeDL] Add negation support for string comparisons in format selection
  1059. expressions (#18600, #18805)
  1060. * [extractor/common] Improve HLS video-only format detection (#18923)
  1061. Extractors
  1062. * [crunchyroll] Extend URL regular expression (#18955)
  1063. * [pornhub] Bypass scrape detection (#4822, #5930, #7074, #10175, #12722,
  1064. #17197, #18338 #18842, #18899)
  1065. + [vrv] Add support for authentication (#14307)
  1066. * [videomore:season] Fix extraction
  1067. * [videomore] Improve extraction (#18908)
  1068. + [tnaflix] Pass Referer in metadata request (#18925)
  1069. * [radiocanada] Relax DRM check (#18608, #18609)
  1070. * [vimeo] Fix video password verification for videos protected by
  1071. Referer HTTP header
  1072. + [hketv] Add support for hkedcity.net (#18696)
  1073. + [streamango] Add support for fruithosts.net (#18710)
  1074. + [instagram] Add support for tags (#18757)
  1075. + [odnoklassniki] Detect paid videos (#18876)
  1076. * [ted] Correct acodec for HTTP formats (#18923)
  1077. * [cartoonnetwork] Fix extraction (#15664, #17224)
  1078. * [vimeo] Fix extraction for password protected player URLs (#18889)
  1079. version 2019.01.17
  1080. Extractors
  1081. * [youtube] Extend JS player signature function name regular expressions
  1082. (#18890, #18891, #18893)
  1083. version 2019.01.16
  1084. Core
  1085. + [test/helper] Add support for maxcount and count collection len checkers
  1086. * [downloader/hls] Fix uplynk ad skipping (#18824)
  1087. * [postprocessor/ffmpeg] Improve ffmpeg version parsing (#18813)
  1088. Extractors
  1089. * [youtube] Skip unsupported adaptive stream type (#18804)
  1090. + [youtube] Extract DASH formats from player response (#18804)
  1091. * [funimation] Fix extraction (#14089)
  1092. * [skylinewebcams] Fix extraction (#18853)
  1093. + [curiositystream] Add support for non app URLs
  1094. + [bitchute] Check formats (#18833)
  1095. * [wistia] Extend URL regular expression (#18823)
  1096. + [playplustv] Add support for playplus.com (#18789)
  1097. version 2019.01.10
  1098. Core
  1099. * [extractor/common] Use episode name as title in _json_ld
  1100. + [extractor/common] Add support for movies in _json_ld
  1101. * [postprocessor/ffmpeg] Embed subtitles with non-standard language codes
  1102. (#18765)
  1103. + [utils] Add language codes replaced in 1989 revision of ISO 639
  1104. to ISO639Utils (#18765)
  1105. Extractors
  1106. * [youtube] Extract live HLS URL from player response (#18799)
  1107. + [outsidetv] Add support for outsidetv.com (#18774)
  1108. * [jwplatform] Use JW Platform Delivery API V2 and add support for more URLs
  1109. + [fox] Add support National Geographic (#17985, #15333, #14698)
  1110. + [playplustv] Add support for playplus.tv (#18789)
  1111. * [globo] Set GLBID cookie manually (#17346)
  1112. + [gaia] Add support for gaia.com (#14605)
  1113. * [youporn] Fix title and description extraction (#18748)
  1114. + [hungama] Add support for hungama.com (#17402, #18771)
  1115. * [dtube] Fix extraction (#18741)
  1116. * [tvnow] Fix and rework extractors and prepare for a switch to the new API
  1117. (#17245, #18499)
  1118. * [carambatv:page] Fix extraction (#18739)
  1119. version 2019.01.02
  1120. Extractors
  1121. * [discovery] Use geo verification headers (#17838)
  1122. + [packtpub] Add support for subscription.packtpub.com (#18718)
  1123. * [yourporn] Fix extraction (#18583)
  1124. + [acast:channel] Add support for play.acast.com (#18587)
  1125. + [extractors] Add missing age limits (#18621)
  1126. + [rmcdecouverte] Add support for live stream
  1127. * [rmcdecouverte] Bypass geo restriction
  1128. * [rmcdecouverte] Update URL regular expression (#18595, 18697)
  1129. * [manyvids] Fix extraction (#18604, #18614)
  1130. * [bitchute] Fix extraction (#18567)
  1131. version 2018.12.31
  1132. Extractors
  1133. + [bbc] Add support for another embed pattern (#18643)
  1134. + [npo:live] Add support for npostart.nl (#18644)
  1135. * [beeg] Fix extraction (#18610, #18626)
  1136. * [youtube] Unescape HTML for series (#18641)
  1137. + [youtube] Extract more format metadata
  1138. * [youtube] Detect DRM protected videos (#1774)
  1139. * [youtube] Relax HTML5 player regular expressions (#18465, #18466)
  1140. * [youtube] Extend HTML5 player regular expression (#17516)
  1141. + [liveleak] Add support for another embed type and restore original
  1142. format extraction
  1143. + [crackle] Extract ISM and HTTP formats
  1144. + [twitter] Pass Referer with card request (#18579)
  1145. * [mediasite] Extend URL regular expression (#18558)
  1146. + [lecturio] Add support for lecturio.de (#18562)
  1147. + [discovery] Add support for Scripps Networks watch domains (#17947)
  1148. version 2018.12.17
  1149. Extractors
  1150. * [ard:beta] Improve geo restricted videos extraction
  1151. * [ard:beta] Fix subtitles extraction
  1152. * [ard:beta] Improve extraction robustness
  1153. * [ard:beta] Relax URL regular expression (#18441)
  1154. * [acast] Add support for embed.acast.com and play.acast.com (#18483)
  1155. * [iprima] Relax URL regular expression (#18515, #18540)
  1156. * [vrv] Fix initial state extraction (#18553)
  1157. * [youtube] Fix mark watched (#18546)
  1158. + [safari] Add support for learning.oreilly.com (#18510)
  1159. * [youtube] Fix multifeed extraction (#18531)
  1160. * [lecturio] Improve subtitles extraction (#18488)
  1161. * [uol] Fix format URL extraction (#18480)
  1162. + [ard:mediathek] Add support for classic.ardmediathek.de (#18473)
  1163. version 2018.12.09
  1164. Core
  1165. * [YoutubeDL] Keep session cookies in cookie file between runs
  1166. * [YoutubeDL] Recognize session cookies with expired set to 0 (#12929)
  1167. Extractors
  1168. + [teachable] Add support for teachable platform sites (#5451, #18150, #18272)
  1169. + [aenetworks] Add support for historyvault.com (#18460)
  1170. * [imgur] Improve gallery and album detection and extraction (#9133, #16577,
  1171. #17223, #18404)
  1172. * [iprima] Relax URL regular expression (#18453)
  1173. * [hotstar] Fix video data extraction (#18386)
  1174. * [ard:mediathek] Fix title and description extraction (#18349, #18371)
  1175. * [xvideos] Switch to HTTPS (#18422, #18427)
  1176. + [lecturio] Add support for lecturio.com (#18405)
  1177. + [nrktv:series] Add support for extra materials
  1178. * [nrktv:season,series] Fix extraction (#17159, #17258)
  1179. * [nrktv] Relax URL regular expression (#18304, #18387)
  1180. * [yourporn] Fix extraction (#18424, #18425)
  1181. * [tbs] Fix info extraction (#18403)
  1182. + [gamespot] Add support for review URLs
  1183. version 2018.12.03
  1184. Core
  1185. * [utils] Fix random_birthday to generate existing dates only (#18284)
  1186. Extractors
  1187. + [tiktok] Add support for tiktok.com (#18108, #18135)
  1188. * [pornhub] Use actual URL host for requests (#18359)
  1189. * [lynda] Fix authentication (#18158, #18217)
  1190. * [gfycat] Update API endpoint (#18333, #18343)
  1191. + [hotstar] Add support for alternative app state layout (#18320)
  1192. * [azmedien] Fix extraction (#18334, #18336)
  1193. + [vimeo] Add support for VHX (Vimeo OTT) (#14835)
  1194. * [joj] Fix extraction (#18280, #18281)
  1195. + [wistia] Add support for fast.wistia.com (#18287)
  1196. version 2018.11.23
  1197. Core
  1198. + [setup.py] Add more relevant classifiers
  1199. Extractors
  1200. * [mixcloud] Fallback to hardcoded decryption key (#18016)
  1201. * [nbc:news] Fix article extraction (#16194)
  1202. * [foxsports] Fix extraction (#17543)
  1203. * [loc] Relax regular expression and improve formats extraction
  1204. + [ciscolive] Add support for ciscolive.cisco.com (#17984)
  1205. * [nzz] Relax kaltura regex (#18228)
  1206. * [sixplay] Fix formats extraction
  1207. * [bitchute] Improve title extraction
  1208. * [kaltura] Limit requested MediaEntry fields
  1209. + [americastestkitchen] Add support for zype embeds (#18225)
  1210. + [pornhub] Add pornhub.net alias
  1211. * [nova:embed] Fix extraction (#18222)
  1212. version 2018.11.18
  1213. Extractors
  1214. + [wwe] Extract subtitles
  1215. + [wwe] Add support for playlistst (#14781)
  1216. + [wwe] Add support for wwe.com (#14781, #17450)
  1217. * [vk] Detect geo restriction (#17767)
  1218. * [openload] Use original host during extraction (#18211)
  1219. * [atvat] Fix extraction (#18041)
  1220. + [rte] Add support for new API endpoint (#18206)
  1221. * [tnaflixnetwork:embed] Fix extraction (#18205)
  1222. * [picarto] Use API and add token support (#16518)
  1223. + [zype] Add support for player.zype.com (#18143)
  1224. * [vivo] Fix extraction (#18139)
  1225. * [ruutu] Update API endpoint (#18138)
  1226. version 2018.11.07
  1227. Extractors
  1228. + [youtube] Add another JS signature function name regex (#18091, #18093,
  1229. #18094)
  1230. * [facebook] Fix tahoe request (#17171)
  1231. * [cliphunter] Fix extraction (#18083)
  1232. + [youtube:playlist] Add support for invidio.us (#18077)
  1233. * [zattoo] Arrange API hosts for derived extractors (#18035)
  1234. + [youtube] Add fallback metadata extraction from videoDetails (#18052)
  1235. version 2018.11.03
  1236. Core
  1237. * [extractor/common] Ensure response handle is not prematurely closed before
  1238. it can be read if it matches expected_status (#17195, #17846, #17447)
  1239. Extractors
  1240. * [laola1tv:embed] Set correct stream access URL scheme (#16341)
  1241. + [ehftv] Add support for ehftv.com (#15408)
  1242. * [azmedien] Adopt to major site redesign (#17745, #17746)
  1243. + [twitcasting] Add support for twitcasting.tv (#17981)
  1244. * [orf:tvthek] Fix extraction (#17737, #17956, #18024)
  1245. + [openload] Add support for oload.fun (#18045)
  1246. * [njpwworld] Fix authentication (#17427)
  1247. + [linkedin:learning] Add support for linkedin.com/learning (#13545)
  1248. * [theplatform] Improve error detection (#13222)
  1249. * [cnbc] Simplify extraction (#14280, #17110)
  1250. + [cbnc] Add support for new URL schema (#14193)
  1251. * [aparat] Improve extraction and extract more metadata (#17445, #18008)
  1252. * [aparat] Fix extraction
  1253. version 2018.10.29
  1254. Core
  1255. + [extractor/common] Add validation for JSON-LD URLs
  1256. Extractors
  1257. + [sportbox] Add support for matchtv.ru
  1258. * [sportbox] Fix extraction (#17978)
  1259. * [screencast] Fix extraction (#14590, #14617, #17990)
  1260. + [openload] Add support for oload.icu
  1261. + [ivi] Add support for ivi.tv
  1262. * [crunchyroll] Improve extraction failsafeness (#17991)
  1263. * [dailymail] Fix formats extraction (#17976)
  1264. * [viewster] Reduce format requests
  1265. * [cwtv] Handle API errors (#17905)
  1266. + [rutube] Use geo verification headers (#17897)
  1267. + [brightcove:legacy] Add fallbacks to brightcove:new (#13912)
  1268. - [tv3] Remove extractor (#10461, #15339)
  1269. * [ted] Fix extraction for HTTP and RTMP formats (#5941, #17572, #17894)
  1270. + [openload] Add support for oload.cc (#17823)
  1271. + [patreon] Extract post_file URL (#17792)
  1272. * [patreon] Fix extraction (#14502, #10471)
  1273. version 2018.10.05
  1274. Extractors
  1275. * [pluralsight] Improve authentication (#17762)
  1276. * [dailymotion] Fix extraction (#17699)
  1277. * [crunchyroll] Switch to HTTPS for RpcApi (#17749)
  1278. + [philharmoniedeparis] Add support for pad.philharmoniedeparis.fr (#17705)
  1279. * [philharmoniedeparis] Fix extraction (#17705)
  1280. + [jamendo] Add support for licensing.jamendo.com (#17724)
  1281. + [openload] Add support for oload.cloud (#17710)
  1282. * [pluralsight] Fix subtitles extraction (#17726, #17728)
  1283. + [vimeo] Add another config regular expression (#17690)
  1284. * [spike] Fix Paramount Network extraction (#17677)
  1285. * [hotstar] Fix extraction (#14694, #14931, #17637)
  1286. version 2018.09.26
  1287. Extractors
  1288. * [pluralsight] Fix subtitles extraction (#17671)
  1289. * [mediaset] Improve embed support (#17668)
  1290. + [youtube] Add support for invidio.us (#17613)
  1291. + [zattoo] Add support for more zattoo platform sites
  1292. * [zattoo] Fix extraction (#17175, #17542)
  1293. version 2018.09.18
  1294. Core
  1295. + [extractor/common] Introduce channel meta fields
  1296. Extractors
  1297. * [adobepass] Don't pollute default headers dict
  1298. * [udemy] Don't pollute default headers dict
  1299. * [twitch] Don't pollute default headers dict
  1300. * [youtube] Don't pollute default query dict (#17593)
  1301. * [crunchyroll] Prefer hardsubless formats and formats in locale language
  1302. * [vrv] Make format ids deterministic
  1303. * [vimeo] Fix ondemand playlist extraction (#14591)
  1304. + [pornhub] Extract upload date (#17574)
  1305. + [porntube] Extract channel meta fields
  1306. + [vimeo] Extract channel meta fields
  1307. + [youtube] Extract channel meta fields (#9676, #12939)
  1308. * [porntube] Fix extraction (#17541)
  1309. * [asiancrush] Fix extraction (#15630)
  1310. + [twitch:clips] Extend URL regular expression (#17559)
  1311. + [vzaar] Add support for HLS
  1312. * [tube8] Fix metadata extraction (#17520)
  1313. * [eporner] Extract JSON-LD (#17519)
  1314. version 2018.09.10
  1315. Core
  1316. + [utils] Properly recognize AV1 codec (#17506)
  1317. Extractors
  1318. + [iprima] Add support for prima.iprima.cz (#17514)
  1319. + [tele5] Add support for tele5.de (#7805, #7922, #17331, #17414)
  1320. * [nbc] Fix extraction of percent encoded URLs (#17374)
  1321. version 2018.09.08
  1322. Extractors
  1323. * [youtube] Fix extraction (#17457, #17464)
  1324. + [pornhub:uservideos] Add support for new URLs (#17388)
  1325. * [iprima] Confirm adult check (#17437)
  1326. * [slideslive] Make check for video service name case-insensitive (#17429)
  1327. * [radiojavan] Fix extraction (#17151)
  1328. * [generic] Skip unsuccessful jwplayer extraction (#16735)
  1329. version 2018.09.01
  1330. Core
  1331. * [utils] Skip remote IP addresses non matching to source address' IP version
  1332. when creating a connection (#13422, #17362)
  1333. Extractors
  1334. + [ard] Add support for one.ard.de (#17397)
  1335. * [niconico] Fix extraction on python3 (#17393, #17407)
  1336. * [ard] Extract f4m formats
  1337. * [crunchyroll] Parse vilos media data (#17343)
  1338. + [ard] Add support for Beta ARD Mediathek
  1339. + [bandcamp] Extract more metadata (#13197)
  1340. * [internazionale] Fix extraction of non-available-abroad videos (#17386)
  1341. version 2018.08.28
  1342. Extractors
  1343. + [youtube:playlist] Add support for music album playlists (OLAK5uy_ prefix)
  1344. (#17361)
  1345. * [bitchute] Fix extraction by pass custom User-Agent (#17360)
  1346. * [webofstories:playlist] Fix extraction (#16914)
  1347. + [tvplayhome] Add support for new tvplay URLs (#17344)
  1348. + [generic] Allow relative src for videojs embeds (#17324)
  1349. + [xfileshare] Add support for vidto.se (#17317)
  1350. + [vidzi] Add support for vidzi.nu (#17316)
  1351. + [nova:embed] Add support for media.cms.nova.cz (#17282)
  1352. version 2018.08.22
  1353. Core
  1354. * [utils] Use pure browser header for User-Agent (#17236)
  1355. Extractors
  1356. + [kinopoisk] Add support for kinopoisk.ru (#17283)
  1357. + [yourporn] Add support for yourporn.sexy (#17298)
  1358. + [go] Add support for disneynow.go.com (#16299, #17264)
  1359. + [6play] Add support for play.rtl.hr (#17249)
  1360. * [anvato] Fallback to generic API key for access-key-to-API-key lookup
  1361. (#16788, #17254)
  1362. * [lci] Fix extraction (#17274)
  1363. * [bbccouk] Extend id URL regular expression (#17270)
  1364. * [cwtv] Fix extraction (#17256)
  1365. * [nova] Fix extraction (#17241)
  1366. + [generic] Add support for expressen embeds
  1367. * [raywenderlich] Adapt to site redesign (#17225)
  1368. + [redbulltv] Add support redbull.com tv URLs (#17218)
  1369. + [bitchute] Add support for bitchute.com (#14052)
  1370. + [clyp] Add support for token protected media (#17184)
  1371. * [imdb] Fix extension extraction (#17167)
  1372. version 2018.08.04
  1373. Extractors
  1374. * [funk:channel] Improve byChannelAlias extraction (#17142)
  1375. * [twitch] Fix authentication (#17024, #17126)
  1376. * [twitch:vod] Improve URL regular expression (#17135)
  1377. * [watchbox] Fix extraction (#17107)
  1378. * [pbs] Fix extraction (#17109)
  1379. * [theplatform] Relax URL regular expression (#16181, #17097)
  1380. + [viqeo] Add support for viqeo.tv (#17066)
  1381. version 2018.07.29
  1382. Extractors
  1383. * [crunchyroll:playlist] Restrict URL regular expression (#17069, #17076)
  1384. + [pornhub] Add support for subtitles (#16924, #17088)
  1385. * [ceskatelevize] Use https for API call (#16997, #16999)
  1386. * [dailymotion:playlist] Fix extraction (#16894)
  1387. * [ted] Improve extraction
  1388. * [ted] Fix extraction for videos without nativeDownloads (#16756, #17085)
  1389. * [telecinco] Fix extraction (#17080)
  1390. * [mitele] Reduce number of requests
  1391. * [rai] Return non HTTP relinker URL intact (#17055)
  1392. * [vk] Fix extraction for inline only videos (#16923)
  1393. * [streamcloud] Fix extraction (#17054)
  1394. * [facebook] Fix tahoe player extraction with authentication (#16655)
  1395. + [puhutv] Add support for puhutv.com (#12712, #16010, #16269)
  1396. version 2018.07.21
  1397. Core
  1398. + [utils] Introduce url_or_none
  1399. * [utils] Allow JSONP without function name (#17028)
  1400. + [extractor/common] Extract DASH and MSS formats from SMIL manifests
  1401. Extractors
  1402. + [bbc] Add support for BBC Radio Play pages (#17022)
  1403. * [iwara] Fix download URLs (#17026)
  1404. * [vrtnu] Relax title extraction and extract JSON-LD (#17018)
  1405. + [viu] Pass Referer and Origin headers and area id (#16992)
  1406. + [vimeo] Add another config regular expression (#17013)
  1407. + [facebook] Extract view count (#16942)
  1408. * [dailymotion] Improve description extraction (#16984)
  1409. * [slutload] Fix and improve extraction (#17001)
  1410. * [mediaset] Fix extraction (#16977)
  1411. + [theplatform] Add support for theplatform TLD customization (#16977)
  1412. * [imgur] Relax URL regular expression (#16987)
  1413. * [pornhub] Improve extraction and extract all formats (#12166, #15891, #16262,
  1414. #16959)
  1415. version 2018.07.10
  1416. Core
  1417. * [utils] Share JSON-LD regular expression
  1418. * [downloader/dash] Improve error handling (#16927)
  1419. Extractors
  1420. + [nrktv] Add support for new season and serie URL schema
  1421. + [nrktv] Add support for new episode URL schema (#16909)
  1422. + [frontendmasters] Add support for frontendmasters.com (#3661, #16328)
  1423. * [funk] Fix extraction (#16918)
  1424. * [watchbox] Fix extraction (#16904)
  1425. * [dplayit] Sort formats
  1426. * [dplayit] Fix extraction (#16901)
  1427. * [youtube] Improve login error handling (#13822)
  1428. version 2018.07.04
  1429. Core
  1430. * [extractor/common] Properly escape % in MPD templates (#16867)
  1431. * [extractor/common] Use source URL as Referer for HTML5 entries (16849)
  1432. * Prefer ffmpeg over avconv by default (#8622)
  1433. Extractors
  1434. * [pluralsight] Switch to graphql (#16889, #16895, #16896, #16899)
  1435. * [lynda] Simplify login and improve error capturing (#16891)
  1436. + [go90] Add support for embed URLs (#16873)
  1437. * [go90] Detect geo restriction error and pass geo verification headers
  1438. (#16874)
  1439. * [vlive] Fix live streams extraction (#16871)
  1440. * [npo] Fix typo (#16872)
  1441. + [mediaset] Add support for new videos and extract all formats (#16568)
  1442. * [dctptv] Restore extraction based on REST API (#16850)
  1443. * [svt] Improve extraction and add support for pages (#16802)
  1444. * [porncom] Fix extraction (#16808)
  1445. version 2018.06.25
  1446. Extractors
  1447. * [joj] Relax URL regular expression (#16771)
  1448. * [brightcove] Workaround sonyliv DRM protected videos (#16807)
  1449. * [motherless] Fix extraction (#16786)
  1450. * [itv] Make SOAP request non fatal and extract metadata from webpage (#16780)
  1451. - [foxnews:insider] Remove extractor (#15810)
  1452. + [foxnews] Add support for iframe embeds (#15810, #16711)
  1453. version 2018.06.19
  1454. Core
  1455. + [extractor/common] Introduce expected_status in _download_* methods
  1456. for convenient accept of HTTP requests failed with non 2xx status codes
  1457. + [compat] Introduce compat_integer_types
  1458. Extractors
  1459. * [peertube] Improve generic support (#16733)
  1460. + [6play] Use geo verification headers
  1461. * [rtbf] Fix extraction for python 3.2
  1462. * [vgtv] Improve HLS formats extraction
  1463. + [vgtv] Add support for www.aftonbladet.se/tv URLs
  1464. * [bbccouk] Use expected_status
  1465. * [markiza] Expect 500 HTTP status code
  1466. * [tvnow] Try all clear manifest URLs (#15361)
  1467. version 2018.06.18
  1468. Core
  1469. * [downloader/rtmp] Fix downloading in verbose mode (#16736)
  1470. Extractors
  1471. + [markiza] Add support for markiza.sk (#16750)
  1472. * [wat] Try all supported adaptive URLs
  1473. + [6play] Add support for rtlplay.be and extract hd usp formats
  1474. + [rtbf] Add support for audio and live streams (#9638, #11923)
  1475. + [rtbf] Extract HLS, DASH and all HTTP formats
  1476. + [rtbf] Extract subtitles
  1477. + [rtbf] Fixup specific HTTP URLs (#16101)
  1478. + [expressen] Add support for expressen.se
  1479. * [vidzi] Fix extraction (#16678)
  1480. * [pbs] Improve extraction (#16623, #16684)
  1481. * [bilibili] Restrict cid regular expression (#16638, #16734)
  1482. version 2018.06.14
  1483. Core
  1484. * [downloader/http] Fix retry on error when streaming to stdout (#16699)
  1485. Extractors
  1486. + [discoverynetworks] Add support for disco-api videos (#16724)
  1487. + [dailymotion] Add support for password protected videos (#9789)
  1488. + [abc:iview] Add support for livestreams (#12354)
  1489. * [abc:iview] Fix extraction (#16704)
  1490. + [crackle] Add support for sonycrackle.com (#16698)
  1491. + [tvnet] Add support for tvnet.gov.vn (#15462)
  1492. * [nrk] Update API hosts and try all previously known ones (#16690)
  1493. * [wimp] Fix Youtube embeds extraction
  1494. version 2018.06.11
  1495. Extractors
  1496. * [npo] Extend URL regular expression and add support for npostart.nl (#16682)
  1497. + [inc] Add support for another embed schema (#16666)
  1498. * [tv4] Fix format extraction (#16650)
  1499. + [nexx] Add support for free cdn (#16538)
  1500. + [pbs] Add another cove id pattern (#15373)
  1501. + [rbmaradio] Add support for 192k format (#16631)
  1502. version 2018.06.04
  1503. Extractors
  1504. + [camtube] Add support for camtube.co
  1505. + [twitter:card] Extract guest token (#16609)
  1506. + [chaturbate] Use geo verification headers
  1507. + [bbc] Add support for bbcthree (#16612)
  1508. * [youtube] Move metadata extraction after video availability check
  1509. + [youtube] Extract track and artist
  1510. + [safari] Add support for new URL schema (#16614)
  1511. * [adn] Fix extraction
  1512. version 2018.06.02
  1513. Core
  1514. * [utils] Improve determine_ext
  1515. Extractors
  1516. + [facebook] Add support for tahoe player videos (#15441, #16554)
  1517. * [cbc] Improve extraction (#16583, #16593)
  1518. * [openload] Improve ext extraction (#16595)
  1519. + [twitter:card] Add support for another endpoint (#16586)
  1520. + [openload] Add support for oload.win and oload.download (#16592)
  1521. * [audimedia] Fix extraction (#15309)
  1522. + [francetv] Add support for sport.francetvinfo.fr (#15645)
  1523. * [mlb] Improve extraction (#16587)
  1524. - [nhl] Remove old extractors
  1525. * [rbmaradio] Check formats availability (#16585)
  1526. version 2018.05.30
  1527. Core
  1528. * [downloader/rtmp] Generalize download messages and report time elapsed
  1529. on finish
  1530. * [downloader/rtmp] Gracefully handle live streams interrupted by user
  1531. Extractors
  1532. * [teamcoco] Fix extraction for full episodes (#16573)
  1533. * [spiegel] Fix info extraction (#16538)
  1534. + [apa] Add support for apa.at (#15041, #15672)
  1535. + [bellmedia] Add support for bnnbloomberg.ca (#16560)
  1536. + [9c9media] Extract MPD formats and subtitles
  1537. * [cammodels] Use geo verification headers
  1538. + [ufctv] Add support for authentication (#16542)
  1539. + [cammodels] Add support for cammodels.com (#14499)
  1540. * [utils] Fix style id extraction for namespaced id attribute in dfxp2srt
  1541. (#16551)
  1542. * [soundcloud] Detect format extension (#16549)
  1543. * [cbc] Fix playlist title extraction (#16502)
  1544. + [tumblr] Detect and report sensitive media (#13829)
  1545. + [tumblr] Add support for authentication (#15133)
  1546. version 2018.05.26
  1547. Core
  1548. * [utils] Improve parse_age_limit
  1549. Extractors
  1550. * [audiomack] Stringify video id (#15310)
  1551. * [izlesene] Fix extraction (#16233, #16271, #16407)
  1552. + [indavideo] Add support for generic embeds (#11989)
  1553. * [indavideo] Fix extraction (#11221)
  1554. * [indavideo] Sign download URLs (#16174)
  1555. + [peertube] Add support for PeerTube based sites (#16301, #16329)
  1556. * [imgur] Fix extraction (#16537)
  1557. + [hidive] Add support for authentication (#16534)
  1558. + [nbc] Add support for stream.nbcsports.com (#13911)
  1559. + [viewlift] Add support for hoichoi.tv (#16536)
  1560. * [go90] Extract age limit and detect DRM protection(#10127)
  1561. * [viewlift] fix extraction for snagfilms.com (#15766)
  1562. * [globo] Improve extraction (#4189)
  1563. * Add support for authentication
  1564. * Simplify URL signing
  1565. * Extract DASH and MSS formats
  1566. * [leeco] Fix extraction (#16464)
  1567. * [teamcoco] Add fallback for format extraction (#16484)
  1568. * [teamcoco] Improve URL regular expression (#16484)
  1569. * [imdb] Improve extraction (#4085, #14557)
  1570. version 2018.05.18
  1571. Extractors
  1572. * [vimeo:likes] Relax URL regular expression and fix single page likes
  1573. extraction (#16475)
  1574. * [pluralsight] Fix clip id extraction (#16460)
  1575. + [mychannels] Add support for mychannels.com (#15334)
  1576. - [moniker] Remove extractor (#15336)
  1577. * [pbs] Fix embed data extraction (#16474)
  1578. + [mtv] Add support for paramountnetwork.com and bellator.com (#15418)
  1579. * [youtube] Fix hd720 format position
  1580. * [dailymotion] Remove fragment part from m3u8 URLs (#8915)
  1581. * [3sat] Improve extraction (#15350)
  1582. * Extract all formats
  1583. * Extract more format metadata
  1584. * Improve format sorting
  1585. * Use hls native downloader
  1586. * Detect and bypass geo-restriction
  1587. + [dtube] Add support for d.tube (#15201)
  1588. * [options] Fix typo (#16450)
  1589. * [youtube] Improve format filesize extraction (#16453)
  1590. * [youtube] Make uploader extraction non fatal (#16444)
  1591. * [youtube] Fix extraction for embed restricted live streams (#16433)
  1592. * [nbc] Improve info extraction (#16440)
  1593. * [twitch:clips] Fix extraction (#16429)
  1594. * [redditr] Relax URL regular expression (#16426, #16427)
  1595. * [mixcloud] Bypass throttling for HTTP formats (#12579, #16424)
  1596. + [nick] Add support for nickjr.de (#13230)
  1597. * [teamcoco] Fix extraction (#16374)
  1598. version 2018.05.09
  1599. Core
  1600. * [YoutubeDL] Ensure ext exists for automatic captions
  1601. * Introduce --geo-bypass-ip-block
  1602. Extractors
  1603. + [udemy] Extract asset captions
  1604. + [udemy] Extract stream URLs (#16372)
  1605. + [businessinsider] Add support for businessinsider.com (#16387, #16388, #16389)
  1606. + [cloudflarestream] Add support for cloudflarestream.com (#16375)
  1607. * [watchbox] Fix extraction (#16356)
  1608. * [discovery] Extract Affiliate/Anonymous Auth Token from cookies (#14954)
  1609. + [itv:btcc] Add support for itv.com/btcc (#16139)
  1610. * [tunein] Use live title for live streams (#16347)
  1611. * [itv] Improve extraction (#16253)
  1612. version 2018.05.01
  1613. Core
  1614. * [downloader/fragment] Restart download if .ytdl file is corrupt (#16312)
  1615. + [extractor/common] Extract interaction statistic
  1616. + [utils] Add merge_dicts
  1617. + [extractor/common] Add _download_json_handle
  1618. Extractors
  1619. * [kaltura] Improve iframe embeds detection (#16337)
  1620. + [udemy] Extract outputs renditions (#16289, #16291, #16320, #16321, #16334,
  1621. #16335)
  1622. + [zattoo] Add support for zattoo.com and mobiltv.quickline.com (#14668, #14676)
  1623. * [yandexmusic] Convert release_year to int
  1624. * [udemy] Override _download_webpage_handle instead of _download_webpage
  1625. * [xiami] Override _download_webpage_handle instead of _download_webpage
  1626. * [yandexmusic] Override _download_webpage_handle instead of _download_webpage
  1627. * [youtube] Correctly disable polymer on all requests (#16323, #16326)
  1628. * [generic] Prefer enclosures over links in RSS feeds (#16189)
  1629. + [redditr] Add support for old.reddit.com URLs (#16274)
  1630. * [nrktv] Update API host (#16324)
  1631. + [imdb] Extract all formats (#16249)
  1632. + [vimeo] Extract JSON-LD (#16295)
  1633. * [funk:channel] Improve extraction (#16285)
  1634. version 2018.04.25
  1635. Core
  1636. * [utils] Fix match_str for boolean meta fields
  1637. + [Makefile] Add support for pandoc 2 and disable smart extension (#16251)
  1638. * [YoutubeDL] Fix typo in media extension compatibility checker (#16215)
  1639. Extractors
  1640. + [openload] Recognize IPv6 stream URLs (#16136, #16137, #16205, #16246,
  1641. #16250)
  1642. + [twitch] Extract is_live according to status (#16259)
  1643. * [pornflip] Relax URL regular expression (#16258)
  1644. - [etonline] Remove extractor (#16256)
  1645. * [breakcom] Fix extraction (#16254)
  1646. + [youtube] Add ability to authenticate with cookies
  1647. * [youtube:feed] Implement lazy playlist extraction (#10184)
  1648. + [svt] Add support for TV channel live streams (#15279, #15809)
  1649. * [ccma] Fix video extraction (#15931)
  1650. * [rentv] Fix extraction (#15227)
  1651. + [nick] Add support for nickjr.nl (#16230)
  1652. * [extremetube] Fix metadata extraction
  1653. + [keezmovies] Add support for generic embeds (#16134, #16154)
  1654. * [nexx] Extract new azure URLs (#16223)
  1655. * [cbssports] Fix extraction (#16217)
  1656. * [kaltura] Improve embeds detection (#16201)
  1657. * [instagram:user] Fix extraction (#16119)
  1658. * [cbs] Skip DRM asset types (#16104)
  1659. version 2018.04.16
  1660. Extractors
  1661. * [smotri:broadcast] Fix extraction (#16180)
  1662. + [picarto] Add support for picarto.tv (#6205, #12514, #15276, #15551)
  1663. * [vine:user] Fix extraction (#15514, #16190)
  1664. * [pornhub] Relax URL regular expression (#16165)
  1665. * [cbc:watch] Re-acquire device token when expired (#16160)
  1666. + [fxnetworks] Add support for https theplatform URLs (#16125, #16157)
  1667. + [instagram:user] Add request signing (#16119)
  1668. + [twitch] Add support for mobile URLs (#16146)
  1669. version 2018.04.09
  1670. Core
  1671. * [YoutubeDL] Do not save/restore console title while simulate (#16103)
  1672. * [extractor/common] Relax JSON-LD context check (#16006)
  1673. Extractors
  1674. + [generic] Add support for tube8 embeds
  1675. + [generic] Add support for share-videos.se embeds (#16089, #16115)
  1676. * [odnoklassniki] Extend URL regular expression (#16081)
  1677. * [steam] Bypass mature content check (#16113)
  1678. + [acast] Extract more metadata
  1679. * [acast] Fix extraction (#16118)
  1680. * [instagram:user] Fix extraction (#16119)
  1681. * [drtuber] Fix title extraction (#16107, #16108)
  1682. * [liveleak] Extend URL regular expression (#16117)
  1683. + [openload] Add support for oload.xyz
  1684. * [openload] Relax stream URL regular expression
  1685. * [openload] Fix extraction (#16099)
  1686. + [svtplay:series] Add support for season URLs
  1687. + [svtplay:series] Add support for series (#11130, #16059)
  1688. version 2018.04.03
  1689. Extractors
  1690. + [tvnow] Add support for shows (#15837)
  1691. * [dramafever] Fix authentication (#16067)
  1692. * [afreecatv] Use partial view only when necessary (#14450)
  1693. + [afreecatv] Add support for authentication (#14450)
  1694. + [nationalgeographic] Add support for new URL schema (#16001, #16054)
  1695. * [xvideos] Fix thumbnail extraction (#15978, #15979)
  1696. * [medialaan] Fix vod id (#16038)
  1697. + [openload] Add support for oload.site (#16039)
  1698. * [naver] Fix extraction (#16029)
  1699. * [dramafever] Partially switch to API v5 (#16026)
  1700. * [abc:iview] Unescape title and series meta fields (#15994)
  1701. * [videa] Extend URL regular expression (#16003)
  1702. version 2018.03.26.1
  1703. Core
  1704. + [downloader/external] Add elapsed time to progress hook (#10876)
  1705. * [downloader/external,fragment] Fix download finalization when writing file
  1706. to stdout (#10809, #10876, #15799)
  1707. Extractors
  1708. * [vrv] Fix extraction on python2 (#15928)
  1709. * [afreecatv] Update referrer (#15947)
  1710. + [24video] Add support for 24video.sexy (#15973)
  1711. * [crackle] Bypass geo restriction
  1712. * [crackle] Fix extraction (#15969)
  1713. + [lenta] Add support for lenta.ru (#15953)
  1714. + [instagram:user] Add pagination (#15934)
  1715. * [youku] Update ccode (#15939)
  1716. * [libsyn] Adapt to new page structure
  1717. version 2018.03.20
  1718. Core
  1719. * [extractor/common] Improve thumbnail extraction for HTML5 entries
  1720. * Generalize XML manifest processing code and improve XSPF parsing
  1721. + [extractor/common] Add _download_xml_handle
  1722. + [extractor/common] Add support for relative URIs in _parse_xspf (#15794)
  1723. Extractors
  1724. + [7plus] Extract series metadata (#15862, #15906)
  1725. * [9now] Bypass geo restriction (#15920)
  1726. * [cbs] Skip unavailable assets (#13490, #13506, #15776)
  1727. + [canalc2] Add support for HTML5 videos (#15916, #15919)
  1728. + [ceskatelevize] Add support for iframe embeds (#15918)
  1729. + [prosiebensat1] Add support for galileo.tv (#15894)
  1730. + [generic] Add support for xfileshare embeds (#15879)
  1731. * [bilibili] Switch to v2 playurl API
  1732. * [bilibili] Fix and improve extraction (#15048, #15430, #15622, #15863)
  1733. * [heise] Improve extraction (#15496, #15784, #15026)
  1734. * [instagram] Fix user videos extraction (#15858)
  1735. version 2018.03.14
  1736. Extractors
  1737. * [soundcloud] Update client id (#15866)
  1738. + [tennistv] Add support for tennistv.com
  1739. + [line] Add support for tv.line.me (#9427)
  1740. * [xnxx] Fix extraction (#15817)
  1741. * [njpwworld] Fix authentication (#15815)
  1742. version 2018.03.10
  1743. Core
  1744. * [downloader/hls] Skip uplynk ad fragments (#15748)
  1745. Extractors
  1746. * [pornhub] Don't override session cookies (#15697)
  1747. + [raywenderlich] Add support for videos.raywenderlich.com (#15251)
  1748. * [funk] Fix extraction and rework extractors (#15792)
  1749. * [nexx] Restore reverse engineered approach
  1750. + [heise] Add support for kaltura embeds (#14961, #15728)
  1751. + [tvnow] Extract series metadata (#15774)
  1752. * [ruutu] Continue formats extraction on NOT-USED URLs (#15775)
  1753. * [vrtnu] Use redirect URL for building video JSON URL (#15767, #15769)
  1754. * [vimeo] Modernize login code and improve error messaging
  1755. * [archiveorg] Fix extraction (#15770, #15772)
  1756. + [hidive] Add support for hidive.com (#15494)
  1757. * [afreecatv] Detect deleted videos
  1758. * [afreecatv] Fix extraction (#15755)
  1759. * [vice] Fix extraction and rework extractors (#11101, #13019, #13622, #13778)
  1760. + [vidzi] Add support for vidzi.si (#15751)
  1761. * [npo] Fix typo
  1762. version 2018.03.03
  1763. Core
  1764. + [utils] Add parse_resolution
  1765. Revert respect --prefer-insecure while updating
  1766. Extractors
  1767. + [yapfiles] Add support for yapfiles.ru (#15726, #11085)
  1768. * [spankbang] Fix formats extraction (#15727)
  1769. * [adn] Fix extraction (#15716)
  1770. + [toggle] Extract DASH and ISM formats (#15721)
  1771. + [nickelodeon] Add support for nickelodeon.com.tr (#15706)
  1772. * [npo] Validate and filter format URLs (#15709)
  1773. version 2018.02.26
  1774. Extractors
  1775. * [udemy] Use custom User-Agent (#15571)
  1776. version 2018.02.25
  1777. Core
  1778. * [postprocessor/embedthumbnail] Skip embedding when there aren't any
  1779. thumbnails (#12573)
  1780. * [extractor/common] Improve jwplayer subtitles extraction (#15695)
  1781. Extractors
  1782. + [vidlii] Add support for vidlii.com (#14472, #14512, #14779)
  1783. + [streamango] Capture and output error messages
  1784. * [streamango] Fix extraction (#14160, #14256)
  1785. + [telequebec] Add support for emissions (#14649, #14655)
  1786. + [telequebec:live] Add support for live streams (#15688)
  1787. + [mailru:music] Add support for mail.ru/music (#15618)
  1788. * [aenetworks] Switch to akamai HLS formats (#15612)
  1789. * [ytsearch] Fix flat title extraction (#11260, #15681)
  1790. version 2018.02.22
  1791. Core
  1792. + [utils] Fixup some common URL typos in sanitize_url (#15649)
  1793. * Respect --prefer-insecure while updating (#15497)
  1794. Extractors
  1795. * [vidio] Fix HLS URL extraction (#15675)
  1796. + [nexx] Add support for arc.nexx.cloud URLs
  1797. * [nexx] Switch to arc API (#15652)
  1798. * [redtube] Fix duration extraction (#15659)
  1799. + [sonyliv] Respect referrer (#15648)
  1800. + [brightcove:new] Use referrer for formats' HTTP headers
  1801. + [cbc] Add support for olympics.cbc.ca (#15535)
  1802. + [fusion] Add support for fusion.tv (#15628)
  1803. * [npo] Improve quality metadata extraction
  1804. * [npo] Relax URL regular expression (#14987, #14994)
  1805. + [npo] Capture and output error message
  1806. + [pornhub] Add support for channels (#15613)
  1807. * [youtube] Handle shared URLs with generic extractor (#14303)
  1808. version 2018.02.11
  1809. Core
  1810. + [YoutubeDL] Add support for filesize_approx in format selector (#15550)
  1811. Extractors
  1812. + [francetv] Add support for live streams (#13689)
  1813. + [francetv] Add support for zouzous.fr and ludo.fr (#10454, #13087, #13103,
  1814. #15012)
  1815. * [francetv] Separate main extractor and rework others to delegate to it
  1816. * [francetv] Improve manifest URL signing (#15536)
  1817. + [francetv] Sign m3u8 manifest URLs (#15565)
  1818. + [veoh] Add support for embed URLs (#15561)
  1819. * [afreecatv] Fix extraction (#15556)
  1820. * [periscope] Use accessVideoPublic endpoint (#15554)
  1821. * [discovery] Fix auth request (#15542)
  1822. + [6play] Extract subtitles (#15541)
  1823. * [newgrounds] Fix metadata extraction (#15531)
  1824. + [nbc] Add support for stream.nbcolympics.com (#10295)
  1825. * [dvtv] Fix live streams extraction (#15442)
  1826. version 2018.02.08
  1827. Extractors
  1828. + [myvi] Extend URL regular expression
  1829. + [myvi:embed] Add support for myvi.tv embeds (#15521)
  1830. + [prosiebensat1] Extend URL regular expression (#15520)
  1831. * [pokemon] Relax URL regular expression and extend title extraction (#15518)
  1832. + [gameinformer] Use geo verification headers
  1833. * [la7] Fix extraction (#15501, #15502)
  1834. * [gameinformer] Fix brightcove id extraction (#15416)
  1835. + [afreecatv] Pass referrer to video info request (#15507)
  1836. + [telebruxelles] Add support for live streams
  1837. * [telebruxelles] Relax URL regular expression
  1838. * [telebruxelles] Fix extraction (#15504)
  1839. * [extractor/common] Respect secure schemes in _extract_wowza_formats
  1840. version 2018.02.04
  1841. Core
  1842. * [downloader/http] Randomize HTTP chunk size
  1843. + [downloader/http] Add ability to pass downloader options via info dict
  1844. * [downloader/http] Fix 302 infinite loops by not reusing requests
  1845. + Document http_chunk_size
  1846. Extractors
  1847. + [brightcove] Pass embed page URL as referrer (#15486)
  1848. + [youtube] Enforce using chunked HTTP downloading for DASH formats
  1849. version 2018.02.03
  1850. Core
  1851. + Introduce --http-chunk-size for chunk-based HTTP downloading
  1852. + Add support for IronPython
  1853. * [downloader/ism] Fix Python 3.2 support
  1854. Extractors
  1855. * [redbulltv] Fix extraction (#15481)
  1856. * [redtube] Fix metadata extraction (#15472)
  1857. * [pladform] Respect platform id and extract HLS formats (#15468)
  1858. - [rtlnl] Remove progressive formats (#15459)
  1859. * [6play] Do no modify asset URLs with a token (#15248)
  1860. * [nationalgeographic] Relax URL regular expression
  1861. * [dplay] Relax URL regular expression (#15458)
  1862. * [cbsinteractive] Fix data extraction (#15451)
  1863. + [amcnetworks] Add support for sundancetv.com (#9260)
  1864. version 2018.01.27
  1865. Core
  1866. * [extractor/common] Improve _json_ld for articles
  1867. * Switch codebase to use compat_b64decode
  1868. + [compat] Add compat_b64decode
  1869. Extractors
  1870. + [seznamzpravy] Add support for seznam.cz and seznamzpravy.cz (#14102, #14616)
  1871. * [dplay] Bypass geo restriction
  1872. + [dplay] Add support for disco-api videos (#15396)
  1873. * [youtube] Extract precise error messages (#15284)
  1874. * [teachertube] Capture and output error message
  1875. * [teachertube] Fix and relax thumbnail extraction (#15403)
  1876. + [prosiebensat1] Add another clip id regular expression (#15378)
  1877. * [tbs] Update tokenizer url (#15395)
  1878. * [mixcloud] Use compat_b64decode (#15394)
  1879. - [thesixtyone] Remove extractor (#15341)
  1880. version 2018.01.21
  1881. Core
  1882. * [extractor/common] Improve jwplayer DASH formats extraction (#9242, #15187)
  1883. * [utils] Improve scientific notation handling in js_to_json (#14789)
  1884. Extractors
  1885. + [southparkdk] Add support for southparkstudios.nu
  1886. + [southpark] Add support for collections (#14803)
  1887. * [franceinter] Fix upload date extraction (#14996)
  1888. + [rtvs] Add support for rtvs.sk (#9242, #15187)
  1889. * [restudy] Fix extraction and extend URL regular expression (#15347)
  1890. * [youtube:live] Improve live detection (#15365)
  1891. + [springboardplatform] Add support for springboardplatform.com
  1892. * [prosiebensat1] Add another clip id regular expression (#15290)
  1893. - [ringtv] Remove extractor (#15345)
  1894. version 2018.01.18
  1895. Extractors
  1896. * [soundcloud] Update client id (#15306)
  1897. - [kamcord] Remove extractor (#15322)
  1898. + [spiegel] Add support for nexx videos (#15285)
  1899. * [twitch] Fix authentication and error capture (#14090, #15264)
  1900. * [vk] Detect more errors due to copyright complaints (#15259)
  1901. version 2018.01.14
  1902. Extractors
  1903. * [youtube] Fix live streams extraction (#15202)
  1904. * [wdr] Bypass geo restriction
  1905. * [wdr] Rework extractors (#14598)
  1906. + [wdr] Add support for wdrmaus.de/elefantenseite (#14598)
  1907. + [gamestar] Add support for gamepro.de (#3384)
  1908. * [viafree] Skip rtmp formats (#15232)
  1909. + [pandoratv] Add support for mobile URLs (#12441)
  1910. + [pandoratv] Add support for new URL format (#15131)
  1911. + [ximalaya] Add support for ximalaya.com (#14687)
  1912. + [digg] Add support for digg.com (#15214)
  1913. * [limelight] Tolerate empty pc formats (#15150, #15151, #15207)
  1914. * [ndr:embed:base] Make separate formats extraction non fatal (#15203)
  1915. + [weibo] Add extractor (#15079)
  1916. + [ok] Add support for live streams
  1917. * [canalplus] Fix extraction (#15072)
  1918. * [bilibili] Fix extraction (#15188)
  1919. version 2018.01.07
  1920. Core
  1921. * [utils] Fix youtube-dl under PyPy3 on Windows
  1922. * [YoutubeDL] Output python implementation in debug header
  1923. Extractors
  1924. + [jwplatform] Add support for multiple embeds (#15192)
  1925. * [mitele] Fix extraction (#15186)
  1926. + [motherless] Add support for groups (#15124)
  1927. * [lynda] Relax URL regular expression (#15185)
  1928. * [soundcloud] Fallback to avatar picture for thumbnail (#12878)
  1929. * [youku] Fix list extraction (#15135)
  1930. * [openload] Fix extraction (#15166)
  1931. * [lynda] Skip invalid subtitles (#15159)
  1932. * [twitch] Pass video id to url_result when extracting playlist (#15139)
  1933. * [rtve.es:alacarta] Fix extraction of some new URLs
  1934. * [acast] Fix extraction (#15147)
  1935. version 2017.12.31
  1936. Core
  1937. + [extractor/common] Add container meta field for formats extracted
  1938. in _parse_mpd_formats (#13616)
  1939. + [downloader/hls] Use HTTP headers for key request
  1940. * [common] Use AACL as the default fourcc when AudioTag is 255
  1941. * [extractor/common] Fix extraction of DASH formats with the same
  1942. representation id (#15111)
  1943. Extractors
  1944. + [slutload] Add support for mobile URLs (#14806)
  1945. * [abc:iview] Bypass geo restriction
  1946. * [abc:iview] Fix extraction (#14711, #14782, #14838, #14917, #14963, #14985,
  1947. #15035, #15057, #15061, #15071, #15095, #15106)
  1948. * [openload] Fix extraction (#15118)
  1949. - [sandia] Remove extractor
  1950. - [collegerama] Remove extractor
  1951. + [mediasite] Add support for sites based on Mediasite Video Platform (#5428,
  1952. #11185, #14343)
  1953. + [ufctv] Add support for ufc.tv (#14520)
  1954. * [pluralsight] Fix missing first line of subtitles (#11118)
  1955. * [openload] Fallback on f-page extraction (#14665, #14879)
  1956. * [vimeo] Improve password protected videos extraction (#15114)
  1957. * [aws] Fix canonical/signed headers generation on python 2 (#15102)
  1958. version 2017.12.28
  1959. Extractors
  1960. + [internazionale] Add support for internazionale.it (#14973)
  1961. * [playtvak] Relax video regular expression and make description optional
  1962. (#15037)
  1963. + [filmweb] Add support for filmweb.no (#8773, #10368)
  1964. + [23video] Add support for 23video.com
  1965. + [espn] Add support for fivethirtyeight.com (#6864)
  1966. + [umg:de] Add support for universal-music.de (#11582, #11584)
  1967. + [espn] Add support for espnfc and extract more formats (#8053)
  1968. * [youku] Update ccode (#14880)
  1969. + [openload] Add support for oload.stream (#15070)
  1970. * [youku] Fix list extraction (#15065)
  1971. version 2017.12.23
  1972. Core
  1973. * [extractor/common] Move X-Forwarded-For setup code into _request_webpage
  1974. + [YoutubeDL] Add support for playlist_uploader and playlist_uploader_id in
  1975. output template (#11427, #15018)
  1976. + [extractor/common] Introduce uploader, uploader_id and uploader_url
  1977. meta fields for playlists (#11427, #15018)
  1978. * [downloader/fragment] Encode filename of fragment being removed (#15020)
  1979. + [utils] Add another date format pattern (#14999)
  1980. Extractors
  1981. + [kaltura] Add another embed pattern for entry_id
  1982. + [7plus] Add support for 7plus.com.au (#15043)
  1983. * [animeondemand] Relax login error regular expression
  1984. + [shahid] Add support for show pages (#7401)
  1985. + [youtube] Extract uploader, uploader_id and uploader_url for playlists
  1986. (#11427, #15018)
  1987. * [afreecatv] Improve format extraction (#15019)
  1988. + [cspan] Add support for audio only pages and catch page errors (#14995)
  1989. + [mailru] Add support for embed URLs (#14904)
  1990. * [crunchyroll] Future-proof XML element checks (#15013)
  1991. * [cbslocal] Fix timestamp extraction (#14999, #15000)
  1992. * [discoverygo] Correct TTML subtitle extension
  1993. * [vk] Make view count optional (#14979)
  1994. * [disney] Skip Apple FairPlay formats (#14982)
  1995. * [voot] Fix format extraction (#14758)
  1996. version 2017.12.14
  1997. Core
  1998. * [postprocessor/xattr] Clarify NO_SPACE message (#14970)
  1999. * [downloader/http] Return actual download result from real_download (#14971)
  2000. Extractors
  2001. + [itv] Extract more subtitles and duration
  2002. * [itv] Improve extraction (#14944)
  2003. + [byutv] Add support for geo restricted videos
  2004. * [byutv] Fix extraction (#14966, #14967)
  2005. + [bbccouk] Fix extraction for 320k HLS streams
  2006. + [toutv] Add support for special video URLs (#14179)
  2007. * [discovery] Fix free videos extraction (#14157, #14954)
  2008. * [tvnow] Fix extraction (#7831)
  2009. + [nickelodeon:br] Add support for nickelodeon brazil websites (#14893)
  2010. * [nick] Improve extraction (#14876)
  2011. * [tbs] Fix extraction (#13658)
  2012. version 2017.12.10
  2013. Core
  2014. + [utils] Add sami mimetype to mimetype2ext
  2015. Extractors
  2016. * [culturebox] Improve video id extraction (#14947)
  2017. * [twitter] Improve extraction (#14197)
  2018. + [udemy] Extract more HLS formats
  2019. * [udemy] Improve course id extraction (#14938)
  2020. + [stretchinternet] Add support for portal.stretchinternet.com (#14576)
  2021. * [ellentube] Fix extraction (#14407, #14570)
  2022. + [raiplay:playlist] Add support for playlists (#14563)
  2023. * [sonyliv] Bypass geo restriction
  2024. * [sonyliv] Extract higher quality formats (#14922)
  2025. * [fox] Extract subtitles
  2026. + [fox] Add support for Adobe Pass authentication (#14205, #14489)
  2027. - [dailymotion:cloud] Remove extractor (#6794)
  2028. * [xhamster] Fix thumbnail extraction (#14780)
  2029. + [xhamster] Add support for mobile URLs (#14780)
  2030. * [generic] Don't pass video id as mpd id while extracting DASH (#14902)
  2031. * [ard] Skip invalid stream URLs (#14906)
  2032. * [porncom] Fix metadata extraction (#14911)
  2033. * [pluralsight] Detect agreement request (#14913)
  2034. * [toutv] Fix login (#14614)
  2035. version 2017.12.02
  2036. Core
  2037. + [downloader/fragment] Commit part file after each fragment
  2038. + [extractor/common] Add durations for DASH fragments with bare SegmentURLs
  2039. + [extractor/common] Add support for DASH manifests with SegmentLists with
  2040. bare SegmentURLs (#14844)
  2041. + [utils] Add hvc1 codec code to parse_codecs
  2042. Extractors
  2043. * [xhamster] Fix extraction (#14884)
  2044. * [youku] Update ccode (#14872)
  2045. * [mnet] Fix format extraction (#14883)
  2046. + [xiami] Add Referer header to API request
  2047. * [mtv] Correct scc extention in extracted subtitles (#13730)
  2048. * [vvvvid] Fix extraction for kenc videos (#13406)
  2049. + [br] Add support for BR Mediathek videos (#14560, #14788)
  2050. + [daisuki] Add support for motto.daisuki.com (#14681)
  2051. * [odnoklassniki] Fix API metadata request (#14862)
  2052. * [itv] Fix HLS formats extraction
  2053. + [pbs] Add another media id regular expression
  2054. version 2017.11.26
  2055. Core
  2056. * [extractor/common] Use final URL when dumping request (#14769)
  2057. Extractors
  2058. * [fczenit] Fix extraction
  2059. - [firstpost] Remove extractor
  2060. * [freespeech] Fix extraction
  2061. * [nexx] Extract more formats
  2062. + [openload] Add support for openload.link (#14763)
  2063. * [empflix] Relax URL regular expression
  2064. * [empflix] Fix extractrion
  2065. * [tnaflix] Don't modify download URLs (#14811)
  2066. - [gamersyde] Remove extractor
  2067. * [francetv:generationwhat] Fix extraction
  2068. + [massengeschmacktv] Add support for Massengeschmack TV
  2069. * [fox9] Fix extraction
  2070. * [faz] Fix extraction and add support for Perform Group embeds (#14714)
  2071. + [performgroup] Add support for performgroup.com
  2072. + [jwplatform] Add support for iframes (#14828)
  2073. * [culturebox] Fix extraction (#14827)
  2074. * [youku] Fix extraction; update ccode (#14815)
  2075. * [livestream] Make SMIL extraction non fatal (#14792)
  2076. + [drtuber] Add support for mobile URLs (#14772)
  2077. + [spankbang] Add support for mobile URLs (#14771)
  2078. * [instagram] Fix description, timestamp and counters extraction (#14755)
  2079. version 2017.11.15
  2080. Core
  2081. * [common] Skip Apple FairPlay m3u8 manifests (#14741)
  2082. * [YoutubeDL] Fix playlist range optimization for --playlist-items (#14740)
  2083. Extractors
  2084. * [vshare] Capture and output error message
  2085. * [vshare] Fix extraction (#14473)
  2086. * [crunchyroll] Extract old RTMP formats
  2087. * [tva] Fix extraction (#14736)
  2088. * [gamespot] Lower preference of HTTP formats (#14652)
  2089. * [instagram:user] Fix extraction (#14699)
  2090. * [ccma] Fix typo (#14730)
  2091. - Remove sensitive data from logging in messages
  2092. * [instagram:user] Fix extraction (#14699)
  2093. + [gamespot] Add support for article URLs (#14652)
  2094. * [gamespot] Skip Brightcove Once HTTP formats (#14652)
  2095. * [cartoonnetwork] Update tokenizer_src (#14666)
  2096. + [wsj] Recognize another URL pattern (#14704)
  2097. * [pandatv] Update API URL and sign format URLs (#14693)
  2098. * [crunchyroll] Use old login method (#11572)
  2099. version 2017.11.06
  2100. Core
  2101. + [extractor/common] Add protocol for f4m formats
  2102. * [f4m] Prefer baseURL for relative URLs (#14660)
  2103. * [extractor/common] Respect URL query in _extract_wowza_formats (14645)
  2104. Extractors
  2105. + [hotstar:playlist] Add support for playlists (#12465)
  2106. * [hotstar] Bypass geo restriction (#14672)
  2107. - [22tracks] Remove extractor (#11024, #14628)
  2108. + [skysport] Sdd support ooyala videos protected with embed_token (#14641)
  2109. * [gamespot] Extract formats referenced with new data fields (#14652)
  2110. * [spankbang] Detect unavailable videos (#14644)
  2111. version 2017.10.29
  2112. Core
  2113. * [extractor/common] Prefix format id for audio only HLS formats
  2114. + [utils] Add support for zero years and months in parse_duration
  2115. Extractors
  2116. * [egghead] Fix extraction (#14388)
  2117. + [fxnetworks] Extract series metadata (#14603)
  2118. + [younow] Add support for younow.com (#9255, #9432, #12436)
  2119. * [dctptv] Fix extraction (#14599)
  2120. * [youtube] Restrict embed regular expression (#14600)
  2121. * [vimeo] Restrict iframe embed regular expression (#14600)
  2122. * [soundgasm] Improve extraction (#14588)
  2123. - [myvideo] Remove extractor (#8557)
  2124. + [nbc] Add support for classic-tv videos (#14575)
  2125. + [vrtnu] Add support for cookies authentication and simplify (#11873)
  2126. + [canvas] Add support for vrt.be/vrtnu (#11873)
  2127. * [twitch:clips] Fix title extraction (#14566)
  2128. + [ndtv] Add support for sub-sites (#14534)
  2129. * [dramafever] Fix login error message extraction
  2130. + [nick] Add support for more nickelodeon sites (no, dk, se, ch, fr, es, pt,
  2131. ro, hu) (#14553)
  2132. version 2017.10.20
  2133. Core
  2134. * [downloader/fragment] Report warning instead of error on inconsistent
  2135. download state
  2136. * [downloader/hls] Fix total fragments count when ad fragments exist
  2137. Extractors
  2138. * [parliamentliveuk] Fix extraction (#14524)
  2139. * [soundcloud] Update client id (#14546)
  2140. + [servus] Add support for servus.com (#14362)
  2141. + [unity] Add support for unity3d.com (#14528)
  2142. * [youtube] Replace youtube redirect URLs in description (#14517)
  2143. * [pbs] Restrict direct video URL regular expression (#14519)
  2144. * [drtv] Respect preference for direct HTTP formats (#14509)
  2145. + [eporner] Add support for embed URLs (#14507)
  2146. * [arte] Capture and output error message
  2147. * [niconico] Improve uploader metadata extraction robustness (#14135)
  2148. version 2017.10.15.1
  2149. Core
  2150. * [downloader/hls] Ignore anvato ad fragments (#14496)
  2151. * [downloader/fragment] Output ad fragment count
  2152. Extractors
  2153. * [scrippsnetworks:watch] Bypass geo restriction
  2154. + [anvato] Add ability to bypass geo restriction
  2155. * [redditr] Fix extraction for URLs with query (#14495)
  2156. version 2017.10.15
  2157. Core
  2158. + [common] Add support for jwplayer youtube embeds
  2159. Extractors
  2160. * [scrippsnetworks:watch] Fix extraction (#14389)
  2161. * [anvato] Process master m3u8 manifests
  2162. * [youtube] Fix relative URLs in description
  2163. * [spike] Bypass geo restriction
  2164. + [howstuffworks] Add support for more domains
  2165. * [infoq] Fix http format downloading
  2166. + [rtlnl] Add support for another type of embeds
  2167. + [onionstudios] Add support for bulbs-video embeds
  2168. * [udn] Fix extraction
  2169. * [shahid] Fix extraction (#14448)
  2170. * [kaltura] Ignore Widevine encrypted video (.wvm) (#14471)
  2171. * [vh1] Fix extraction (#9613)
  2172. version 2017.10.12
  2173. Core
  2174. * [YoutubeDL] Improve _default_format_spec (#14461)
  2175. Extractors
  2176. * [steam] Fix extraction (#14067)
  2177. + [funk] Add support for funk.net (#14464)
  2178. + [nexx] Add support for shortcuts and relax domain id extraction
  2179. + [voxmedia] Add support for recode.net (#14173)
  2180. + [once] Add support for vmap URLs
  2181. + [generic] Add support for channel9 embeds (#14469)
  2182. * [tva] Fix extraction (#14328)
  2183. + [tubitv] Add support for new URL format (#14460)
  2184. - [afreecatv:global] Remove extractor
  2185. - [youtube:shared] Removed extractor (#14420)
  2186. + [slideslive] Add support for slideslive.com (#2680)
  2187. + [facebook] Support thumbnails (#14416)
  2188. * [vvvvid] Fix episode number extraction (#14456)
  2189. * [hrti:playlist] Relax URL regular expression
  2190. * [wdr] Relax media link regular expression (#14447)
  2191. * [hrti] Relax URL regular expression (#14443)
  2192. * [fox] Delegate extraction to uplynk:preplay (#14147)
  2193. + [youtube] Add support for hooktube.com (#14437)
  2194. version 2017.10.07
  2195. Core
  2196. * [YoutubeDL] Ignore duplicates in --playlist-items
  2197. * [YoutubeDL] Fix out of range --playlist-items for iterable playlists and
  2198. reduce code duplication (#14425)
  2199. + [utils] Use cache in OnDemandPagedList by default
  2200. * [postprocessor/ffmpeg] Convert to opus using libopus (#14381)
  2201. Extractors
  2202. * [reddit] Sort formats (#14430)
  2203. * [lnkgo] Relax URL regular expression (#14423)
  2204. * [pornflip] Extend URL regular expression (#14405, #14406)
  2205. + [xtube] Add support for embed URLs (#14417)
  2206. + [xvideos] Add support for embed URLs and improve extraction (#14409)
  2207. * [beeg] Fix extraction (#14403)
  2208. * [tvn24] Relax URL regular expression (#14395)
  2209. * [nbc] Fix extraction (#13651, #13715, #14137, #14198, #14312, #14314, #14378,
  2210. #14392, #14414, #14419, #14431)
  2211. + [ketnet] Add support for videos without direct sources (#14377)
  2212. * [canvas] Generalize mediazone.vrt.be extractor and rework canvas and een
  2213. + [afreecatv] Add support for adult videos (#14376)
  2214. version 2017.10.01
  2215. Core
  2216. * [YoutubeDL] Document youtube_include_dash_manifest
  2217. Extractors
  2218. + [tvp] Add support for new URL schema (#14368)
  2219. + [generic] Add support for single format Video.js embeds (#14371)
  2220. * [yahoo] Bypass geo restriction for brightcove (#14210)
  2221. * [yahoo] Use extracted brightcove account id (#14210)
  2222. * [rtve:alacarta] Fix extraction (#14290)
  2223. + [yahoo] Add support for custom brigthcove embeds (#14210)
  2224. + [generic] Add support for Video.js embeds
  2225. + [gfycat] Add support for /gifs/detail URLs (#14322)
  2226. * [generic] Fix infinite recursion for twitter:player URLs (#14339)
  2227. * [xhamsterembed] Fix extraction (#14308)
  2228. version 2017.09.24
  2229. Core
  2230. + [options] Accept lrc as a subtitle conversion target format (#14292)
  2231. * [utils] Fix handling raw TTML subtitles (#14191)
  2232. Extractors
  2233. * [24video] Fix timestamp extraction and make non fatal (#14295)
  2234. + [24video] Add support for 24video.adult (#14295)
  2235. + [kakao] Add support for tv.kakao.com (#12298, #14007)
  2236. + [twitter] Add support for URLs without user id (#14270)
  2237. + [americastestkitchen] Add support for americastestkitchen.com (#10764,
  2238. #13996)
  2239. * [generic] Fix support for multiple HTML5 videos on one page (#14080)
  2240. * [mixcloud] Fix extraction (#14088, #14132)
  2241. + [lynda] Add support for educourse.ga (#14286)
  2242. * [beeg] Fix extraction (#14275)
  2243. * [nbcsports:vplayer] Correct theplatform URL (#13873)
  2244. * [twitter] Fix duration extraction (#14141)
  2245. * [tvplay] Bypass geo restriction
  2246. + [heise] Add support for YouTube embeds (#14109)
  2247. + [popcorntv] Add support for popcorntv.it (#5914, #14211)
  2248. * [viki] Update app data (#14181)
  2249. * [morningstar] Relax URL regular expression (#14222)
  2250. * [openload] Fix extraction (#14225, #14257)
  2251. * [noovo] Fix extraction (#14214)
  2252. * [dailymotion:playlist] Relax URL regular expression (#14219)
  2253. + [twitch] Add support for go.twitch.tv URLs (#14215)
  2254. * [vgtv] Relax URL regular expression (#14223)
  2255. version 2017.09.15
  2256. Core
  2257. * [downloader/fragment] Restart inconsistent incomplete fragment downloads
  2258. (#13731)
  2259. * [YoutubeDL] Download raw subtitles files (#12909, #14191)
  2260. Extractors
  2261. * [condenast] Fix extraction (#14196, #14207)
  2262. + [orf] Add support for f4m stories
  2263. * [tv4] Relax URL regular expression (#14206)
  2264. * [animeondemand] Bypass geo restriction
  2265. + [animeondemand] Add support for flash videos (#9944)
  2266. version 2017.09.11
  2267. Extractors
  2268. * [rutube:playlist] Fix suitable (#14166)
  2269. version 2017.09.10
  2270. Core
  2271. + [utils] Introduce bool_or_none
  2272. * [YoutubeDL] Ensure dir existence for each requested format (#14116)
  2273. Extractors
  2274. * [fox] Fix extraction (#14147)
  2275. * [rutube] Use bool_or_none
  2276. * [rutube] Rework and generalize playlist extractors (#13565)
  2277. + [rutube:playlist] Add support for playlists (#13534, #13565)
  2278. + [radiocanada] Add fallback for title extraction (#14145)
  2279. * [vk] Use dedicated YouTube embeds extraction routine
  2280. * [vice] Use dedicated YouTube embeds extraction routine
  2281. * [cracked] Use dedicated YouTube embeds extraction routine
  2282. * [chilloutzone] Use dedicated YouTube embeds extraction routine
  2283. * [abcnews] Use dedicated YouTube embeds extraction routine
  2284. * [youtube] Separate methods for embeds extraction
  2285. * [redtube] Fix formats extraction (#14122)
  2286. * [arte] Relax unavailability check (#14112)
  2287. + [manyvids] Add support for preview videos from manyvids.com (#14053, #14059)
  2288. * [vidme:user] Relax URL regular expression (#14054)
  2289. * [bpb] Fix extraction (#14043, #14086)
  2290. * [soundcloud] Fix download URL with private tracks (#14093)
  2291. * [aliexpress:live] Add support for live.aliexpress.com (#13698, #13707)
  2292. * [viidea] Capture and output lecture error message (#14099)
  2293. * [radiocanada] Skip unsupported platforms (#14100)
  2294. version 2017.09.02
  2295. Extractors
  2296. * [youtube] Force old layout for each webpage (#14068, #14072, #14074, #14076,
  2297. #14077, #14079, #14082, #14083, #14094, #14095, #14096)
  2298. * [youtube] Fix upload date extraction (#14065)
  2299. + [charlierose] Add support for episodes (#14062)
  2300. + [bbccouk] Add support for w-prefixed ids (#14056)
  2301. * [googledrive] Extend URL regular expression (#9785)
  2302. + [googledrive] Add support for source format (#14046)
  2303. * [pornhd] Fix extraction (#14005)
  2304. version 2017.08.27.1
  2305. Extractors
  2306. * [youtube] Fix extraction with --youtube-skip-dash-manifest enabled (#14037)
  2307. version 2017.08.27
  2308. Core
  2309. + [extractor/common] Extract height and format id for HTML5 videos (#14034)
  2310. * [downloader/http] Rework HTTP downloader (#506, #809, #2849, #4240, #6023,
  2311. #8625, #9483)
  2312. * Simplify code and split into separate routines to facilitate maintaining
  2313. * Make retry mechanism work on errors during actual download not only
  2314. during connection establishment phase
  2315. * Retry on ECONNRESET and ETIMEDOUT during reading data from network
  2316. * Retry on content too short
  2317. * Show error description on retry
  2318. Extractors
  2319. * [generic] Lower preference for extraction from LD-JSON
  2320. * [rai] Fix audio formats extraction (#14024)
  2321. * [youtube] Fix controversy videos extraction (#14027, #14029)
  2322. * [mixcloud] Fix extraction (#14015, #14020)
  2323. version 2017.08.23
  2324. Core
  2325. + [extractor/common] Introduce _parse_xml
  2326. * [extractor/common] Make HLS and DASH extraction in_parse_html5_media_entries
  2327. non fatal (#13970)
  2328. * [utils] Fix unescapeHTML for misformed string like "&a"" (#13935)
  2329. Extractors
  2330. * [cbc:watch] Bypass geo restriction (#13993)
  2331. * [toutv] Relax DRM check (#13994)
  2332. + [googledrive] Add support for subtitles (#13619, #13638)
  2333. * [pornhub] Relax uploader regular expression (#13906, #13975)
  2334. * [bandcamp:album] Extract track titles (#13962)
  2335. + [bbccouk] Add support for events URLs (#13893)
  2336. + [liveleak] Support multi-video pages (#6542)
  2337. + [liveleak] Support another liveleak embedding pattern (#13336)
  2338. * [cda] Fix extraction (#13935)
  2339. + [laola1tv] Add support for tv.ittf.com (#13965)
  2340. * [mixcloud] Fix extraction (#13958, #13974, #13980, #14003)
  2341. version 2017.08.18
  2342. Core
  2343. * [YoutubeDL] Sanitize byte string format URLs (#13951)
  2344. + [extractor/common] Add support for float durations in _parse_mpd_formats
  2345. (#13919)
  2346. Extractors
  2347. * [arte] Detect unavailable videos (#13945)
  2348. * [generic] Convert redirect URLs to unicode strings (#13951)
  2349. * [udemy] Fix paid course detection (#13943)
  2350. * [pluralsight] Use RPC API for course extraction (#13937)
  2351. + [clippit] Add support for clippituser.tv
  2352. + [qqmusic] Support new URL schemes (#13805)
  2353. * [periscope] Renew HLS extraction (#13917)
  2354. * [mixcloud] Extract decrypt key
  2355. version 2017.08.13
  2356. Core
  2357. * [YoutubeDL] Make sure format id is not empty
  2358. * [extractor/common] Make _family_friendly_search optional
  2359. * [extractor/common] Respect source's type attribute for HTML5 media (#13892)
  2360. Extractors
  2361. * [pornhub:playlistbase] Skip videos from drop-down menu (#12819, #13902)
  2362. + [fourtube] Add support pornerbros.com (#6022)
  2363. + [fourtube] Add support porntube.com (#7859, #13901)
  2364. + [fourtube] Add support fux.com
  2365. * [limelight] Improve embeds detection (#13895)
  2366. + [reddit] Add support for v.redd.it and reddit.com (#13847)
  2367. * [aparat] Extract all formats (#13887)
  2368. * [mixcloud] Fix play info decryption (#13885)
  2369. + [generic] Add support for vzaar embeds (#13876)
  2370. version 2017.08.09
  2371. Core
  2372. * [utils] Skip missing params in cli_bool_option (#13865)
  2373. Extractors
  2374. * [xxxymovies] Fix title extraction (#13868)
  2375. + [nick] Add support for nick.com.pl (#13860)
  2376. * [mixcloud] Fix play info decryption (#13867)
  2377. * [20min] Fix embeds extraction (#13852)
  2378. * [dplayit] Fix extraction (#13851)
  2379. + [niconico] Support videos with multiple formats (#13522)
  2380. + [niconico] Support HTML5-only videos (#13806)
  2381. version 2017.08.06
  2382. Core
  2383. * Use relative paths for DASH fragments (#12990)
  2384. Extractors
  2385. * [pluralsight] Fix format selection
  2386. - [mpora] Remove extractor (#13826)
  2387. + [voot] Add support for voot.com (#10255, #11644, #11814, #12350, #13218)
  2388. * [vlive:channel] Limit number of videos per page to 100 (#13830)
  2389. * [podomatic] Extend URL regular expression (#13827)
  2390. * [cinchcast] Extend URL regular expression
  2391. * [yandexdisk] Relax URL regular expression (#13824)
  2392. * [vidme] Extract DASH and HLS formats
  2393. - [teamfour] Remove extractor (#13782)
  2394. * [pornhd] Fix extraction (#13783)
  2395. * [udemy] Fix subtitles extraction (#13812)
  2396. * [mlb] Extend URL regular expression (#13740, #13773)
  2397. + [pbs] Add support for new URL schema (#13801)
  2398. * [nrktv] Update API host (#13796)
  2399. version 2017.07.30.1
  2400. Core
  2401. * [downloader/hls] Use redirect URL as manifest base (#13755)
  2402. * [options] Correctly hide login info from debug outputs (#13696)
  2403. Extractors
  2404. + [watchbox] Add support for watchbox.de (#13739)
  2405. - [clipfish] Remove extractor
  2406. + [youjizz] Fix extraction (#13744)
  2407. + [generic] Add support for another ooyala embed pattern (#13727)
  2408. + [ard] Add support for lives (#13771)
  2409. * [soundcloud] Update client id
  2410. + [soundcloud:trackstation] Add support for track stations (#13733)
  2411. * [svtplay] Use geo verification proxy for API request
  2412. * [svtplay] Update API URL (#13767)
  2413. + [yandexdisk] Add support for yadi.sk (#13755)
  2414. + [megaphone] Add support for megaphone.fm
  2415. * [amcnetworks] Make rating optional (#12453)
  2416. * [cloudy] Fix extraction (#13737)
  2417. + [nickru] Add support for nickelodeon.ru
  2418. * [mtv] Improve thumbnal extraction
  2419. * [nick] Automate geo-restriction bypass (#13711)
  2420. * [niconico] Improve error reporting (#13696)
  2421. version 2017.07.23
  2422. Core
  2423. * [YoutubeDL] Improve default format specification (#13704)
  2424. * [YoutubeDL] Do not override id, extractor and extractor_key for
  2425. url_transparent entities
  2426. * [extractor/common] Fix playlist_from_matches
  2427. Extractors
  2428. * [itv] Fix production id extraction (#13671, #13703)
  2429. * [vidio] Make duration non fatal and fix typo
  2430. * [mtv] Skip missing video parts (#13690)
  2431. * [sportbox:embed] Fix extraction
  2432. + [npo] Add support for npo3.nl URLs (#13695)
  2433. * [dramafever] Remove video id from title (#13699)
  2434. + [egghead:lesson] Add support for lessons (#6635)
  2435. * [funnyordie] Extract more metadata (#13677)
  2436. * [youku:show] Fix playlist extraction (#13248)
  2437. + [dispeak] Recognize sevt subdomain (#13276)
  2438. * [adn] Improve error reporting (#13663)
  2439. * [crunchyroll] Relax series and season regular expression (#13659)
  2440. + [spiegel:article] Add support for nexx iframe embeds (#13029)
  2441. + [nexx:embed] Add support for iframe embeds
  2442. * [nexx] Improve JS embed extraction
  2443. + [pearvideo] Add support for pearvideo.com (#13031)
  2444. version 2017.07.15
  2445. Core
  2446. * [YoutubeDL] Don't expand environment variables in meta fields (#13637)
  2447. Extractors
  2448. * [spiegeltv] Delegate extraction to nexx extractor (#13159)
  2449. + [nexx] Add support for nexx.cloud (#10807, #13465)
  2450. * [generic] Fix rutube embeds extraction (#13641)
  2451. * [karrierevideos] Fix title extraction (#13641)
  2452. * [youtube] Don't capture YouTube Red ad for creator meta field (#13621)
  2453. * [slideshare] Fix extraction (#13617)
  2454. + [5tv] Add another video URL pattern (#13354, #13606)
  2455. * [drtv] Make HLS and HDS extraction non fatal
  2456. * [ted] Fix subtitles extraction (#13628, #13629)
  2457. * [vine] Make sure the title won't be empty
  2458. + [twitter] Support HLS streams in vmap URLs
  2459. + [periscope] Support pscp.tv URLs in embedded frames
  2460. * [twitter] Extract mp4 urls via mobile API (#12726)
  2461. * [niconico] Fix authentication error handling (#12486)
  2462. * [giantbomb] Extract m3u8 formats (#13626)
  2463. + [vlive:playlist] Add support for playlists (#13613)
  2464. version 2017.07.09
  2465. Core
  2466. + [extractor/common] Add support for AMP tags in _parse_html5_media_entries
  2467. + [utils] Support attributes with no values in get_elements_by_attribute
  2468. Extractors
  2469. + [dailymail] Add support for embeds
  2470. + [joj] Add support for joj.sk (#13268)
  2471. * [abc.net.au:iview] Extract more formats (#13492, #13489)
  2472. * [egghead:course] Fix extraction (#6635, #13370)
  2473. + [cjsw] Add support for cjsw.com (#13525)
  2474. + [eagleplatform] Add support for referrer protected videos (#13557)
  2475. + [eagleplatform] Add support for another embed pattern (#13557)
  2476. * [veoh] Extend URL regular expression (#13601)
  2477. * [npo:live] Fix live stream id extraction (#13568, #13605)
  2478. * [googledrive] Fix height extraction (#13603)
  2479. + [dailymotion] Add support for new layout (#13580)
  2480. - [yam] Remove extractor
  2481. * [xhamster] Extract all formats and fix duration extraction (#13593)
  2482. + [xhamster] Add support for new URL schema (#13593)
  2483. * [espn] Extend URL regular expression (#13244, #13549)
  2484. * [kaltura] Fix typo in subtitles extraction (#13569)
  2485. * [vier] Adapt extraction to redesign (#13575)
  2486. version 2017.07.02
  2487. Core
  2488. * [extractor/common] Improve _json_ld
  2489. Extractors
  2490. + [thisoldhouse] Add more fallbacks for video id
  2491. * [thisoldhouse] Fix video id extraction (#13540, #13541)
  2492. * [xfileshare] Extend format regular expression (#13536)
  2493. * [ted] Fix extraction (#13535)
  2494. + [tastytrade] Add support for tastytrade.com (#13521)
  2495. * [dplayit] Relax video id regular expression (#13524)
  2496. + [generic] Extract more generic metadata (#13527)
  2497. + [bbccouk] Capture and output error message (#13501, #13518)
  2498. * [cbsnews] Relax video info regular expression (#13284, #13503)
  2499. + [facebook] Add support for plugin video embeds and multiple embeds (#13493)
  2500. * [soundcloud] Switch to https for API requests (#13502)
  2501. * [pandatv] Switch to https for API and download URLs
  2502. + [pandatv] Add support for https URLs (#13491)
  2503. + [niconico] Support sp subdomain (#13494)
  2504. version 2017.06.25
  2505. Core
  2506. + [adobepass] Add support for DIRECTV NOW (mso ATTOTT) (#13472)
  2507. * [YoutubeDL] Skip malformed formats for better extraction robustness
  2508. Extractors
  2509. + [wsj] Add support for barrons.com (#13470)
  2510. + [ign] Add another video id pattern (#13328)
  2511. + [raiplay:live] Add support for live streams (#13414)
  2512. + [redbulltv] Add support for live videos and segments (#13486)
  2513. + [onetpl] Add support for videos embedded via pulsembed (#13482)
  2514. * [ooyala] Make more robust
  2515. * [ooyala] Skip empty format URLs (#13471, #13476)
  2516. * [hgtv.com:show] Fix typo
  2517. version 2017.06.23
  2518. Core
  2519. * [adobepass] Fix extraction on older python 2.6
  2520. Extractors
  2521. * [youtube] Adapt to new automatic captions rendition (#13467)
  2522. * [hgtv.com:show] Relax video config regular expression (#13279, #13461)
  2523. * [drtuber] Fix formats extraction (#12058)
  2524. * [youporn] Fix upload date extraction
  2525. * [youporn] Improve formats extraction
  2526. * [youporn] Fix title extraction (#13456)
  2527. * [googledrive] Fix formats sorting (#13443)
  2528. * [watchindianporn] Fix extraction (#13411, #13415)
  2529. + [vimeo] Add fallback mp4 extension for original format
  2530. + [ruv] Add support for ruv.is (#13396)
  2531. * [viu] Fix extraction on older python 2.6
  2532. * [pandora.tv] Fix upload_date extraction (#12846)
  2533. + [asiancrush] Add support for asiancrush.com (#13420)
  2534. version 2017.06.18
  2535. Core
  2536. * [downloader/common] Use utils.shell_quote for debug command line
  2537. * [utils] Use compat_shlex_quote in shell_quote
  2538. * [postprocessor/execafterdownload] Encode command line (#13407)
  2539. * [compat] Fix compat_shlex_quote on Windows (#5889, #10254)
  2540. * [postprocessor/metadatafromtitle] Fix missing optional meta fields processing
  2541. in --metadata-from-title (#13408)
  2542. * [extractor/common] Fix json dumping with --geo-bypass
  2543. + [extractor/common] Improve jwplayer subtitles extraction
  2544. + [extractor/common] Improve jwplayer formats extraction (#13379)
  2545. Extractors
  2546. * [polskieradio] Fix extraction (#13392)
  2547. + [xfileshare] Add support for fastvideo.me (#13385)
  2548. * [bilibili] Fix extraction of videos with double quotes in titles (#13387)
  2549. * [4tube] Fix extraction (#13381, #13382)
  2550. + [disney] Add support for disneychannel.de (#13383)
  2551. * [npo] Improve URL regular expression (#13376)
  2552. + [corus] Add support for showcase.ca
  2553. + [corus] Add support for history.ca (#13359)
  2554. version 2017.06.12
  2555. Core
  2556. * [utils] Handle compat_HTMLParseError in extract_attributes (#13349)
  2557. + [compat] Introduce compat_HTMLParseError
  2558. * [utils] Improve unified_timestamp
  2559. * [extractor/generic] Ensure format id is unicode string
  2560. * [extractor/common] Return unicode string from _match_id
  2561. + [YoutubeDL] Sanitize more fields (#13313)
  2562. Extractors
  2563. + [xfileshare] Add support for rapidvideo.tv (#13348)
  2564. * [xfileshare] Modernize and pass Referer
  2565. + [rutv] Add support for testplayer.vgtrk.com (#13347)
  2566. + [newgrounds] Extract more metadata (#13232)
  2567. + [newgrounds:playlist] Add support for playlists (#10611)
  2568. * [newgrounds] Improve formats and uploader extraction (#13346)
  2569. * [msn] Fix formats extraction
  2570. * [turbo] Ensure format id is string
  2571. * [sexu] Ensure height is int
  2572. * [jove] Ensure comment count is int
  2573. * [golem] Ensure format id is string
  2574. * [gfycat] Ensure filesize is int
  2575. * [foxgay] Ensure height is int
  2576. * [flickr] Ensure format id is string
  2577. * [sohu] Fix numeric fields
  2578. * [safari] Improve authentication detection (#13319)
  2579. * [liveleak] Ensure height is int (#13313)
  2580. * [streamango] Make title optional (#13292)
  2581. * [rtlnl] Improve URL regular expression (#13295)
  2582. * [tvplayer] Fix extraction (#13291)
  2583. version 2017.06.05
  2584. Core
  2585. * [YoutubeDL] Don't emit ANSI escape codes on Windows (#13270)
  2586. Extractors
  2587. + [bandcamp:weekly] Add support for bandcamp weekly (#12758)
  2588. * [pornhub:playlist] Fix extraction (#13281)
  2589. - [godtv] Remove extractor (#13175)
  2590. * [safari] Fix typo (#13252)
  2591. * [youtube] Improve chapters extraction (#13247)
  2592. * [1tv] Lower preference for HTTP formats (#13246)
  2593. * [francetv] Relax URL regular expression
  2594. * [drbonanza] Fix extraction (#13231)
  2595. * [packtpub] Fix authentication (#13240)
  2596. version 2017.05.29
  2597. Extractors
  2598. * [youtube] Fix DASH MPD extraction for videos with non-encrypted format URLs
  2599. (#13211)
  2600. * [xhamster] Fix uploader and like/dislike count extraction (#13216))
  2601. + [xhamster] Extract categories (#11728)
  2602. + [abcnews] Add support for embed URLs (#12851)
  2603. * [gaskrank] Fix extraction (#12493)
  2604. * [medialaan] Fix videos with missing videoUrl (#12774)
  2605. * [dvtv] Fix playlist support
  2606. + [dvtv] Add support for DASH and HLS formats (#3063)
  2607. + [beam:vod] Add support for beam.pro/mixer.com VODs (#13032))
  2608. * [cbsinteractive] Relax URL regular expression (#13213)
  2609. * [adn] Fix formats extraction
  2610. + [youku] Extract more metadata (#10433)
  2611. * [cbsnews] Fix extraction (#13205)
  2612. version 2017.05.26
  2613. Core
  2614. + [utils] strip_jsonp() can recognize more patterns
  2615. * [postprocessor/ffmpeg] Fix metadata filename handling on Python 2 (#13182)
  2616. Extractors
  2617. + [youtube] DASH MPDs with cipher signatures are recognized now (#11381)
  2618. + [bbc] Add support for authentication
  2619. * [tudou] Merge into youku extractor (#12214)
  2620. * [youku:show] Fix extraction
  2621. * [youku] Fix extraction (#13191)
  2622. * [udemy] Fix extraction for outputs' format entries without URL (#13192)
  2623. * [vimeo] Fix formats' sorting (#13189)
  2624. * [cbsnews] Fix extraction for 60 Minutes videos (#12861)
  2625. version 2017.05.23
  2626. Core
  2627. + [downloader/external] Pass -loglevel to ffmpeg downloader (#13183)
  2628. + [adobepass] Add support for Bright House Networks (#13149)
  2629. Extractors
  2630. + [streamcz] Add support for subtitles (#13174)
  2631. * [youtube] Fix DASH manifest signature decryption (#8944, #13156)
  2632. * [toggle] Relax URL regular expression (#13172)
  2633. * [toypics] Fix extraction (#13077)
  2634. * [njpwworld] Fix extraction (#13162, #13169)
  2635. + [hitbox] Add support for smashcast.tv (#13154)
  2636. * [mitele] Update app key regular expression (#13158)
  2637. version 2017.05.18.1
  2638. Core
  2639. * [jsinterp] Fix typo and cleanup regular expressions (#13134)
  2640. version 2017.05.18
  2641. Core
  2642. + [jsinterp] Add support for quoted names and indexers (#13123, #13124, #13125,
  2643. #13126, #13128, #13129, #13130, #13131, #13132)
  2644. + [extractor/common] Add support for schemeless URLs in _extract_wowza_formats
  2645. (#13088, #13092)
  2646. + [utils] Recognize more audio codecs (#13081)
  2647. Extractors
  2648. + [vier] Extract more metadata (#12539)
  2649. * [vier] Improve extraction (#12801)
  2650. + Add support for authentication
  2651. * Bypass authentication when no credentials provided
  2652. * Improve extraction robustness
  2653. * [dailymail] Fix sources extraction (#13057)
  2654. * [dailymotion] Extend URL regular expression (#13079)
  2655. version 2017.05.14
  2656. Core
  2657. + [extractor/common] Respect Width and Height attributes in ISM manifests
  2658. + [postprocessor/metadatafromtitle] Add support regular expression syntax for
  2659. --metadata-from-title (#13065)
  2660. Extractors
  2661. + [mediaset] Add support for video.mediaset.it (#12708, #12964)
  2662. * [orf:radio] Fix extraction (#11643, #12926)
  2663. * [aljazeera] Extend URL regular expression (#13053)
  2664. * [imdb] Relax URL regular expression (#13056)
  2665. + [francetv] Add support for mobile.france.tv (#13068)
  2666. + [upskill] Add support for upskillcourses.com (#13043)
  2667. * [thescene] Fix extraction (#13061)
  2668. * [condenast] Improve embed support
  2669. * [liveleak] Fix extraction (#12053)
  2670. + [douyu] Support Douyu shows (#12228)
  2671. * [myspace] Improve URL regular expression (#13040)
  2672. * [adultswim] Use desktop platform in assets URL (#13041)
  2673. version 2017.05.09
  2674. Core
  2675. * [YoutubeDL] Force --restrict-filenames when no locale is set on all python
  2676. versions (#13027)
  2677. Extractors
  2678. * [francetv] Adapt to site redesign (#13034)
  2679. + [packtpub] Add support for authentication (#12622)
  2680. * [drtv] Lower preference for SignLanguage formats (#13013, #13016)
  2681. + [cspan] Add support for brightcove live embeds (#13028)
  2682. * [vrv] Extract DASH formats and subtitles
  2683. * [funimation] Fix authentication (#13021)
  2684. * [adultswim] Fix extraction (#8640, #10950, #11042, #12121)
  2685. + Add support for Adobe Pass authentication
  2686. + Add support for live streams
  2687. + Add support for show pages
  2688. * [turner] Extract thumbnail, is_live and strip description
  2689. + [nonktube] Add support for nonktube.com (#8647, #13024)
  2690. + [nuevo] Pass headers to _extract_nuevo
  2691. * [nbc] Improve extraction (#12364)
  2692. version 2017.05.07
  2693. Common
  2694. * [extractor/common] Fix typo in _extract_akamai_formats
  2695. + [postprocessor/ffmpeg] Embed chapters into media file with --add-metadata
  2696. + [extractor/common] Introduce chapters meta field
  2697. Extractors
  2698. * [youtube] Fix authentication (#12820, #12927, #12973, #12992, #12993, #12995,
  2699. #13003)
  2700. * [bilibili] Fix video downloading (#13001)
  2701. * [rmcdecouverte] Fix extraction (#12937)
  2702. * [theplatform] Extract chapters
  2703. * [bandcamp] Fix thumbnail extraction (#12980)
  2704. * [pornhub] Extend URL regular expression (#12996)
  2705. + [youtube] Extract chapters
  2706. + [nrk] Extract chapters
  2707. + [vice] Add support for ooyala embeds in article pages
  2708. + [vice] Support vice articles (#12968)
  2709. * [vice] Fix extraction for non en_us videos (#12967)
  2710. * [gdcvault] Fix extraction for some videos (#12733)
  2711. * [pbs] Improve multipart video support (#12981)
  2712. * [laola1tv] Fix extraction (#12880)
  2713. + [cda] Support birthday verification (#12789)
  2714. * [leeco] Fix extraction (#12974)
  2715. + [pbs] Extract chapters
  2716. * [amp] Imporove thumbnail and subtitles extraction
  2717. * [foxsports] Fix extraction (#12945)
  2718. - [coub] Remove comment count extraction (#12941)
  2719. version 2017.05.01
  2720. Core
  2721. + [extractor/common] Extract view count from JSON-LD
  2722. * [utils] Improve unified_timestamp
  2723. + [utils] Add video/mp2t to mimetype2ext
  2724. * [downloader/external] Properly handle live stream downloading cancellation
  2725. (#8932)
  2726. + [utils] Add support for unicode whitespace in clean_html on python 2 (#12906)
  2727. Extractors
  2728. * [infoq] Make audio format extraction non fatal (#12938)
  2729. * [brightcove] Allow whitespace around attribute names in embedded code
  2730. + [zaq1] Add support for zaq1.pl (#12693)
  2731. + [xvideos] Extract duration (#12828)
  2732. * [vevo] Fix extraction (#12879)
  2733. + [noovo] Add support for noovo.ca (#12792)
  2734. + [washingtonpost] Add support for embeds (#12699)
  2735. * [yandexmusic:playlist] Fix extraction for python 3 (#12888)
  2736. * [anvato] Improve extraction (#12913)
  2737. * Promote to regular shortcut based extractor
  2738. * Add mcp to access key mapping table
  2739. * Add support for embeds extraction
  2740. * Add support for anvato embeds in generic extractor
  2741. * [xtube] Fix extraction for older FLV videos (#12734)
  2742. * [tvplayer] Fix extraction (#12908)
  2743. version 2017.04.28
  2744. Core
  2745. + [adobepass] Use geo verification headers for all requests
  2746. - [downloader/fragment] Remove assert for resume_len when no fragments
  2747. downloaded
  2748. + [extractor/common] Add manifest_url for explicit group rendition formats
  2749. * [extractor/common] Fix manifest_url for m3u8 formats
  2750. - [extractor/common] Don't list master m3u8 playlists in format list (#12832)
  2751. Extractor
  2752. * [aenetworks] Fix extraction for shows with single season
  2753. + [go] Add support for Disney, DisneyJunior and DisneyXD show pages
  2754. * [youtube] Recognize new locale-based player URLs (#12885)
  2755. + [streamable] Add support for new embedded URL schema (#12844)
  2756. * [arte:+7] Relax URL regular expression (#12837)
  2757. version 2017.04.26
  2758. Core
  2759. * Introduce --keep-fragments for keeping fragments of fragmented download
  2760. on disk after download is finished
  2761. * [YoutubeDL] Fix output template for missing timestamp (#12796)
  2762. * [socks] Handle cases where credentials are required but missing
  2763. * [extractor/common] Improve HLS extraction (#12211)
  2764. * Extract m3u8 parsing to separate method
  2765. * Improve rendition groups extraction
  2766. * Build stream name according stream GROUP-ID
  2767. * Ignore reference to AUDIO group without URI when stream has no CODECS
  2768. * Use float for scaled tbr in _parse_m3u8_formats
  2769. * [utils] Add support for TTML styles in dfxp2srt
  2770. * [downloader/hls] No need to download keys for fragments that have been
  2771. already downloaded
  2772. * [downloader/fragment] Improve fragment downloading
  2773. * Resume immediately
  2774. * Don't concatenate fragments and decrypt them on every resume
  2775. * Optimize disk storage usage, don't store intermediate fragments on disk
  2776. * Store bookkeeping download state file
  2777. + [extractor/common] Add support for multiple getters in try_get
  2778. + [extractor/common] Add support for video of WebPage context in _json_ld
  2779. (#12778)
  2780. + [extractor/common] Relax JWPlayer regular expression and remove
  2781. duplicate URLs (#12768)
  2782. Extractors
  2783. * [iqiyi] Fix extraction of Yule videos
  2784. * [vidio] Improve extraction and sort formats
  2785. + [brightcove] Match only video elements with data-video-id attribute
  2786. * [iqiyi] Fix playlist detection (#12504)
  2787. - [azubu] Remove extractor (#12813)
  2788. * [porn91] Fix extraction (#12814)
  2789. * [vidzi] Fix extraction (#12793)
  2790. + [amp] Extract error message (#12795)
  2791. + [xfileshare] Add support for gorillavid.com and daclips.com (#12776)
  2792. * [instagram] Fix extraction (#12777)
  2793. + [generic] Support Brightcove videos in <iframe> (#12482)
  2794. + [brightcove] Support URLs with bcpid instead of playerID (#12482)
  2795. * [brightcove] Fix _extract_url (#12782)
  2796. + [odnoklassniki] Extract HLS formats
  2797. version 2017.04.17
  2798. Extractors
  2799. * [limelight] Improve extraction LimelightEmbeddedPlayerFlash media embeds and
  2800. add support for channel and channelList embeds
  2801. * [generic] Extract multiple Limelight embeds (#12761)
  2802. + [itv] Extract series metadata
  2803. * [itv] Fix RTMP formats downloading (#12759)
  2804. * [itv] Use native HLS downloader by default
  2805. + [go90] Extract subtitles (#12752)
  2806. + [go90] Extract series metadata (#12752)
  2807. version 2017.04.16
  2808. Core
  2809. * [YoutubeDL] Apply expand_path after output template substitution
  2810. + [YoutubeDL] Propagate overridden meta fields to extraction results of type
  2811. url (#11163)
  2812. Extractors
  2813. + [generic] Extract RSS entries as url_transparent (#11163)
  2814. + [streamango] Add support for streamango.com (#12643)
  2815. + [wsj:article] Add support for articles (#12558)
  2816. * [brightcove] Relax video tag embeds extraction and validate ambiguous embeds'
  2817. URLs (#9163, #12005, #12178, #12480)
  2818. + [udemy] Add support for react rendition (#12744)
  2819. version 2017.04.15
  2820. Extractors
  2821. * [youku] Fix fileid extraction (#12741, #12743)
  2822. version 2017.04.14
  2823. Core
  2824. + [downloader/hls] Add basic support for EXT-X-BYTERANGE tag (#10955)
  2825. + [adobepass] Improve Comcast and Verizon login code (#10803)
  2826. + [adobepass] Add support for Verizon (#10803)
  2827. Extractors
  2828. + [aenetworks] Add support for specials (#12723)
  2829. + [hbo] Extract HLS formats
  2830. + [go90] Add support for go90.com (#10127)
  2831. + [tv2hu] Add support for tv2.hu (#10509)
  2832. + [generic] Exclude URLs with xml ext from valid video URLs (#10768, #11654)
  2833. * [youtube] Improve HLS formats extraction
  2834. * [afreecatv] Fix extraction for videos with different key layout (#12718)
  2835. - [youtube] Remove explicit preference for audio-only and video-only formats in
  2836. order not to break sorting when new formats appear
  2837. * [canalplus] Bypass geo restriction
  2838. version 2017.04.11
  2839. Extractors
  2840. * [afreecatv] Fix extraction (#12706)
  2841. + [generic] Add support for <object> YouTube embeds (#12637)
  2842. * [bbccouk] Treat bitrate as audio+video bitrate in media selector
  2843. + [bbccouk] Skip unrecognized formats in media selector (#12701)
  2844. + [bbccouk] Add support for https protocol in media selector (#12701)
  2845. * [curiositystream] Fix extraction (#12638)
  2846. * [adn] Update subtitle decryption key
  2847. * [chaturbate] Fix extraction (#12665, #12688, #12690)
  2848. version 2017.04.09
  2849. Extractors
  2850. + [medici] Add support for medici.tv (#3406)
  2851. + [rbmaradio] Add support for redbullradio.com URLs (#12687)
  2852. + [npo:live] Add support for default URL (#12555)
  2853. * [mixcloud:playlist] Fix title, description and view count extraction (#12582)
  2854. + [thesun] Add suport for thesun.co.uk (#11298, #12674)
  2855. + [ceskateleveize:porady] Add support for porady (#7411, #12645)
  2856. * [ceskateleveize] Improve extraction and remove URL replacement hacks
  2857. + [kaltura] Add support for iframe embeds (#12679)
  2858. * [airmozilla] Fix extraction (#12670)
  2859. * [wshh] Extract html5 entries and delegate to generic extractor (12676)
  2860. + [raiplay] Extract subtitles
  2861. + [xfileshare] Add support for vidlo.us (#12660)
  2862. + [xfileshare] Add support for vidbom.com (#12661)
  2863. + [aenetworks] Add more video URL regular expressions (#12657)
  2864. + [odnoklassniki] Fix format sorting for 1080p quality
  2865. + [rtl2] Add support for you.rtl2.de (#10257)
  2866. + [vshare] Add support for vshare.io (#12278)
  2867. version 2017.04.03
  2868. Core
  2869. + [extractor/common] Add censorship check for TransTelekom ISP
  2870. * [extractor/common] Move censorship checks to a separate method
  2871. Extractors
  2872. + [discoveryvr] Add support for discoveryvr.com (#12578)
  2873. + [tv5mondeplus] Add support for tv5mondeplus.com (#11386)
  2874. + [periscope] Add support for pscp.tv URLs (#12618, #12625)
  2875. version 2017.04.02
  2876. Core
  2877. * [YoutubeDL] Return early when extraction of url_transparent fails
  2878. Extractors
  2879. * [rai] Fix and improve extraction (#11790)
  2880. + [vrv] Add support for series pages
  2881. * [limelight] Improve extraction for audio only formats
  2882. * [funimation] Fix extraction (#10696, #11773)
  2883. + [xfileshare] Add support for vidabc.com (#12589)
  2884. + [xfileshare] Improve extraction and extract hls formats
  2885. + [crunchyroll] Pass geo verifcation proxy
  2886. + [cwtv] Extract ISM formats
  2887. + [tvplay] Bypass geo restriction
  2888. + [vrv] Add support for vrv.co
  2889. + [packtpub] Add support for packtpub.com (#12610)
  2890. + [generic] Pass base_url to _parse_jwplayer_data
  2891. + [adn] Add support for animedigitalnetwork.fr (#4866)
  2892. + [allocine] Extract more metadata
  2893. * [allocine] Fix extraction (#12592)
  2894. * [openload] Fix extraction
  2895. version 2017.03.26
  2896. Core
  2897. * Don't raise an error if JWPlayer config data is not a Javascript object
  2898. literal. _find_jwplayer_data now returns a dict rather than an str. (#12307)
  2899. * Expand environment variables for options representing paths (#12556)
  2900. + [utils] Introduce expand_path
  2901. * [downloader/hls] Delegate downloading to ffmpeg immediately for live streams
  2902. Extractors
  2903. * [afreecatv] Fix extraction (#12179)
  2904. + [atvat] Add support for atv.at (#5325)
  2905. + [fox] Add metadata extraction (#12391)
  2906. + [atresplayer] Extract DASH formats
  2907. + [atresplayer] Extract HD manifest (#12548)
  2908. * [atresplayer] Fix login error detection (#12548)
  2909. * [franceculture] Fix extraction (#12547)
  2910. * [youtube] Improve URL regular expression (#12538)
  2911. * [generic] Do not follow redirects to the same URL
  2912. version 2017.03.24
  2913. Extractors
  2914. - [9c9media] Remove mp4 URL extraction request
  2915. + [bellmedia] Add support for etalk.ca and space.ca (#12447)
  2916. * [channel9] Fix extraction (#11323)
  2917. * [cloudy] Fix extraction (#12525)
  2918. + [hbo] Add support for free episode URLs and new formats extraction (#12519)
  2919. * [condenast] Fix extraction and style (#12526)
  2920. * [viu] Relax URL regular expression (#12529)
  2921. version 2017.03.22
  2922. Extractors
  2923. - [pluralsight] Omit module title from video title (#12506)
  2924. * [pornhub] Decode obfuscated video URL (#12470, #12515)
  2925. * [senateisvp] Allow https URL scheme for embeds (#12512)
  2926. version 2017.03.20
  2927. Core
  2928. + [YoutubeDL] Allow multiple input URLs to be used with stdout (-) as
  2929. output template
  2930. + [adobepass] Detect and output error on authz token extraction (#12472)
  2931. Extractors
  2932. + [bostonglobe] Add extractor for bostonglobe.com (#12099)
  2933. + [toongoggles] Add support for toongoggles.com (#12171)
  2934. + [medialaan] Add support for Medialaan sites (#9974, #11912)
  2935. + [discoverynetworks] Add support for more domains and bypass geo restiction
  2936. * [openload] Fix extraction (#10408)
  2937. version 2017.03.16
  2938. Core
  2939. + [postprocessor/ffmpeg] Add support for flac
  2940. + [extractor/common] Extract SMIL formats from jwplayer
  2941. Extractors
  2942. + [generic] Add forgotten return for jwplayer formats
  2943. * [redbulltv] Improve extraction
  2944. version 2017.03.15
  2945. Core
  2946. * Fix missing subtitles if --add-metadata is used (#12423)
  2947. Extractors
  2948. * [facebook] Make title optional (#12443)
  2949. + [mitele] Add support for ooyala videos (#12430)
  2950. * [openload] Fix extraction (#12435, #12446)
  2951. * [streamable] Update API URL (#12433)
  2952. + [crunchyroll] Extract season name (#12428)
  2953. * [discoverygo] Bypass geo restriction
  2954. + [discoverygo:playlist] Add support for playlists (#12424)
  2955. version 2017.03.10
  2956. Extractors
  2957. * [generic] Make title optional for jwplayer embeds (#12410)
  2958. * [wdr:maus] Fix extraction (#12373)
  2959. * [prosiebensat1] Improve title extraction (#12318, #12327)
  2960. * [dplayit] Separate and rewrite extractor and bypass geo restriction (#12393)
  2961. * [miomio] Fix extraction (#12291, #12388, #12402)
  2962. * [telequebec] Fix description extraction (#12399)
  2963. * [openload] Fix extraction (#12357)
  2964. * [brightcove:legacy] Relax videoPlayer validation check (#12381)
  2965. version 2017.03.07
  2966. Core
  2967. * Metadata are now added after conversion (#5594)
  2968. Extractors
  2969. * [soundcloud] Update client id (#12376)
  2970. * [openload] Fix extraction (#10408, #12357)
  2971. version 2017.03.06
  2972. Core
  2973. + [utils] Process bytestrings in urljoin (#12369)
  2974. * [extractor/common] Improve height extraction and extract bitrate
  2975. * [extractor/common] Move jwplayer formats extraction in separate method
  2976. + [external:ffmpeg] Limit test download size to 10KiB (#12362)
  2977. Extractors
  2978. + [drtv] Add geo countries to GeoRestrictedError
  2979. + [drtv:live] Bypass geo restriction
  2980. + [tunepk] Add extractor (#12197, #12243)
  2981. version 2017.03.05
  2982. Extractors
  2983. + [twitch] Add basic support for two-factor authentication (#11974)
  2984. + [vier] Add support for vijf.be (#12304)
  2985. + [redbulltv] Add support for redbull.tv (#3919, #11948)
  2986. * [douyutv] Switch to the PC API to escape the 5-min limitation (#12316)
  2987. + [generic] Add support for rutube embeds
  2988. + [rutube] Relax URL regular expression
  2989. + [vrak] Add support for vrak.tv (#11452)
  2990. + [brightcove:new] Add ability to smuggle geo_countries into URL
  2991. + [brightcove:new] Raise GeoRestrictedError
  2992. * [go] Relax URL regular expression (#12341)
  2993. * [24video] Use original host for requests (#12339)
  2994. * [ruutu] Disable DASH formats (#12322)
  2995. version 2017.03.02
  2996. Core
  2997. + [adobepass] Add support for Charter Spectrum (#11465)
  2998. * [YoutubeDL] Don't sanitize identifiers in output template (#12317)
  2999. Extractors
  3000. * [facebook] Fix extraction (#12323, #12330)
  3001. * [youtube] Mark errors about rental videos as expected (#12324)
  3002. + [npo] Add support for audio
  3003. * [npo] Adapt to app.php API (#12311, #12320)
  3004. version 2017.02.28
  3005. Core
  3006. + [utils] Add bytes_to_long and long_to_bytes
  3007. + [utils] Add pkcs1pad
  3008. + [aes] Add aes_cbc_encrypt
  3009. Extractors
  3010. + [azmedien:showplaylist] Add support for show playlists (#12160)
  3011. + [youtube:playlist] Recognize another playlist pattern (#11928, #12286)
  3012. + [daisuki] Add support for daisuki.net (#2486, #3186, #4738, #6175, #7776,
  3013. #10060)
  3014. * [douyu] Fix extraction (#12301)
  3015. version 2017.02.27
  3016. Core
  3017. * [downloader/common] Limit displaying 2 digits after decimal point in sleep
  3018. interval message (#12183)
  3019. + [extractor/common] Add preference to _parse_html5_media_entries
  3020. Extractors
  3021. + [npo] Add support for zapp.nl
  3022. + [npo] Add support for hetklokhuis.nl (#12293)
  3023. - [scivee] Remove extractor (#9315)
  3024. + [cda] Decode download URL (#12255)
  3025. + [crunchyroll] Improve uploader extraction (#12267)
  3026. + [youtube] Raise GeoRestrictedError
  3027. + [dailymotion] Raise GeoRestrictedError
  3028. + [mdr] Recognize more URL patterns (#12169)
  3029. + [tvigle] Raise GeoRestrictedError
  3030. * [vevo] Fix extraction for videos with the new streams/streamsV3 format
  3031. (#11719)
  3032. + [freshlive] Add support for freshlive.tv (#12175)
  3033. + [xhamster] Capture and output videoClosed error (#12263)
  3034. + [etonline] Add support for etonline.com (#12236)
  3035. + [njpwworld] Add support for njpwworld.com (#11561)
  3036. * [amcnetworks] Relax URL regular expression (#12127)
  3037. version 2017.02.24.1
  3038. Extractors
  3039. * [noco] Modernize
  3040. * [noco] Switch login URL to https (#12246)
  3041. + [thescene] Extract more metadata
  3042. * [thescene] Fix extraction (#12235)
  3043. + [tubitv] Use geo bypass mechanism
  3044. * [openload] Fix extraction (#10408)
  3045. + [ivi] Raise GeoRestrictedError
  3046. version 2017.02.24
  3047. Core
  3048. * [options] Hide deprecated options from --help
  3049. * [options] Deprecate --autonumber-size
  3050. + [YoutubeDL] Add support for string formatting operations in output template
  3051. (#5185, #5748, #6841, #9929, #9966 #9978, #12189)
  3052. Extractors
  3053. + [lynda:course] Add webpage extraction fallback (#12238)
  3054. * [go] Sign all uplynk URLs and use geo bypass only for free videos
  3055. (#12087, #12210)
  3056. + [skylinewebcams] Add support for skylinewebcams.com (#12221)
  3057. + [instagram] Add support for multi video posts (#12226)
  3058. + [crunchyroll] Extract playlist entries ids
  3059. * [mgtv] Fix extraction
  3060. + [sohu] Raise GeoRestrictedError
  3061. + [leeco] Raise GeoRestrictedError and use geo bypass mechanism
  3062. version 2017.02.22
  3063. Extractors
  3064. * [crunchyroll] Fix descriptions with double quotes (#12124)
  3065. * [dailymotion] Make comment count optional (#12209)
  3066. + [vidzi] Add support for vidzi.cc (#12213)
  3067. + [24video] Add support for 24video.tube (#12217)
  3068. + [crackle] Use geo bypass mechanism
  3069. + [viewster] Use geo verification headers
  3070. + [tfo] Improve geo restriction detection and use geo bypass mechanism
  3071. + [telequebec] Use geo bypass mechanism
  3072. + [limelight] Extract PlaylistService errors and improve geo restriction
  3073. detection
  3074. version 2017.02.21
  3075. Core
  3076. * [extractor/common] Allow calling _initialize_geo_bypass from extractors
  3077. (#11970)
  3078. + [adobepass] Add support for Time Warner Cable (#12191)
  3079. + [travis] Run tests in parallel
  3080. + [downloader/ism] Honor HTTP headers when downloading fragments
  3081. + [downloader/dash] Honor HTTP headers when downloading fragments
  3082. + [utils] Add GeoUtils class for working with geo tools and GeoUtils.random_ipv4
  3083. + Add option --geo-bypass-country for explicit geo bypass on behalf of
  3084. specified country
  3085. + Add options to control geo bypass mechanism --geo-bypass and --no-geo-bypass
  3086. + Add experimental geo restriction bypass mechanism based on faking
  3087. X-Forwarded-For HTTP header
  3088. + [utils] Introduce GeoRestrictedError for geo restricted videos
  3089. + [utils] Introduce YoutubeDLError base class for all youtube-dl exceptions
  3090. Extractors
  3091. + [ninecninemedia] Use geo bypass mechanism
  3092. * [spankbang] Make uploader optional (#12193)
  3093. + [iprima] Improve geo restriction detection and disable geo bypass
  3094. * [iprima] Modernize
  3095. * [commonmistakes] Disable UnicodeBOM extractor test for python 3.2
  3096. + [prosiebensat1] Throw ExtractionError on unsupported page type (#12180)
  3097. * [nrk] Update _API_HOST and relax _VALID_URL
  3098. + [tv4] Bypass geo restriction and improve detection
  3099. * [tv4] Switch to hls3 protocol (#12177)
  3100. + [viki] Improve geo restriction detection
  3101. + [vgtv] Improve geo restriction detection
  3102. + [srgssr] Improve geo restriction detection
  3103. + [vbox7] Improve geo restriction detection and use geo bypass mechanism
  3104. + [svt] Improve geo restriction detection and use geo bypass mechanism
  3105. + [pbs] Improve geo restriction detection and use geo bypass mechanism
  3106. + [ondemandkorea] Improve geo restriction detection and use geo bypass mechanism
  3107. + [nrk] Improve geo restriction detection and use geo bypass mechanism
  3108. + [itv] Improve geo restriction detection and use geo bypass mechanism
  3109. + [go] Improve geo restriction detection and use geo bypass mechanism
  3110. + [dramafever] Improve geo restriction detection and use geo bypass mechanism
  3111. * [brightcove:legacy] Restrict videoPlayer value (#12040)
  3112. + [tvn24] Add support for tvn24.pl and tvn24bis.pl (#11679)
  3113. + [thisav] Add support for HTML5 media (#11771)
  3114. * [metacafe] Bypass family filter (#10371)
  3115. * [viceland] Improve info extraction
  3116. version 2017.02.17
  3117. Extractors
  3118. * [heise] Improve extraction (#9725)
  3119. * [ellentv] Improve (#11653)
  3120. * [openload] Fix extraction (#10408, #12002)
  3121. + [theplatform] Recognize URLs with whitespaces (#12044)
  3122. * [einthusan] Relax URL regular expression (#12141, #12159)
  3123. + [generic] Support complex JWPlayer embedded videos (#12030)
  3124. * [elpais] Improve extraction (#12139)
  3125. version 2017.02.16
  3126. Core
  3127. + [utils] Add support for quoted string literals in --match-filter (#8050,
  3128. #12142, #12144)
  3129. Extractors
  3130. * [ceskatelevize] Lower priority for audio description sources (#12119)
  3131. * [amcnetworks] Fix extraction (#12127)
  3132. * [pinkbike] Fix uploader extraction (#12054)
  3133. + [onetpl] Add support for businessinsider.com.pl and plejada.pl
  3134. + [onetpl] Add support for onet.pl (#10507)
  3135. + [onetmvp] Add shortcut extractor
  3136. + [vodpl] Add support for vod.pl (#12122)
  3137. + [pornhub] Extract video URL from tv platform site (#12007, #12129)
  3138. + [ceskatelevize] Extract DASH formats (#12119, #12133)
  3139. version 2017.02.14
  3140. Core
  3141. * TypeError is fixed with Python 2.7.13 on Windows (#11540, #12085)
  3142. Extractor
  3143. * [zdf] Fix extraction (#12117)
  3144. * [xtube] Fix extraction for both kinds of video id (#12088)
  3145. * [xtube] Improve title extraction (#12088)
  3146. + [lemonde] Fallback delegate extraction to generic extractor (#12115, #12116)
  3147. * [bellmedia] Allow video id longer than 6 characters (#12114)
  3148. + [limelight] Add support for referer protected videos
  3149. * [disney] Improve extraction (#4975, #11000, #11882, #11936)
  3150. * [hotstar] Improve extraction (#12096)
  3151. * [einthusan] Fix extraction (#11416)
  3152. + [aenetworks] Add support for lifetimemovieclub.com (#12097)
  3153. * [youtube] Fix parsing codecs (#12091)
  3154. version 2017.02.11
  3155. Core
  3156. + [utils] Introduce get_elements_by_class and get_elements_by_attribute
  3157. utility functions
  3158. + [extractor/common] Skip m3u8 manifests protected with Adobe Flash Access
  3159. Extractor
  3160. * [pluralsight:course] Fix extraction (#12075)
  3161. + [bbc] Extract m3u8 formats with 320k audio
  3162. * [facebook] Relax video id matching (#11017, #12055, #12056)
  3163. + [corus] Add support for Corus Entertainment sites (#12060, #9164)
  3164. + [pluralsight] Detect blocked account error message (#12070)
  3165. + [bloomberg] Add another video id pattern (#12062)
  3166. * [extractor/commonmistakes] Restrict URL regular expression (#12050)
  3167. + [tvplayer] Add support for tvplayer.com
  3168. version 2017.02.10
  3169. Extractors
  3170. * [xtube] Fix extraction (#12023)
  3171. * [pornhub] Fix extraction (#12007, #12018)
  3172. * [facebook] Improve JS data regular expression (#12042)
  3173. * [kaltura] Improve embed partner id extraction (#12041)
  3174. + [sprout] Add support for sproutonline.com
  3175. * [6play] Improve extraction
  3176. + [scrippsnetworks:watch] Add support for Scripps Networks sites (#10765)
  3177. + [go] Add support for Adobe Pass authentication (#11468, #10831)
  3178. * [6play] Fix extraction (#12011)
  3179. + [nbc] Add support for Adobe Pass authentication (#12006)
  3180. version 2017.02.07
  3181. Core
  3182. * [extractor/common] Fix audio only with audio group in m3u8 (#11995)
  3183. + [downloader/fragment] Respect --no-part
  3184. * [extractor/common] Speed-up HTML5 media entries extraction (#11979)
  3185. Extractors
  3186. * [pornhub] Fix extraction (#11997)
  3187. + [canalplus] Add support for cstar.fr (#11990)
  3188. + [extractor/generic] Improve RTMP support (#11993)
  3189. + [gaskrank] Add support for gaskrank.tv (#11685)
  3190. * [bandcamp] Fix extraction for incomplete albums (#11727)
  3191. * [iwara] Fix extraction (#11781)
  3192. * [googledrive] Fix extraction on Python 3.6
  3193. + [videopress] Add support for videopress.com
  3194. + [afreecatv] Extract RTMP formats
  3195. version 2017.02.04.1
  3196. Extractors
  3197. + [twitch:stream] Add support for player.twitch.tv (#11971)
  3198. * [radiocanada] Fix extraction for toutv rtmp formats
  3199. version 2017.02.04
  3200. Core
  3201. + Add --playlist-random to shuffle playlists (#11889, #11901)
  3202. * [utils] Improve comments processing in js_to_json (#11947)
  3203. * [utils] Handle single-line comments in js_to_json
  3204. * [downloader/external:ffmpeg] Minimize the use of aac_adtstoasc filter
  3205. Extractors
  3206. + [piksel] Add another app token pattern (#11969)
  3207. + [vk] Capture and output author blocked error message (#11965)
  3208. + [turner] Fix secure HLS formats downloading with ffmpeg (#11358, #11373,
  3209. #11800)
  3210. + [drtv] Add support for live and radio sections (#1827, #3427)
  3211. * [myspace] Fix extraction and extract HLS and HTTP formats
  3212. + [youtube] Add format info for itag 325 and 328
  3213. * [vine] Fix extraction (#11955)
  3214. - [sportbox] Remove extractor (#11954)
  3215. + [filmon] Add support for filmon.com (#11187)
  3216. + [infoq] Add audio only formats (#11565)
  3217. * [douyutv] Improve room id regular expression (#11931)
  3218. * [iprima] Fix extraction (#11920, #11896)
  3219. * [youtube] Fix ytsearch when cookies are provided (#11924)
  3220. * [go] Relax video id regular expression (#11937)
  3221. * [facebook] Fix title extraction (#11941)
  3222. + [youtube:playlist] Recognize TL playlists (#11945)
  3223. + [bilibili] Support new Bangumi URLs (#11845)
  3224. + [cbc:watch] Extract audio codec for audio only formats (#11893)
  3225. + [elpais] Fix extraction for some URLs (#11765)
  3226. version 2017.02.01
  3227. Extractors
  3228. + [facebook] Add another fallback extraction scenario (#11926)
  3229. * [prosiebensat1] Fix extraction of descriptions (#11810, #11929)
  3230. - [crunchyroll] Remove ScaledBorderAndShadow settings (#9028)
  3231. + [vimeo] Extract upload timestamp
  3232. + [vimeo] Extract license (#8726, #11880)
  3233. + [nrk:series] Add support for series (#11571, #11711)
  3234. version 2017.01.31
  3235. Core
  3236. + [compat] Add compat_etree_register_namespace
  3237. Extractors
  3238. * [youtube] Fix extraction for domainless player URLs (#11890, #11891, #11892,
  3239. #11894, #11895, #11897, #11900, #11903, #11904, #11906, #11907, #11909,
  3240. #11913, #11914, #11915, #11916, #11917, #11918, #11919)
  3241. + [vimeo] Extract both mixed and separated DASH formats
  3242. + [ruutu] Extract DASH formats
  3243. * [itv] Fix extraction for python 2.6
  3244. version 2017.01.29
  3245. Core
  3246. * [extractor/common] Fix initialization template (#11605, #11825)
  3247. + [extractor/common] Document fragment_base_url and fragment's path fields
  3248. * [extractor/common] Fix duration per DASH segment (#11868)
  3249. + Introduce --autonumber-start option for initial value of %(autonumber)s
  3250. template (#727, #2702, #9362, #10457, #10529, #11862)
  3251. Extractors
  3252. + [azmedien:playlist] Add support for topic and themen playlists (#11817)
  3253. * [npo] Fix subtitles extraction
  3254. + [itv] Extract subtitles
  3255. + [itv] Add support for itv.com (#9240)
  3256. + [mtv81] Add support for mtv81.com (#7619)
  3257. + [vlive] Add support for channels (#11826)
  3258. + [kaltura] Add fallback for fileExt
  3259. + [kaltura] Improve uploader_id extraction
  3260. + [konserthusetplay] Add support for rspoplay.se (#11828)
  3261. version 2017.01.28
  3262. Core
  3263. * [utils] Improve parse_duration
  3264. Extractors
  3265. * [crunchyroll] Improve series and season metadata extraction (#11832)
  3266. * [soundcloud] Improve formats extraction and extract audio bitrate
  3267. + [soundcloud] Extract HLS formats
  3268. * [soundcloud] Fix track URL extraction (#11852)
  3269. + [twitch:vod] Expand URL regular expressions (#11846)
  3270. * [aenetworks] Fix season episodes extraction (#11669)
  3271. + [tva] Add support for videos.tva.ca (#11842)
  3272. * [jamendo] Improve and extract more metadata (#11836)
  3273. + [disney] Add support for Disney sites (#7409, #11801, #4975, #11000)
  3274. * [vevo] Remove request to old API and catch API v2 errors
  3275. + [cmt,mtv,southpark] Add support for episode URLs (#11837)
  3276. + [youtube] Add fallback for duration extraction (#11841)
  3277. version 2017.01.25
  3278. Extractors
  3279. + [openload] Fallback video extension to mp4
  3280. + [extractor/generic] Add support for Openload embeds (#11536, #11812)
  3281. * [srgssr] Fix rts video extraction (#11831)
  3282. + [afreecatv:global] Add support for afreeca.tv (#11807)
  3283. + [crackle] Extract vtt subtitles
  3284. + [crackle] Extract multiple resolutions for thumbnails
  3285. + [crackle] Add support for mobile URLs
  3286. + [konserthusetplay] Extract subtitles (#11823)
  3287. + [konserthusetplay] Add support for HLS videos (#11823)
  3288. * [vimeo:review] Fix config URL extraction (#11821)
  3289. version 2017.01.24
  3290. Extractors
  3291. * [pluralsight] Fix extraction (#11820)
  3292. + [nextmedia] Add support for NextTV (壹電視)
  3293. * [24video] Fix extraction (#11811)
  3294. * [youtube:playlist] Fix nonexistent and private playlist detection (#11604)
  3295. + [chirbit] Extract uploader (#11809)
  3296. version 2017.01.22
  3297. Extractors
  3298. + [pornflip] Add support for pornflip.com (#11556, #11795)
  3299. * [chaturbate] Fix extraction (#11797, #11802)
  3300. + [azmedien] Add support for AZ Medien sites (#11784, #11785)
  3301. + [nextmedia] Support redirected URLs
  3302. + [vimeo:channel] Extract videos' titles for playlist entries (#11796)
  3303. + [youtube] Extract episode metadata (#9695, #11774)
  3304. + [cspan] Support Ustream embedded videos (#11547)
  3305. + [1tv] Add support for HLS videos (#11786)
  3306. * [uol] Fix extraction (#11770)
  3307. * [mtv] Relax triforce feed regular expression (#11766)
  3308. version 2017.01.18
  3309. Extractors
  3310. * [bilibili] Fix extraction (#11077)
  3311. + [canalplus] Add fallback for video id (#11764)
  3312. * [20min] Fix extraction (#11683, #11751)
  3313. * [imdb] Extend URL regular expression (#11744)
  3314. + [naver] Add support for tv.naver.com links (#11743)
  3315. version 2017.01.16
  3316. Core
  3317. * [options] Apply custom config to final composite configuration (#11741)
  3318. * [YoutubeDL] Improve protocol auto determining (#11720)
  3319. Extractors
  3320. * [xiami] Relax URL regular expressions
  3321. * [xiami] Improve track metadata extraction (#11699)
  3322. + [limelight] Check hand-make direct HTTP links
  3323. + [limelight] Add support for direct HTTP links at video.llnw.net (#11737)
  3324. + [brightcove] Recognize another player ID pattern (#11688)
  3325. + [niconico] Support login via cookies (#7968)
  3326. * [yourupload] Fix extraction (#11601)
  3327. + [beam:live] Add support for beam.pro live streams (#10702, #11596)
  3328. * [vevo] Improve geo restriction detection
  3329. + [dramafever] Add support for URLs with language code (#11714)
  3330. * [cbc] Improve playlist support (#11704)
  3331. version 2017.01.14
  3332. Core
  3333. + [common] Add ability to customize akamai manifest host
  3334. + [utils] Add more date formats
  3335. Extractors
  3336. - [mtv] Eliminate _transform_rtmp_url
  3337. * [mtv] Generalize triforce mgid extraction
  3338. + [cmt] Add support for full episodes and video clips (#11623)
  3339. + [mitele] Extract DASH formats
  3340. + [ooyala] Add support for videos with embedToken (#11684)
  3341. * [mixcloud] Fix extraction (#11674)
  3342. * [openload] Fix extraction (#10408)
  3343. * [tv4] Improve extraction (#11698)
  3344. * [freesound] Fix and improve extraction (#11602)
  3345. + [nick] Add support for beta.nick.com (#11655)
  3346. * [mtv,cc] Use HLS by default with native HLS downloader (#11641)
  3347. * [mtv] Fix non-HLS extraction
  3348. version 2017.01.10
  3349. Extractors
  3350. * [youtube] Fix extraction (#11663, #11664)
  3351. + [inc] Add support for inc.com (#11277, #11647)
  3352. + [youtube] Add itag 212 (#11575)
  3353. + [egghead:course] Add support for egghead.io courses
  3354. version 2017.01.08
  3355. Core
  3356. * Fix "invalid escape sequence" errors under Python 3.6 (#11581)
  3357. Extractors
  3358. + [hitrecord] Add support for hitrecord.org (#10867, #11626)
  3359. - [videott] Remove extractor
  3360. * [swrmediathek] Improve extraction
  3361. - [sharesix] Remove extractor
  3362. - [aol:features] Remove extractor
  3363. * [sendtonews] Improve info extraction
  3364. * [3sat,phoenix] Fix extraction (#11619)
  3365. * [comedycentral/mtv] Add support for HLS videos (#11600)
  3366. * [discoverygo] Fix JSON data parsing (#11219, #11522)
  3367. version 2017.01.05
  3368. Extractors
  3369. + [zdf] Fix extraction (#11055, #11063)
  3370. * [pornhub:playlist] Improve extraction (#11594)
  3371. + [cctv] Add support for ncpa-classic.com (#11591)
  3372. + [tunein] Add support for embeds (#11579)
  3373. version 2017.01.02
  3374. Extractors
  3375. * [cctv] Improve extraction (#879, #6753, #8541)
  3376. + [nrktv:episodes] Add support for episodes (#11571)
  3377. + [arkena] Add support for video.arkena.com (#11568)
  3378. version 2016.12.31
  3379. Core
  3380. + Introduce --config-location option for custom configuration files (#6745,
  3381. #10648)
  3382. Extractors
  3383. + [twitch] Add support for player.twitch.tv (#11535, #11537)
  3384. + [videa] Add support for videa.hu (#8181, #11133)
  3385. * [vk] Fix postlive videos extraction
  3386. * [vk] Extract from playerParams (#11555)
  3387. - [freevideo] Remove extractor (#11515)
  3388. + [showroomlive] Add support for showroom-live.com (#11458)
  3389. * [xhamster] Fix duration extraction (#11549)
  3390. * [rtve:live] Fix extraction (#11529)
  3391. * [brightcove:legacy] Improve embeds detection (#11523)
  3392. + [twitch] Add support for rechat messages (#11524)
  3393. * [acast] Fix audio and timestamp extraction (#11521)
  3394. version 2016.12.22
  3395. Core
  3396. * [extractor/common] Improve detection of video-only formats in m3u8
  3397. manifests (#11507)
  3398. Extractors
  3399. + [theplatform] Pass geo verification headers to SMIL request (#10146)
  3400. + [viu] Pass geo verification headers to auth request
  3401. * [rtl2] Extract more formats and metadata
  3402. * [vbox7] Skip malformed JSON-LD (#11501)
  3403. * [uplynk] Force downloading using native HLS downloader (#11496)
  3404. + [laola1] Add support for another extraction scenario (#11460)
  3405. version 2016.12.20
  3406. Core
  3407. * [extractor/common] Improve fragment URL construction for DASH media
  3408. * [extractor/common] Fix codec information extraction for mixed audio/video
  3409. DASH media (#11490)
  3410. Extractors
  3411. * [vbox7] Fix extraction (#11494)
  3412. + [uktvplay] Add support for uktvplay.uktv.co.uk (#11027)
  3413. + [piksel] Add support for player.piksel.com (#11246)
  3414. + [vimeo] Add support for DASH formats
  3415. * [vimeo] Fix extraction for HLS formats (#11490)
  3416. * [kaltura] Fix wrong widget ID in some cases (#11480)
  3417. + [nrktv:direkte] Add support for live streams (#11488)
  3418. * [pbs] Fix extraction for geo restricted videos (#7095)
  3419. * [brightcove:new] Skip widevine classic videos
  3420. + [viu] Add support for viu.com (#10607, #11329)
  3421. version 2016.12.18
  3422. Core
  3423. + [extractor/common] Recognize DASH formats in html5 media entries
  3424. Extractors
  3425. + [ccma] Add support for ccma.cat (#11359)
  3426. * [laola1tv] Improve extraction
  3427. + [laola1tv] Add support embed URLs (#11460)
  3428. * [nbc] Fix extraction for MSNBC videos (#11466)
  3429. * [twitch] Adapt to new videos pages URL schema (#11469)
  3430. + [meipai] Add support for meipai.com (#10718)
  3431. * [jwplatform] Improve subtitles and duration extraction
  3432. + [ondemandkorea] Add support for ondemandkorea.com (#10772)
  3433. + [vvvvid] Add support for vvvvid.it (#5915)
  3434. version 2016.12.15
  3435. Core
  3436. + [utils] Add convenience urljoin
  3437. Extractors
  3438. + [openload] Recognize oload.tv URLs (#10408)
  3439. + [facebook] Recognize .onion URLs (#11443)
  3440. * [vlive] Fix extraction (#11375, #11383)
  3441. + [canvas] Extract DASH formats
  3442. + [melonvod] Add support for vod.melon.com (#11419)
  3443. version 2016.12.12
  3444. Core
  3445. + [utils] Add common user agents map
  3446. + [common] Recognize HLS manifests that contain video only formats (#11394)
  3447. Extractors
  3448. + [dplay] Use Safari user agent for HLS (#11418)
  3449. + [facebook] Detect login required error message
  3450. * [facebook] Improve video selection (#11390)
  3451. + [canalplus] Add another video id pattern (#11399)
  3452. * [mixcloud] Relax URL regular expression (#11406)
  3453. * [ctvnews] Relax URL regular expression (#11394)
  3454. + [rte] Capture and output error message (#7746, #10498)
  3455. + [prosiebensat1] Add support for DASH formats
  3456. * [srgssr] Improve extraction for geo restricted videos (#11089)
  3457. * [rts] Improve extraction for geo restricted videos (#4989)
  3458. version 2016.12.09
  3459. Core
  3460. * [socks] Fix error reporting (#11355)
  3461. Extractors
  3462. * [openload] Fix extraction (#10408)
  3463. * [pandoratv] Fix extraction (#11023)
  3464. + [telebruxelles] Add support for emission URLs
  3465. * [telebruxelles] Extract all formats
  3466. + [bloomberg] Add another video id regular expression (#11371)
  3467. * [fusion] Update ooyala id regular expression (#11364)
  3468. + [1tv] Add support for playlists (#11335)
  3469. * [1tv] Improve extraction (#11335)
  3470. + [aenetworks] Extract more formats (#11321)
  3471. + [thisoldhouse] Recognize /tv-episode/ URLs (#11271)
  3472. version 2016.12.01
  3473. Extractors
  3474. * [soundcloud] Update client id (#11327)
  3475. * [ruutu] Detect DRM protected videos
  3476. + [liveleak] Add support for youtube embeds (#10688)
  3477. * [spike] Fix full episodes support (#11312)
  3478. * [comedycentral] Fix full episodes support
  3479. * [normalboots] Rewrite in terms of JWPlatform (#11184)
  3480. * [teamfourstar] Rewrite in terms of JWPlatform (#11184)
  3481. - [screenwavemedia] Remove extractor (#11184)
  3482. version 2016.11.27
  3483. Extractors
  3484. + [webcaster] Add support for webcaster.pro
  3485. + [azubu] Add support for azubu.uol.com.br (#11305)
  3486. * [viki] Prefer hls formats
  3487. * [viki] Fix rtmp formats extraction (#11255)
  3488. * [puls4] Relax URL regular expression (#11267)
  3489. * [vevo] Improve artist extraction (#10911)
  3490. * [mitele] Relax URL regular expression and extract more metadata (#11244)
  3491. + [cbslocal] Recognize New York site (#11285)
  3492. + [youtube:playlist] Pass disable_polymer in URL query (#11193)
  3493. version 2016.11.22
  3494. Extractors
  3495. * [hellporno] Fix video extension extraction (#11247)
  3496. + [hellporno] Add support for hellporno.net (#11247)
  3497. + [amcnetworks] Recognize more BBC America URLs (#11263)
  3498. * [funnyordie] Improve extraction (#11208)
  3499. * [extractor/generic] Improve limelight embeds support
  3500. - [crunchyroll] Remove ScaledBorderAndShadow from ASS subtitles (#8207, #9028)
  3501. * [bandcamp] Fix free downloads extraction and extract all formats (#11067)
  3502. * [twitter:card] Relax URL regular expression (#11225)
  3503. + [tvanouvelles] Add support for tvanouvelles.ca (#10616)
  3504. version 2016.11.18
  3505. Extractors
  3506. * [youtube:live] Relax URL regular expression (#11164)
  3507. * [openload] Fix extraction (#10408, #11122)
  3508. * [vlive] Prefer locale over language for subtitles id (#11203)
  3509. version 2016.11.14.1
  3510. Core
  3511. + [downoader/fragment,f4m,hls] Respect HTTP headers from info dict
  3512. * [extractor/common] Fix media templates with Bandwidth substitution pattern in
  3513. MPD manifests (#11175)
  3514. * [extractor/common] Improve thumbnail extraction from JSON-LD
  3515. Extractors
  3516. + [nrk] Workaround geo restriction
  3517. + [nrk] Improve error detection and messages
  3518. + [afreecatv] Add support for vod.afreecatv.com (#11174)
  3519. * [cda] Fix and improve extraction (#10929, #10936)
  3520. * [plays] Fix extraction (#11165)
  3521. * [eagleplatform] Fix extraction (#11160)
  3522. + [audioboom] Recognize /posts/ URLs (#11149)
  3523. version 2016.11.08.1
  3524. Extractors
  3525. * [espn:article] Fix support for espn.com articles
  3526. * [franceculture] Fix extraction (#11140)
  3527. version 2016.11.08
  3528. Extractors
  3529. * [tmz:article] Fix extraction (#11052)
  3530. * [espn] Fix extraction (#11041)
  3531. * [mitele] Fix extraction after website redesign (#10824)
  3532. - [ard] Remove age restriction check (#11129)
  3533. * [generic] Improve support for pornhub.com embeds (#11100)
  3534. + [generic] Add support for redtube.com embeds (#11099)
  3535. + [generic] Add support for drtuber.com embeds (#11098)
  3536. + [redtube] Add support for embed URLs
  3537. + [drtuber] Add support for embed URLs
  3538. + [yahoo] Improve content id extraction (#11088)
  3539. * [toutv] Relax URL regular expression (#11121)
  3540. version 2016.11.04
  3541. Core
  3542. * [extractor/common] Tolerate malformed RESOLUTION attribute in m3u8
  3543. manifests (#11113)
  3544. * [downloader/ism] Fix AVC Decoder Configuration Record
  3545. Extractors
  3546. + [fox9] Add support for fox9.com (#11110)
  3547. + [anvato] Extract more metadata and improve formats extraction
  3548. * [vodlocker] Improve removed videos detection (#11106)
  3549. + [vzaar] Add support for vzaar.com (#11093)
  3550. + [vice] Add support for uplynk preplay videos (#11101)
  3551. * [tubitv] Fix extraction (#11061)
  3552. + [shahid] Add support for authentication (#11091)
  3553. + [radiocanada] Add subtitles support (#11096)
  3554. + [generic] Add support for ISM manifests
  3555. version 2016.11.02
  3556. Core
  3557. + Add basic support for Smooth Streaming protocol (#8118, #10969)
  3558. * Improve MPD manifest base URL extraction (#10909, #11079)
  3559. * Fix --match-filter for int-like strings (#11082)
  3560. Extractors
  3561. + [mva] Add support for ISM formats
  3562. + [msn] Add support for ISM formats
  3563. + [onet] Add support for ISM formats
  3564. + [tvp] Add support for ISM formats
  3565. + [nicknight] Add support for nicknight sites (#10769)
  3566. version 2016.10.30
  3567. Extractors
  3568. * [facebook] Improve 1080P video detection (#11073)
  3569. * [imgur] Recognize /r/ URLs (#11071)
  3570. * [beeg] Fix extraction (#11069)
  3571. * [openload] Fix extraction (#10408)
  3572. * [gvsearch] Modernize and fix search request (#11051)
  3573. * [adultswim] Fix extraction (#10979)
  3574. + [nobelprize] Add support for nobelprize.org (#9999)
  3575. * [hornbunny] Fix extraction (#10981)
  3576. * [tvp] Improve video id extraction (#10585)
  3577. version 2016.10.26
  3578. Extractors
  3579. + [rentv] Add support for ren.tv (#10620)
  3580. + [ard] Detect unavailable videos (#11018)
  3581. * [vk] Fix extraction (#11022)
  3582. version 2016.10.25
  3583. Core
  3584. * Running youtube-dl in the background is fixed (#10996, #10706, #955)
  3585. Extractors
  3586. + [jamendo] Add support for jamendo.com (#10132, #10736)
  3587. + [pandatv] Add support for panda.tv (#10736)
  3588. + [dotsub] Support Vimeo embed (#10964)
  3589. * [litv] Fix extraction
  3590. + [vimeo] Delegate ondemand redirects to ondemand extractor (#10994)
  3591. * [vivo] Fix extraction (#11003)
  3592. + [twitch:stream] Add support for rebroadcasts (#10995)
  3593. * [pluralsight] Fix subtitles conversion (#10990)
  3594. version 2016.10.21.1
  3595. Extractors
  3596. + [pluralsight] Process all clip URLs (#10984)
  3597. version 2016.10.21
  3598. Core
  3599. - Disable thumbnails embedding in mkv
  3600. + Add support for Comcast multiple-system operator (#10819)
  3601. Extractors
  3602. * [pluralsight] Adapt to new API (#10972)
  3603. * [openload] Fix extraction (#10408, #10971)
  3604. + [natgeo] Extract m3u8 formats (#10959)
  3605. version 2016.10.19
  3606. Core
  3607. + [utils] Expose PACKED_CODES_RE
  3608. + [extractor/common] Extract non smil wowza mpd manifests
  3609. + [extractor/common] Detect f4m audio-only formats
  3610. Extractors
  3611. * [vidzi] Fix extraction (#10908, #10952)
  3612. * [urplay] Fix subtitles extraction
  3613. + [urplay] Add support for urskola.se (#10915)
  3614. + [orf] Add subtitles support (#10939)
  3615. * [youtube] Fix --no-playlist behavior for youtu.be/id URLs (#10896)
  3616. * [nrk] Relax URL regular expression (#10928)
  3617. + [nytimes] Add support for podcasts (#10926)
  3618. * [pluralsight] Relax URL regular expression (#10941)
  3619. version 2016.10.16
  3620. Core
  3621. * [postprocessor/ffmpeg] Return correct filepath and ext in updated information
  3622. in FFmpegExtractAudioPP (#10879)
  3623. Extractors
  3624. + [ruutu] Add support for supla.fi (#10849)
  3625. + [theoperaplatform] Add support for theoperaplatform.eu (#10914)
  3626. * [lynda] Fix height for prioritized streams
  3627. + [lynda] Add fallback extraction scenario
  3628. * [lynda] Switch to https (#10916)
  3629. + [huajiao] New extractor (#10917)
  3630. * [cmt] Fix mgid extraction (#10813)
  3631. + [safari:course] Add support for techbus.safaribooksonline.com
  3632. * [orf:tvthek] Fix extraction and modernize (#10898)
  3633. * [chirbit] Fix extraction of user profile pages
  3634. * [carambatv] Fix extraction
  3635. * [canalplus] Fix extraction for some videos
  3636. * [cbsinteractive] Fix extraction for cnet.com
  3637. * [parliamentliveuk] Lower case URLs are now recognized (#10912)
  3638. version 2016.10.12
  3639. Core
  3640. + Support HTML media elements without child nodes
  3641. * [Makefile] Support for GNU make < 4 is fixed; BSD make dropped (#9387)
  3642. Extractors
  3643. * [dailymotion] Fix extraction (#10901)
  3644. * [vimeo:review] Fix extraction (#10900)
  3645. * [nhl] Correctly handle invalid formats (#10713)
  3646. * [footyroom] Fix extraction (#10810)
  3647. * [abc.net.au:iview] Fix for standalone (non series) videos (#10895)
  3648. + [hbo] Add support for episode pages (#10892)
  3649. * [allocine] Fix extraction (#10860)
  3650. + [nextmedia] Recognize action news on AppleDaily
  3651. * [lego] Improve info extraction and bypass geo restriction (#10872)
  3652. version 2016.10.07
  3653. Extractors
  3654. + [iprima] Detect geo restriction
  3655. * [facebook] Fix video extraction (#10846)
  3656. + [commonprotocols] Support direct MMS links (#10838)
  3657. + [generic] Add support for multiple vimeo embeds (#10862)
  3658. + [nzz] Add support for nzz.ch (#4407)
  3659. + [npo] Detect geo restriction
  3660. + [npo] Add support for 2doc.nl (#10842)
  3661. + [lego] Add support for lego.com (#10369)
  3662. + [tonline] Add support for t-online.de (#10376)
  3663. * [techtalks] Relax URL regular expression (#10840)
  3664. * [youtube:live] Extend URL regular expression (#10839)
  3665. + [theweatherchannel] Add support for weather.com (#7188)
  3666. + [thisoldhouse] Add support for thisoldhouse.com (#10837)
  3667. + [nhl] Add support for wch2016.com (#10833)
  3668. * [pornoxo] Use JWPlatform to improve metadata extraction
  3669. version 2016.10.02
  3670. Core
  3671. * Fix possibly lost extended attributes during post-processing
  3672. + Support pyxattr as well as python-xattr for --xattrs and
  3673. --xattr-set-filesize (#9054)
  3674. Extractors
  3675. + [jwplatform] Support DASH streams in JWPlayer
  3676. + [jwplatform] Support old-style JWPlayer playlists
  3677. + [byutv:event] Add extractor
  3678. * [periscope:user] Fix extraction (#10820)
  3679. * [dctp] Fix extraction (#10734)
  3680. + [instagram] Extract video dimensions (#10790)
  3681. + [tvland] Extend URL regular expression (#10812)
  3682. + [vgtv] Add support for tv.aftonbladet.se (#10800)
  3683. - [aftonbladet] Remove extractor
  3684. * [vk] Fix timestamp and view count extraction (#10760)
  3685. + [vk] Add support for running and finished live streams (#10799)
  3686. + [leeco] Recognize more Le Sports URLs (#10794)
  3687. + [instagram] Extract comments (#10788)
  3688. + [ketnet] Extract mzsource formats (#10770)
  3689. * [limelight:media] Improve HTTP formats extraction
  3690. version 2016.09.27
  3691. Core
  3692. + Add hdcore query parameter to akamai f4m formats
  3693. + Delegate HLS live streams downloading to ffmpeg
  3694. + Improved support for HTML5 subtitles
  3695. Extractors
  3696. + [vk] Add support for dailymotion embeds (#10661)
  3697. * [promptfile] Fix extraction (#10634)
  3698. * [kaltura] Speed up embed regular expressions (#10764)
  3699. + [npo] Add support for anderetijden.nl (#10754)
  3700. + [prosiebensat1] Add support for advopedia sites
  3701. * [mwave] Relax URL regular expression (#10735, #10748)
  3702. * [prosiebensat1] Fix playlist support (#10745)
  3703. + [prosiebensat1] Add support for sat1gold sites (#10745)
  3704. + [cbsnews:livevideo] Fix extraction and extract m3u8 formats
  3705. + [brightcove:new] Add support for live streams
  3706. * [soundcloud] Generalize playlist entries extraction (#10733)
  3707. + [mtv] Add support for new URL schema (#8169, #9808)
  3708. * [einthusan] Fix extraction (#10714)
  3709. + [twitter] Support Periscope embeds (#10737)
  3710. + [openload] Support subtitles (#10625)
  3711. version 2016.09.24
  3712. Core
  3713. + Add support for watchTVeverywhere.com authentication provider based MSOs for
  3714. Adobe Pass authentication (#10709)
  3715. Extractors
  3716. + [soundcloud:playlist] Provide video id for early playlist entries (#10733)
  3717. + [prosiebensat1] Add support for kabeleinsdoku (#10732)
  3718. * [cbs] Extract info from thunder videoPlayerService (#10728)
  3719. * [openload] Fix extraction (#10408)
  3720. + [ustream] Support the new HLS streams (#10698)
  3721. + [ooyala] Extract all HLS formats
  3722. + [cartoonnetwork] Add support for Adobe Pass authentication
  3723. + [soundcloud] Extract license metadata
  3724. + [fox] Add support for Adobe Pass authentication (#8584)
  3725. + [tbs] Add support for Adobe Pass authentication (#10642, #10222)
  3726. + [trutv] Add support for Adobe Pass authentication (#10519)
  3727. + [turner] Add support for Adobe Pass authentication
  3728. version 2016.09.19
  3729. Extractors
  3730. + [crunchyroll] Check if already authenticated (#10700)
  3731. - [twitch:stream] Remove fallback to profile extraction when stream is offline
  3732. * [thisav] Improve title extraction (#10682)
  3733. * [vyborymos] Improve station info extraction
  3734. version 2016.09.18
  3735. Core
  3736. + Introduce manifest_url and fragments fields in formats dictionary for
  3737. fragmented media
  3738. + Provide manifest_url field for DASH segments, HLS and HDS
  3739. + Provide fragments field for DASH segments
  3740. * Rework DASH segments downloader to use fragments field
  3741. + Add helper method for Wowza Streaming Engine formats extraction
  3742. Extractors
  3743. + [vyborymos] Add extractor for vybory.mos.ru (#10692)
  3744. + [xfileshare] Add title regular expression for streamin.to (#10646)
  3745. + [globo:article] Add support for multiple videos (#10653)
  3746. + [thisav] Recognize HTML5 videos (#10447)
  3747. * [jwplatform] Improve JWPlayer detection
  3748. + [mangomolo] Add support for Mangomolo embeds
  3749. + [toutv] Add support for authentication (#10669)
  3750. * [franceinter] Fix upload date extraction
  3751. * [tv4] Fix HLS and HDS formats extraction (#10659)
  3752. version 2016.09.15
  3753. Core
  3754. * Improve _hidden_inputs
  3755. + Introduce improved explicit Adobe Pass support
  3756. + Add --ap-mso to provide multiple-system operator identifier
  3757. + Add --ap-username to provide MSO account username
  3758. + Add --ap-password to provide MSO account password
  3759. + Add --ap-list-mso to list all supported MSOs
  3760. + Add support for Rogers Cable multiple-system operator (#10606)
  3761. Extractors
  3762. * [crunchyroll] Fix authentication (#10655)
  3763. * [twitch] Fix API calls (#10654, #10660)
  3764. + [bellmedia] Add support for more Bell Media Television sites
  3765. * [franceinter] Fix extraction (#10538, #2105)
  3766. * [kuwo] Improve error detection (#10650)
  3767. + [go] Add support for free full episodes (#10439)
  3768. * [bilibili] Fix extraction for specific videos (#10647)
  3769. * [nhk] Fix extraction (#10633)
  3770. * [kaltura] Improve audio detection
  3771. * [kaltura] Skip chun format
  3772. + [vimeo:ondemand] Pass Referer along with embed URL (#10624)
  3773. + [nbc] Add support for NBC Olympics (#10361)
  3774. version 2016.09.11.1
  3775. Extractors
  3776. + [tube8] Extract categories and tags (#10579)
  3777. + [pornhub] Extract categories and tags (#10499)
  3778. * [openload] Temporary fix (#10408)
  3779. + [foxnews] Add support Fox News articles (#10598)
  3780. * [viafree] Improve video id extraction (#10615)
  3781. * [iwara] Fix extraction after relaunch (#10462, #3215)
  3782. + [tfo] Add extractor for tfo.org
  3783. * [lrt] Fix audio extraction (#10566)
  3784. * [9now] Fix extraction (#10561)
  3785. + [canalplus] Add support for c8.fr (#10577)
  3786. * [newgrounds] Fix uploader extraction (#10584)
  3787. + [polskieradio:category] Add support for category lists (#10576)
  3788. + [ketnet] Add extractor for ketnet.be (#10343)
  3789. + [canvas] Add support for een.be (#10605)
  3790. + [telequebec] Add extractor for telequebec.tv (#1999)
  3791. * [parliamentliveuk] Fix extraction (#9137)
  3792. version 2016.09.08
  3793. Extractors
  3794. + [jwplatform] Extract height from format label
  3795. + [yahoo] Extract Brightcove Legacy Studio embeds (#9345)
  3796. * [videomore] Fix extraction (#10592)
  3797. * [foxgay] Fix extraction (#10480)
  3798. + [rmcdecouverte] Add extractor for rmcdecouverte.bfmtv.com (#9709)
  3799. * [gamestar] Fix metadata extraction (#10479)
  3800. * [puls4] Fix extraction (#10583)
  3801. + [cctv] Add extractor for CCTV and CNTV (#8153)
  3802. + [lci] Add extractor for lci.fr (#10573)
  3803. + [wat] Extract DASH formats
  3804. + [viafree] Improve video id detection (#10569)
  3805. + [trutv] Add extractor for trutv.com (#10519)
  3806. + [nick] Add support for nickelodeon.nl (#10559)
  3807. + [abcotvs:clips] Add support for clips.abcotvs.com
  3808. + [abcotvs] Add support for ABC Owned Television Stations sites (#9551)
  3809. + [miaopai] Add extractor for miaopai.com (#10556)
  3810. * [gamestar] Fix metadata extraction (#10479)
  3811. + [bilibili] Add support for episodes (#10190)
  3812. + [tvnoe] Add extractor for tvnoe.cz (#10524)
  3813. version 2016.09.04.1
  3814. Core
  3815. * In DASH downloader if the first segment fails, abort the whole download
  3816. process to prevent throttling (#10497)
  3817. + Add support for --skip-unavailable-fragments and --fragment retries in
  3818. hlsnative downloader (#10165, #10448).
  3819. + Add support for --skip-unavailable-fragments in DASH downloader
  3820. + Introduce --skip-unavailable-fragments option for fragment based downloaders
  3821. that allows to skip fragments unavailable due to a HTTP error
  3822. * Fix extraction of video/audio entries with src attribute in
  3823. _parse_html5_media_entries (#10540)
  3824. Extractors
  3825. * [theplatform] Relax URL regular expression (#10546)
  3826. * [youtube:playlist] Extend URL regular expression
  3827. * [rottentomatoes] Delegate extraction to internetvideoarchive extractor
  3828. * [internetvideoarchive] Extract all formats
  3829. * [pornvoisines] Fix extraction (#10469)
  3830. * [rottentomatoes] Fix extraction (#10467)
  3831. * [espn] Extend URL regular expression (#10549)
  3832. * [vimple] Extend URL regular expression (#10547)
  3833. * [youtube:watchlater] Fix extraction (#10544)
  3834. * [youjizz] Fix extraction (#10437)
  3835. + [foxnews] Add support for FoxNews Insider (#10445)
  3836. + [fc2] Recognize Flash player URLs (#10512)
  3837. version 2016.09.03
  3838. Core
  3839. * Restore usage of NAME attribute from EXT-X-MEDIA tag for formats codes in
  3840. _extract_m3u8_formats (#10522)
  3841. * Handle semicolon in mimetype2ext
  3842. Extractors
  3843. + [youtube] Add support for rental videos' previews (#10532)
  3844. * [youtube:playlist] Fallback to video extraction for video/playlist URLs when
  3845. no playlist is actually served (#10537)
  3846. + [drtv] Add support for dr.dk/nyheder (#10536)
  3847. + [facebook:plugins:video] Add extractor (#10530)
  3848. + [go] Add extractor for *.go.com sites
  3849. * [adobepass] Check for authz_token expiration (#10527)
  3850. * [nytimes] improve extraction
  3851. * [thestar] Fix extraction (#10465)
  3852. * [glide] Fix extraction (#10478)
  3853. - [exfm] Remove extractor (#10482)
  3854. * [youporn] Fix categories and tags extraction (#10521)
  3855. + [curiositystream] Add extractor for app.curiositystream.com
  3856. - [thvideo] Remove extractor (#10464)
  3857. * [movingimage] Fix for the new site name (#10466)
  3858. + [cbs] Add support for once formats (#10515)
  3859. * [limelight] Skip ism snd duplicate manifests
  3860. + [porncom] Extract categories and tags (#10510)
  3861. + [facebook] Extract timestamp (#10508)
  3862. + [yahoo] Extract more formats
  3863. version 2016.08.31
  3864. Extractors
  3865. * [soundcloud] Fix URL regular expression to avoid clashes with sets (#10505)
  3866. * [bandcamp:album] Fix title extraction (#10455)
  3867. * [pyvideo] Fix extraction (#10468)
  3868. + [ctv] Add support for tsn.ca, bnn.ca and thecomedynetwork.ca (#10016)
  3869. * [9c9media] Extract more metadata
  3870. * [9c9media] Fix multiple stacks extraction (#10016)
  3871. * [adultswim] Improve video info extraction (#10492)
  3872. * [vodplatform] Improve embed regular expression
  3873. - [played] Remove extractor (#10470)
  3874. + [tbs] Add extractor for tbs.com and tntdrama.com (#10222)
  3875. + [cartoonnetwork] Add extractor for cartoonnetwork.com (#10110)
  3876. * [adultswim] Rework in terms of turner extractor
  3877. * [cnn] Rework in terms of turner extractor
  3878. * [nba] Rework in terms of turner extractor
  3879. + [turner] Add base extractor for Turner Broadcasting System based sites
  3880. * [bilibili] Fix extraction (#10375)
  3881. * [openload] Fix extraction (#10408)
  3882. version 2016.08.28
  3883. Core
  3884. + Add warning message that ffmpeg doesn't support SOCKS
  3885. * Improve thumbnail sorting
  3886. + Extract formats from #EXT-X-MEDIA tags in _extract_m3u8_formats
  3887. * Fill IV with leading zeros for IVs shorter than 16 octets in hlsnative
  3888. + Add ac-3 to the list of audio codecs in parse_codecs
  3889. Extractors
  3890. * [periscope:user] Fix extraction (#10453)
  3891. * [douyutv] Fix extraction (#10153, #10318, #10444)
  3892. + [nhk:vod] Add extractor for www3.nhk.or.jp on demand (#4437, #10424)
  3893. - [trutube] Remove extractor (#10438)
  3894. + [usanetwork] Add extractor for usanetwork.com
  3895. * [crackle] Fix extraction (#10333)
  3896. * [spankbang] Fix description and uploader extraction (#10339)
  3897. * [discoverygo] Detect cable provider restricted videos (#10425)
  3898. + [cbc] Add support for watch.cbc.ca
  3899. * [kickstarter] Silent the warning for og:description (#10415)
  3900. * [mtvservices:embedded] Fix extraction for the new 'edge' player (#10363)
  3901. version 2016.08.24.1
  3902. Extractors
  3903. + [pluralsight] Add support for subtitles (#9681)
  3904. version 2016.08.24
  3905. Extractors
  3906. * [youtube] Fix authentication (#10392)
  3907. * [openload] Fix extraction (#10408)
  3908. + [bravotv] Add support for Adobe Pass (#10407)
  3909. * [bravotv] Fix clip info extraction (#10407)
  3910. * [eagleplatform] Improve embedded videos detection (#10409)
  3911. * [awaan] Fix extraction
  3912. * [mtvservices:embedded] Update config URL
  3913. + [abc:iview] Add extractor (#6148)
  3914. version 2016.08.22
  3915. Core
  3916. * Improve formats and subtitles extension auto calculation
  3917. + Recognize full unit names in parse_filesize
  3918. + Add support for m3u8 manifests in HTML5 multimedia tags
  3919. * Fix octal/hexadecimal number detection in js_to_json
  3920. Extractors
  3921. + [ivi] Add support for 720p and 1080p
  3922. + [charlierose] Add new extractor (#10382)
  3923. * [1tv] Fix extraction (#9249)
  3924. * [twitch] Renew authentication
  3925. * [kaltura] Improve subtitles extension calculation
  3926. + [zingmp3] Add support for video clips
  3927. * [zingmp3] Fix extraction (#10041)
  3928. * [kaltura] Improve subtitles extraction (#10279)
  3929. * [cultureunplugged] Fix extraction (#10330)
  3930. + [cnn] Add support for money.cnn.com (#2797)
  3931. * [cbsnews] Fix extraction (#10362)
  3932. * [cbs] Fix extraction (#10393)
  3933. + [litv] Support 'promo' URLs (#10385)
  3934. * [snotr] Fix extraction (#10338)
  3935. * [n-tv.de] Fix extraction (#10331)
  3936. * [globo:article] Relax URL and video id regular expressions (#10379)
  3937. version 2016.08.19
  3938. Core
  3939. - Remove output template description from --help
  3940. * Recognize lowercase units in parse_filesize
  3941. Extractors
  3942. + [porncom] Add extractor for porn.com (#2251, #10251)
  3943. + [generic] Add support for DBTV embeds
  3944. * [vk:wallpost] Fix audio extraction for new site layout
  3945. * [vk] Fix authentication
  3946. + [hgtvcom:show] Add extractor for hgtv.com shows (#10365)
  3947. + [discoverygo] Add support for another GO network sites
  3948. version 2016.08.17
  3949. Core
  3950. + Add _get_netrc_login_info
  3951. Extractors
  3952. * [mofosex] Extract all formats (#10335)
  3953. + [generic] Add support for vbox7 embeds
  3954. + [vbox7] Add support for embed URLs
  3955. + [viafree] Add extractor (#10358)
  3956. + [mtg] Add support for viafree URLs (#10358)
  3957. * [theplatform] Extract all subtitles per language
  3958. + [xvideos] Fix HLS extraction (#10356)
  3959. + [amcnetworks] Add extractor
  3960. + [bbc:playlist] Add support for pagination (#10349)
  3961. + [fxnetworks] Add extractor (#9462)
  3962. * [cbslocal] Fix extraction for SendtoNews-based videos
  3963. * [sendtonews] Fix extraction
  3964. * [jwplatform] Extract video id from JWPlayer data
  3965. - [zippcast] Remove extractor (#10332)
  3966. + [viceland] Add extractor (#8799)
  3967. + [adobepass] Add base extractor for Adobe Pass Authentication
  3968. * [life:embed] Improve extraction
  3969. * [vgtv] Detect geo restricted videos (#10348)
  3970. + [uplynk] Add extractor
  3971. * [xiami] Fix extraction (#10342)
  3972. version 2016.08.13
  3973. Core
  3974. * Show progress for curl external downloader
  3975. * Forward more options to curl external downloader
  3976. Extractors
  3977. * [pbs] Fix description extraction
  3978. * [franceculture] Fix extraction (#10324)
  3979. * [pornotube] Fix extraction (#10322)
  3980. * [4tube] Fix metadata extraction (#10321)
  3981. * [imgur] Fix width and height extraction (#10325)
  3982. * [expotv] Improve extraction
  3983. + [vbox7] Fix extraction (#10309)
  3984. - [tapely] Remove extractor (#10323)
  3985. * [muenchentv] Fix extraction (#10313)
  3986. + [24video] Add support for .me and .xxx TLDs
  3987. * [24video] Fix comment count extraction
  3988. * [sunporno] Add support for embed URLs
  3989. * [sunporno] Fix metadata extraction (#10316)
  3990. + [hgtv] Add extractor for hgtv.ca (#3999)
  3991. - [pbs] Remove request to unavailable API
  3992. + [pbs] Add support for high quality HTTP formats
  3993. + [crunchyroll] Add support for HLS formats (#10301)
  3994. version 2016.08.12
  3995. Core
  3996. * Subtitles are now written as is. Newline conversions are disabled. (#10268)
  3997. + Recognize more formats in unified_timestamp
  3998. Extractors
  3999. - [goldenmoustache] Remove extractor (#10298)
  4000. * [drtuber] Improve title extraction
  4001. * [drtuber] Make dislike count optional (#10297)
  4002. * [chirbit] Fix extraction (#10296)
  4003. * [francetvinfo] Relax URL regular expression
  4004. * [rtlnl] Relax URL regular expression (#10282)
  4005. * [formula1] Relax URL regular expression (#10283)
  4006. * [wat] Improve extraction (#10281)
  4007. * [ctsnews] Fix extraction
  4008. version 2016.08.10
  4009. Core
  4010. * Make --metadata-from-title non fatal when title does not match the pattern
  4011. * Introduce options for randomized sleep before each download
  4012. --min-sleep-interval and --max-sleep-interval (#9930)
  4013. * Respect default in _search_json_ld
  4014. Extractors
  4015. + [uol] Add extractor for uol.com.br (#4263)
  4016. * [rbmaradio] Fix extraction and extract all formats (#10242)
  4017. + [sonyliv] Add extractor for sonyliv.com (#10258)
  4018. * [aparat] Fix extraction
  4019. * [cwtv] Extract HTTP formats
  4020. + [rozhlas] Add extractor for prehravac.rozhlas.cz (#10253)
  4021. * [kuwo:singer] Fix extraction
  4022. version 2016.08.07
  4023. Core
  4024. + Add support for TV Parental Guidelines ratings in parse_age_limit
  4025. + Add decode_png (#9706)
  4026. + Add support for partOfTVSeries in JSON-LD
  4027. * Lower master M3U8 manifest preference for better format sorting
  4028. Extractors
  4029. + [discoverygo] Add extractor (#10245)
  4030. * [flipagram] Make JSON-LD extraction non fatal
  4031. * [generic] Make JSON-LD extraction non fatal
  4032. + [bbc] Add support for morph embeds (#10239)
  4033. * [tnaflixnetworkbase] Improve title extraction
  4034. * [tnaflix] Fix metadata extraction (#10249)
  4035. * [fox] Fix theplatform release URL query
  4036. * [openload] Fix extraction (#9706)
  4037. * [bbc] Skip duplicate manifest URLs
  4038. * [bbc] Improve format code
  4039. + [bbc] Add support for DASH and F4M
  4040. * [bbc] Improve format sorting and listing
  4041. * [bbc] Improve playlist extraction
  4042. + [pokemon] Add extractor (#10093)
  4043. + [condenast] Add fallback scenario for video info extraction
  4044. version 2016.08.06
  4045. Core
  4046. * Add support for JSON-LD root list entries (#10203)
  4047. * Improve unified_timestamp
  4048. * Lower preference of RTSP formats in generic sorting
  4049. + Add support for multiple properties in _og_search_property
  4050. * Improve password hiding from verbose output
  4051. Extractors
  4052. + [adultswim] Add support for trailers (#10235)
  4053. * [archiveorg] Improve extraction (#10219)
  4054. + [jwplatform] Add support for playlists
  4055. + [jwplatform] Add support for relative URLs
  4056. * [jwplatform] Improve audio detection
  4057. + [tvplay] Capture and output native error message
  4058. + [tvplay] Extract series metadata
  4059. + [tvplay] Add support for subtitles (#10194)
  4060. * [tvp] Improve extraction (#7799)
  4061. * [cbslocal] Fix timestamp parsing (#10213)
  4062. + [naver] Add support for subtitles (#8096)
  4063. * [naver] Improve extraction
  4064. * [condenast] Improve extraction
  4065. * [engadget] Relax URL regular expression
  4066. * [5min] Fix extraction
  4067. + [nationalgeographic] Add support for Episode Guide
  4068. + [kaltura] Add support for subtitles
  4069. * [kaltura] Optimize network requests
  4070. + [vodplatform] Add extractor for vod-platform.net
  4071. - [gamekings] Remove extractor
  4072. * [limelight] Extract HTTP formats
  4073. * [ntvru] Fix extraction
  4074. + [comedycentral] Re-add :tds and :thedailyshow shortnames
  4075. version 2016.08.01
  4076. Fixed/improved extractors
  4077. - [yandexmusic:track] Adapt to changes in track location JSON (#10193)
  4078. - [bloomberg] Support another form of player (#10187)
  4079. - [limelight] Skip DRM protected videos
  4080. - [safari] Relax regular expressions for URL matching (#10202)
  4081. - [cwtv] Add support for cwtvpr.com (#10196)
  4082. version 2016.07.30
  4083. Fixed/improved extractors
  4084. - [twitch:clips] Sort formats
  4085. - [tv2] Use m3u8_native
  4086. - [tv2:article] Fix video detection (#10188)
  4087. - rtve (#10076)
  4088. - [dailymotion:playlist] Optimize download archive processing (#10180)
  4089. version 2016.07.28
  4090. Fixed/improved extractors
  4091. - shared (#10170)
  4092. - soundcloud (#10179)
  4093. - twitch (#9767)
  4094. version 2016.07.26.2
  4095. Fixed/improved extractors
  4096. - smotri
  4097. - camdemy
  4098. - mtv
  4099. - comedycentral
  4100. - cmt
  4101. - cbc
  4102. - mgtv
  4103. - orf
  4104. version 2016.07.24
  4105. New extractors
  4106. - arkena (#8682)
  4107. - lcp (#8682)
  4108. Fixed/improved extractors
  4109. - facebook (#10151)
  4110. - dailymail
  4111. - telegraaf
  4112. - dcn
  4113. - onet
  4114. - tvp
  4115. Miscellaneous
  4116. - Support $Time$ in DASH manifests
  4117. version 2016.07.22
  4118. New extractors
  4119. - odatv (#9285)
  4120. Fixed/improved extractors
  4121. - bbc
  4122. - youjizz (#10131)
  4123. - youtube (#10140)
  4124. - pornhub (#10138)
  4125. - eporner (#10139)
  4126. version 2016.07.17
  4127. New extractors
  4128. - nintendo (#9986)
  4129. - streamable (#9122)
  4130. Fixed/improved extractors
  4131. - ard (#10095)
  4132. - mtv
  4133. - comedycentral (#10101)
  4134. - viki (#10098)
  4135. - spike (#10106)
  4136. Miscellaneous
  4137. - Improved twitter player detection (#10090)
  4138. version 2016.07.16
  4139. New extractors
  4140. - ninenow (#5181)
  4141. Fixed/improved extractors
  4142. - rtve (#10076)
  4143. - brightcove
  4144. - 3qsdn
  4145. - syfy (#9087, #3820, #2388)
  4146. - youtube (#10083)
  4147. Miscellaneous
  4148. - Fix subtitle embedding for video-only and audio-only files (#10081)
  4149. version 2016.07.13
  4150. New extractors
  4151. - rudo
  4152. Fixed/improved extractors
  4153. - biobiochiletv
  4154. - tvplay
  4155. - dbtv
  4156. - brightcove
  4157. - tmz
  4158. - youtube (#10059)
  4159. - shahid (#10062)
  4160. - vk
  4161. - ellentv (#10067)
  4162. version 2016.07.11
  4163. New Extractors
  4164. - roosterteeth (#9864)
  4165. Fixed/improved extractors
  4166. - miomio (#9605)
  4167. - vuclip
  4168. - youtube
  4169. - vidzi (#10058)
  4170. version 2016.07.09.2
  4171. Fixed/improved extractors
  4172. - vimeo (#1638)
  4173. - facebook (#10048)
  4174. - lynda (#10047)
  4175. - animeondemand
  4176. Fixed/improved features
  4177. - Embedding subtitles no longer throws an error with problematic inputs (#9063)
  4178. version 2016.07.09.1
  4179. Fixed/improved extractors
  4180. - youtube
  4181. - ard
  4182. - srmediatek (#9373)
  4183. version 2016.07.09
  4184. New extractors
  4185. - Flipagram (#9898)
  4186. Fixed/improved extractors
  4187. - telecinco
  4188. - toutv
  4189. - radiocanada
  4190. - tweakers (#9516)
  4191. - lynda
  4192. - nick (#7542)
  4193. - polskieradio (#10028)
  4194. - le
  4195. - facebook (#9851)
  4196. - mgtv
  4197. - animeondemand (#10031)
  4198. Fixed/improved features
  4199. - `--postprocessor-args` and `--downloader-args` now accepts non-ASCII inputs
  4200. on non-Windows systems
  4201. version 2016.07.07
  4202. New extractors
  4203. - kamcord (#10001)
  4204. Fixed/improved extractors
  4205. - spiegel (#10018)
  4206. - metacafe (#8539, #3253)
  4207. - onet (#9950)
  4208. - francetv (#9955)
  4209. - brightcove (#9965)
  4210. - daum (#9972)
  4211. version 2016.07.06
  4212. Fixed/improved extractors
  4213. - youtube (#10007, #10009)
  4214. - xuite
  4215. - stitcher
  4216. - spiegel
  4217. - slideshare
  4218. - sandia
  4219. - rtvnh
  4220. - prosiebensat1
  4221. - onionstudios
  4222. version 2016.07.05
  4223. Fixed/improved extractors
  4224. - brightcove
  4225. - yahoo (#9995)
  4226. - pornhub (#9997)
  4227. - iqiyi
  4228. - kaltura (#5557)
  4229. - la7
  4230. - Changed features
  4231. - Rename --cn-verfication-proxy to --geo-verification-proxy
  4232. Miscellaneous
  4233. - Add script for displaying downloads statistics
  4234. version 2016.07.03.1
  4235. Fixed/improved extractors
  4236. - theplatform
  4237. - aenetworks
  4238. - nationalgeographic
  4239. - hrti (#9482)
  4240. - facebook (#5701)
  4241. - buzzfeed (#5701)
  4242. - rai (#8617, #9157, #9232, #8552, #8551)
  4243. - nationalgeographic (#9991)
  4244. - iqiyi
  4245. version 2016.07.03
  4246. New extractors
  4247. - hrti (#9482)
  4248. Fixed/improved extractors
  4249. - vk (#9981)
  4250. - facebook (#9938)
  4251. - xtube (#9953, #9961)
  4252. version 2016.07.02
  4253. New extractors
  4254. - fusion (#9958)
  4255. Fixed/improved extractors
  4256. - twitch (#9975)
  4257. - vine (#9970)
  4258. - periscope (#9967)
  4259. - pornhub (#8696)
  4260. version 2016.07.01
  4261. New extractors
  4262. - 9c9media
  4263. - ctvnews (#2156)
  4264. - ctv (#4077)
  4265. Fixed/Improved extractors
  4266. - rds
  4267. - meta (#8789)
  4268. - pornhub (#9964)
  4269. - sixplay (#2183)
  4270. New features
  4271. - Accept quoted strings across multiple lines (#9940)