ChangeLog 136 KB

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