ChangeLog 123 KB

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