ChangeLog 135 KB

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