ChangeLog 170 KB

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