ChangeLog 169 KB

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