ChangeLog 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634
  1. version <unreleased>
  2. Extractors
  3. + [facebook] Support thumbnails (#14416)
  4. version 2017.10.07
  5. Core
  6. * [YoutubeDL] Ignore duplicates in --playlist-items
  7. * [YoutubeDL] Fix out of range --playlist-items for iterable playlists and
  8. reduce code duplication (#14425)
  9. + [utils] Use cache in OnDemandPagedList by default
  10. * [postprocessor/ffmpeg] Convert to opus using libopus (#14381)
  11. Extractors
  12. * [reddit] Sort formats (#14430)
  13. * [lnkgo] Relax URL regular expression (#14423)
  14. * [pornflip] Extend URL regular expression (#14405, #14406)
  15. + [xtube] Add support for embed URLs (#14417)
  16. + [xvideos] Add support for embed URLs and improve extraction (#14409)
  17. * [beeg] Fix extraction (#14403)
  18. * [tvn24] Relax URL regular expression (#14395)
  19. * [nbc] Fix extraction (#13651, #13715, #14137, #14198, #14312, #14314, #14378,
  20. #14392, #14414, #14419, #14431)
  21. + [ketnet] Add support for videos without direct sources (#14377)
  22. * [canvas] Generalize mediazone.vrt.be extractor and rework canvas and een
  23. + [afreecatv] Add support for adult videos (#14376)
  24. version 2017.10.01
  25. Core
  26. * [YoutubeDL] Document youtube_include_dash_manifest
  27. Extractors
  28. + [tvp] Add support for new URL schema (#14368)
  29. + [generic] Add support for single format Video.js embeds (#14371)
  30. * [yahoo] Bypass geo restriction for brightcove (#14210)
  31. * [yahoo] Use extracted brightcove account id (#14210)
  32. * [rtve:alacarta] Fix extraction (#14290)
  33. + [yahoo] Add support for custom brigthcove embeds (#14210)
  34. + [generic] Add support for Video.js embeds
  35. + [gfycat] Add support for /gifs/detail URLs (#14322)
  36. * [generic] Fix infinite recursion for twitter:player URLs (#14339)
  37. * [xhamsterembed] Fix extraction (#14308)
  38. version 2017.09.24
  39. Core
  40. + [options] Accept lrc as a subtitle conversion target format (#14292)
  41. * [utils] Fix handling raw TTML subtitles (#14191)
  42. Extractors
  43. * [24video] Fix timestamp extraction and make non fatal (#14295)
  44. + [24video] Add support for 24video.adult (#14295)
  45. + [kakao] Add support for tv.kakao.com (#12298, #14007)
  46. + [twitter] Add support for URLs without user id (#14270)
  47. + [americastestkitchen] Add support for americastestkitchen.com (#10764,
  48. #13996)
  49. * [generic] Fix support for multiple HTML5 videos on one page (#14080)
  50. * [mixcloud] Fix extraction (#14088, #14132)
  51. + [lynda] Add support for educourse.ga (#14286)
  52. * [beeg] Fix extraction (#14275)
  53. * [nbcsports:vplayer] Correct theplatform URL (#13873)
  54. * [twitter] Fix duration extraction (#14141)
  55. * [tvplay] Bypass geo restriction
  56. + [heise] Add support for YouTube embeds (#14109)
  57. + [popcorntv] Add support for popcorntv.it (#5914, #14211)
  58. * [viki] Update app data (#14181)
  59. * [morningstar] Relax URL regular expression (#14222)
  60. * [openload] Fix extraction (#14225, #14257)
  61. * [noovo] Fix extraction (#14214)
  62. * [dailymotion:playlist] Relax URL regular expression (#14219)
  63. + [twitch] Add support for go.twitch.tv URLs (#14215)
  64. * [vgtv] Relax URL regular expression (#14223)
  65. version 2017.09.15
  66. Core
  67. * [downloader/fragment] Restart inconsistent incomplete fragment downloads
  68. (#13731)
  69. * [YoutubeDL] Download raw subtitles files (#12909, #14191)
  70. Extractors
  71. * [condenast] Fix extraction (#14196, #14207)
  72. + [orf] Add support for f4m stories
  73. * [tv4] Relax URL regular expression (#14206)
  74. * [animeondemand] Bypass geo restriction
  75. + [animeondemand] Add support for flash videos (#9944)
  76. version 2017.09.11
  77. Extractors
  78. * [rutube:playlist] Fix suitable (#14166)
  79. version 2017.09.10
  80. Core
  81. + [utils] Introduce bool_or_none
  82. * [YoutubeDL] Ensure dir existence for each requested format (#14116)
  83. Extractors
  84. * [fox] Fix extraction (#14147)
  85. * [rutube] Use bool_or_none
  86. * [rutube] Rework and generalize playlist extractors (#13565)
  87. + [rutube:playlist] Add support for playlists (#13534, #13565)
  88. + [radiocanada] Add fallback for title extraction (#14145)
  89. * [vk] Use dedicated YouTube embeds extraction routine
  90. * [vice] Use dedicated YouTube embeds extraction routine
  91. * [cracked] Use dedicated YouTube embeds extraction routine
  92. * [chilloutzone] Use dedicated YouTube embeds extraction routine
  93. * [abcnews] Use dedicated YouTube embeds extraction routine
  94. * [youtube] Separate methods for embeds extraction
  95. * [redtube] Fix formats extraction (#14122)
  96. * [arte] Relax unavailability check (#14112)
  97. + [manyvids] Add support for preview videos from manyvids.com (#14053, #14059)
  98. * [vidme:user] Relax URL regular expression (#14054)
  99. * [bpb] Fix extraction (#14043, #14086)
  100. * [soundcloud] Fix download URL with private tracks (#14093)
  101. * [aliexpress:live] Add support for live.aliexpress.com (#13698, #13707)
  102. * [viidea] Capture and output lecture error message (#14099)
  103. * [radiocanada] Skip unsupported platforms (#14100)
  104. version 2017.09.02
  105. Extractors
  106. * [youtube] Force old layout for each webpage (#14068, #14072, #14074, #14076,
  107. #14077, #14079, #14082, #14083, #14094, #14095, #14096)
  108. * [youtube] Fix upload date extraction (#14065)
  109. + [charlierose] Add support for episodes (#14062)
  110. + [bbccouk] Add support for w-prefixed ids (#14056)
  111. * [googledrive] Extend URL regular expression (#9785)
  112. + [googledrive] Add support for source format (#14046)
  113. * [pornhd] Fix extraction (#14005)
  114. version 2017.08.27.1
  115. Extractors
  116. * [youtube] Fix extraction with --youtube-skip-dash-manifest enabled (#14037)
  117. version 2017.08.27
  118. Core
  119. + [extractor/common] Extract height and format id for HTML5 videos (#14034)
  120. * [downloader/http] Rework HTTP downloader (#506, #809, #2849, #4240, #6023,
  121. #8625, #9483)
  122. * Simplify code and split into separate routines to facilitate maintaining
  123. * Make retry mechanism work on errors during actual download not only
  124. during connection establishment phase
  125. * Retry on ECONNRESET and ETIMEDOUT during reading data from network
  126. * Retry on content too short
  127. * Show error description on retry
  128. Extractors
  129. * [generic] Lower preference for extraction from LD-JSON
  130. * [rai] Fix audio formats extraction (#14024)
  131. * [youtube] Fix controversy videos extraction (#14027, #14029)
  132. * [mixcloud] Fix extraction (#14015, #14020)
  133. version 2017.08.23
  134. Core
  135. + [extractor/common] Introduce _parse_xml
  136. * [extractor/common] Make HLS and DASH extraction in_parse_html5_media_entries
  137. non fatal (#13970)
  138. * [utils] Fix unescapeHTML for misformed string like "&a&quot;" (#13935)
  139. Extractors
  140. * [cbc:watch] Bypass geo restriction (#13993)
  141. * [toutv] Relax DRM check (#13994)
  142. + [googledrive] Add support for subtitles (#13619, #13638)
  143. * [pornhub] Relax uploader regular expression (#13906, #13975)
  144. * [bandcamp:album] Extract track titles (#13962)
  145. + [bbccouk] Add support for events URLs (#13893)
  146. + [liveleak] Support multi-video pages (#6542)
  147. + [liveleak] Support another liveleak embedding pattern (#13336)
  148. * [cda] Fix extraction (#13935)
  149. + [laola1tv] Add support for tv.ittf.com (#13965)
  150. * [mixcloud] Fix extraction (#13958, #13974, #13980, #14003)
  151. version 2017.08.18
  152. Core
  153. * [YoutubeDL] Sanitize byte string format URLs (#13951)
  154. + [extractor/common] Add support for float durations in _parse_mpd_formats
  155. (#13919)
  156. Extractors
  157. * [arte] Detect unavailable videos (#13945)
  158. * [generic] Convert redirect URLs to unicode strings (#13951)
  159. * [udemy] Fix paid course detection (#13943)
  160. * [pluralsight] Use RPC API for course extraction (#13937)
  161. + [clippit] Add support for clippituser.tv
  162. + [qqmusic] Support new URL schemes (#13805)
  163. * [periscope] Renew HLS extraction (#13917)
  164. * [mixcloud] Extract decrypt key
  165. version 2017.08.13
  166. Core
  167. * [YoutubeDL] Make sure format id is not empty
  168. * [extractor/common] Make _family_friendly_search optional
  169. * [extractor/common] Respect source's type attribute for HTML5 media (#13892)
  170. Extractors
  171. * [pornhub:playlistbase] Skip videos from drop-down menu (#12819, #13902)
  172. + [fourtube] Add support pornerbros.com (#6022)
  173. + [fourtube] Add support porntube.com (#7859, #13901)
  174. + [fourtube] Add support fux.com
  175. * [limelight] Improve embeds detection (#13895)
  176. + [reddit] Add support for v.redd.it and reddit.com (#13847)
  177. * [aparat] Extract all formats (#13887)
  178. * [mixcloud] Fix play info decryption (#13885)
  179. + [generic] Add support for vzaar embeds (#13876)
  180. version 2017.08.09
  181. Core
  182. * [utils] Skip missing params in cli_bool_option (#13865)
  183. Extractors
  184. * [xxxymovies] Fix title extraction (#13868)
  185. + [nick] Add support for nick.com.pl (#13860)
  186. * [mixcloud] Fix play info decryption (#13867)
  187. * [20min] Fix embeds extraction (#13852)
  188. * [dplayit] Fix extraction (#13851)
  189. + [niconico] Support videos with multiple formats (#13522)
  190. + [niconico] Support HTML5-only videos (#13806)
  191. version 2017.08.06
  192. Core
  193. * Use relative paths for DASH fragments (#12990)
  194. Extractors
  195. * [pluralsight] Fix format selection
  196. - [mpora] Remove extractor (#13826)
  197. + [voot] Add support for voot.com (#10255, #11644, #11814, #12350, #13218)
  198. * [vlive:channel] Limit number of videos per page to 100 (#13830)
  199. * [podomatic] Extend URL regular expression (#13827)
  200. * [cinchcast] Extend URL regular expression
  201. * [yandexdisk] Relax URL regular expression (#13824)
  202. * [vidme] Extract DASH and HLS formats
  203. - [teamfour] Remove extractor (#13782)
  204. * [pornhd] Fix extraction (#13783)
  205. * [udemy] Fix subtitles extraction (#13812)
  206. * [mlb] Extend URL regular expression (#13740, #13773)
  207. + [pbs] Add support for new URL schema (#13801)
  208. * [nrktv] Update API host (#13796)
  209. version 2017.07.30.1
  210. Core
  211. * [downloader/hls] Use redirect URL as manifest base (#13755)
  212. * [options] Correctly hide login info from debug outputs (#13696)
  213. Extractors
  214. + [watchbox] Add support for watchbox.de (#13739)
  215. - [clipfish] Remove extractor
  216. + [youjizz] Fix extraction (#13744)
  217. + [generic] Add support for another ooyala embed pattern (#13727)
  218. + [ard] Add support for lives (#13771)
  219. * [soundcloud] Update client id
  220. + [soundcloud:trackstation] Add support for track stations (#13733)
  221. * [svtplay] Use geo verification proxy for API request
  222. * [svtplay] Update API URL (#13767)
  223. + [yandexdisk] Add support for yadi.sk (#13755)
  224. + [megaphone] Add support for megaphone.fm
  225. * [amcnetworks] Make rating optional (#12453)
  226. * [cloudy] Fix extraction (#13737)
  227. + [nickru] Add support for nickelodeon.ru
  228. * [mtv] Improve thumbnal extraction
  229. * [nick] Automate geo-restriction bypass (#13711)
  230. * [niconico] Improve error reporting (#13696)
  231. version 2017.07.23
  232. Core
  233. * [YoutubeDL] Improve default format specification (#13704)
  234. * [YoutubeDL] Do not override id, extractor and extractor_key for
  235. url_transparent entities
  236. * [extractor/common] Fix playlist_from_matches
  237. Extractors
  238. * [itv] Fix production id extraction (#13671, #13703)
  239. * [vidio] Make duration non fatal and fix typo
  240. * [mtv] Skip missing video parts (#13690)
  241. * [sportbox:embed] Fix extraction
  242. + [npo] Add support for npo3.nl URLs (#13695)
  243. * [dramafever] Remove video id from title (#13699)
  244. + [egghead:lesson] Add support for lessons (#6635)
  245. * [funnyordie] Extract more metadata (#13677)
  246. * [youku:show] Fix playlist extraction (#13248)
  247. + [dispeak] Recognize sevt subdomain (#13276)
  248. * [adn] Improve error reporting (#13663)
  249. * [crunchyroll] Relax series and season regular expression (#13659)
  250. + [spiegel:article] Add support for nexx iframe embeds (#13029)
  251. + [nexx:embed] Add support for iframe embeds
  252. * [nexx] Improve JS embed extraction
  253. + [pearvideo] Add support for pearvideo.com (#13031)
  254. version 2017.07.15
  255. Core
  256. * [YoutubeDL] Don't expand environment variables in meta fields (#13637)
  257. Extractors
  258. * [spiegeltv] Delegate extraction to nexx extractor (#13159)
  259. + [nexx] Add support for nexx.cloud (#10807, #13465)
  260. * [generic] Fix rutube embeds extraction (#13641)
  261. * [karrierevideos] Fix title extraction (#13641)
  262. * [youtube] Don't capture YouTube Red ad for creator meta field (#13621)
  263. * [slideshare] Fix extraction (#13617)
  264. + [5tv] Add another video URL pattern (#13354, #13606)
  265. * [drtv] Make HLS and HDS extraction non fatal
  266. * [ted] Fix subtitles extraction (#13628, #13629)
  267. * [vine] Make sure the title won't be empty
  268. + [twitter] Support HLS streams in vmap URLs
  269. + [periscope] Support pscp.tv URLs in embedded frames
  270. * [twitter] Extract mp4 urls via mobile API (#12726)
  271. * [niconico] Fix authentication error handling (#12486)
  272. * [giantbomb] Extract m3u8 formats (#13626)
  273. + [vlive:playlist] Add support for playlists (#13613)
  274. version 2017.07.09
  275. Core
  276. + [extractor/common] Add support for AMP tags in _parse_html5_media_entries
  277. + [utils] Support attributes with no values in get_elements_by_attribute
  278. Extractors
  279. + [dailymail] Add support for embeds
  280. + [joj] Add support for joj.sk (#13268)
  281. * [abc.net.au:iview] Extract more formats (#13492, #13489)
  282. * [egghead:course] Fix extraction (#6635, #13370)
  283. + [cjsw] Add support for cjsw.com (#13525)
  284. + [eagleplatform] Add support for referrer protected videos (#13557)
  285. + [eagleplatform] Add support for another embed pattern (#13557)
  286. * [veoh] Extend URL regular expression (#13601)
  287. * [npo:live] Fix live stream id extraction (#13568, #13605)
  288. * [googledrive] Fix height extraction (#13603)
  289. + [dailymotion] Add support for new layout (#13580)
  290. - [yam] Remove extractor
  291. * [xhamster] Extract all formats and fix duration extraction (#13593)
  292. + [xhamster] Add support for new URL schema (#13593)
  293. * [espn] Extend URL regular expression (#13244, #13549)
  294. * [kaltura] Fix typo in subtitles extraction (#13569)
  295. * [vier] Adapt extraction to redesign (#13575)
  296. version 2017.07.02
  297. Core
  298. * [extractor/common] Improve _json_ld
  299. Extractors
  300. + [thisoldhouse] Add more fallbacks for video id
  301. * [thisoldhouse] Fix video id extraction (#13540, #13541)
  302. * [xfileshare] Extend format regular expression (#13536)
  303. * [ted] Fix extraction (#13535)
  304. + [tastytrade] Add support for tastytrade.com (#13521)
  305. * [dplayit] Relax video id regular expression (#13524)
  306. + [generic] Extract more generic metadata (#13527)
  307. + [bbccouk] Capture and output error message (#13501, #13518)
  308. * [cbsnews] Relax video info regular expression (#13284, #13503)
  309. + [facebook] Add support for plugin video embeds and multiple embeds (#13493)
  310. * [soundcloud] Switch to https for API requests (#13502)
  311. * [pandatv] Switch to https for API and download URLs
  312. + [pandatv] Add support for https URLs (#13491)
  313. + [niconico] Support sp subdomain (#13494)
  314. version 2017.06.25
  315. Core
  316. + [adobepass] Add support for DIRECTV NOW (mso ATTOTT) (#13472)
  317. * [YoutubeDL] Skip malformed formats for better extraction robustness
  318. Extractors
  319. + [wsj] Add support for barrons.com (#13470)
  320. + [ign] Add another video id pattern (#13328)
  321. + [raiplay:live] Add support for live streams (#13414)
  322. + [redbulltv] Add support for live videos and segments (#13486)
  323. + [onetpl] Add support for videos embedded via pulsembed (#13482)
  324. * [ooyala] Make more robust
  325. * [ooyala] Skip empty format URLs (#13471, #13476)
  326. * [hgtv.com:show] Fix typo
  327. version 2017.06.23
  328. Core
  329. * [adobepass] Fix extraction on older python 2.6
  330. Extractors
  331. * [youtube] Adapt to new automatic captions rendition (#13467)
  332. * [hgtv.com:show] Relax video config regular expression (#13279, #13461)
  333. * [drtuber] Fix formats extraction (#12058)
  334. * [youporn] Fix upload date extraction
  335. * [youporn] Improve formats extraction
  336. * [youporn] Fix title extraction (#13456)
  337. * [googledrive] Fix formats sorting (#13443)
  338. * [watchindianporn] Fix extraction (#13411, #13415)
  339. + [vimeo] Add fallback mp4 extension for original format
  340. + [ruv] Add support for ruv.is (#13396)
  341. * [viu] Fix extraction on older python 2.6
  342. * [pandora.tv] Fix upload_date extraction (#12846)
  343. + [asiancrush] Add support for asiancrush.com (#13420)
  344. version 2017.06.18
  345. Core
  346. * [downloader/common] Use utils.shell_quote for debug command line
  347. * [utils] Use compat_shlex_quote in shell_quote
  348. * [postprocessor/execafterdownload] Encode command line (#13407)
  349. * [compat] Fix compat_shlex_quote on Windows (#5889, #10254)
  350. * [postprocessor/metadatafromtitle] Fix missing optional meta fields processing
  351. in --metadata-from-title (#13408)
  352. * [extractor/common] Fix json dumping with --geo-bypass
  353. + [extractor/common] Improve jwplayer subtitles extraction
  354. + [extractor/common] Improve jwplayer formats extraction (#13379)
  355. Extractors
  356. * [polskieradio] Fix extraction (#13392)
  357. + [xfileshare] Add support for fastvideo.me (#13385)
  358. * [bilibili] Fix extraction of videos with double quotes in titles (#13387)
  359. * [4tube] Fix extraction (#13381, #13382)
  360. + [disney] Add support for disneychannel.de (#13383)
  361. * [npo] Improve URL regular expression (#13376)
  362. + [corus] Add support for showcase.ca
  363. + [corus] Add support for history.ca (#13359)
  364. version 2017.06.12
  365. Core
  366. * [utils] Handle compat_HTMLParseError in extract_attributes (#13349)
  367. + [compat] Introduce compat_HTMLParseError
  368. * [utils] Improve unified_timestamp
  369. * [extractor/generic] Ensure format id is unicode string
  370. * [extractor/common] Return unicode string from _match_id
  371. + [YoutubeDL] Sanitize more fields (#13313)
  372. Extractors
  373. + [xfileshare] Add support for rapidvideo.tv (#13348)
  374. * [xfileshare] Modernize and pass Referer
  375. + [rutv] Add support for testplayer.vgtrk.com (#13347)
  376. + [newgrounds] Extract more metadata (#13232)
  377. + [newgrounds:playlist] Add support for playlists (#10611)
  378. * [newgrounds] Improve formats and uploader extraction (#13346)
  379. * [msn] Fix formats extraction
  380. * [turbo] Ensure format id is string
  381. * [sexu] Ensure height is int
  382. * [jove] Ensure comment count is int
  383. * [golem] Ensure format id is string
  384. * [gfycat] Ensure filesize is int
  385. * [foxgay] Ensure height is int
  386. * [flickr] Ensure format id is string
  387. * [sohu] Fix numeric fields
  388. * [safari] Improve authentication detection (#13319)
  389. * [liveleak] Ensure height is int (#13313)
  390. * [streamango] Make title optional (#13292)
  391. * [rtlnl] Improve URL regular expression (#13295)
  392. * [tvplayer] Fix extraction (#13291)
  393. version 2017.06.05
  394. Core
  395. * [YoutubeDL] Don't emit ANSI escape codes on Windows (#13270)
  396. Extractors
  397. + [bandcamp:weekly] Add support for bandcamp weekly (#12758)
  398. * [pornhub:playlist] Fix extraction (#13281)
  399. - [godtv] Remove extractor (#13175)
  400. * [safari] Fix typo (#13252)
  401. * [youtube] Improve chapters extraction (#13247)
  402. * [1tv] Lower preference for HTTP formats (#13246)
  403. * [francetv] Relax URL regular expression
  404. * [drbonanza] Fix extraction (#13231)
  405. * [packtpub] Fix authentication (#13240)
  406. version 2017.05.29
  407. Extractors
  408. * [youtube] Fix DASH MPD extraction for videos with non-encrypted format URLs
  409. (#13211)
  410. * [xhamster] Fix uploader and like/dislike count extraction (#13216))
  411. + [xhamster] Extract categories (#11728)
  412. + [abcnews] Add support for embed URLs (#12851)
  413. * [gaskrank] Fix extraction (#12493)
  414. * [medialaan] Fix videos with missing videoUrl (#12774)
  415. * [dvtv] Fix playlist support
  416. + [dvtv] Add support for DASH and HLS formats (#3063)
  417. + [beam:vod] Add support for beam.pro/mixer.com VODs (#13032))
  418. * [cbsinteractive] Relax URL regular expression (#13213)
  419. * [adn] Fix formats extraction
  420. + [youku] Extract more metadata (#10433)
  421. * [cbsnews] Fix extraction (#13205)
  422. version 2017.05.26
  423. Core
  424. + [utils] strip_jsonp() can recognize more patterns
  425. * [postprocessor/ffmpeg] Fix metadata filename handling on Python 2 (#13182)
  426. Extractors
  427. + [youtube] DASH MPDs with cipher signatures are recognized now (#11381)
  428. + [bbc] Add support for authentication
  429. * [tudou] Merge into youku extractor (#12214)
  430. * [youku:show] Fix extraction
  431. * [youku] Fix extraction (#13191)
  432. * [udemy] Fix extraction for outputs' format entries without URL (#13192)
  433. * [vimeo] Fix formats' sorting (#13189)
  434. * [cbsnews] Fix extraction for 60 Minutes videos (#12861)
  435. version 2017.05.23
  436. Core
  437. + [downloader/external] Pass -loglevel to ffmpeg downloader (#13183)
  438. + [adobepass] Add support for Bright House Networks (#13149)
  439. Extractors
  440. + [streamcz] Add support for subtitles (#13174)
  441. * [youtube] Fix DASH manifest signature decryption (#8944, #13156)
  442. * [toggle] Relax URL regular expression (#13172)
  443. * [toypics] Fix extraction (#13077)
  444. * [njpwworld] Fix extraction (#13162, #13169)
  445. + [hitbox] Add support for smashcast.tv (#13154)
  446. * [mitele] Update app key regular expression (#13158)
  447. version 2017.05.18.1
  448. Core
  449. * [jsinterp] Fix typo and cleanup regular expressions (#13134)
  450. version 2017.05.18
  451. Core
  452. + [jsinterp] Add support for quoted names and indexers (#13123, #13124, #13125,
  453. #13126, #13128, #13129, #13130, #13131, #13132)
  454. + [extractor/common] Add support for schemeless URLs in _extract_wowza_formats
  455. (#13088, #13092)
  456. + [utils] Recognize more audio codecs (#13081)
  457. Extractors
  458. + [vier] Extract more metadata (#12539)
  459. * [vier] Improve extraction (#12801)
  460. + Add support for authentication
  461. * Bypass authentication when no credentials provided
  462. * Improve extraction robustness
  463. * [dailymail] Fix sources extraction (#13057)
  464. * [dailymotion] Extend URL regular expression (#13079)
  465. version 2017.05.14
  466. Core
  467. + [extractor/common] Respect Width and Height attributes in ISM manifests
  468. + [postprocessor/metadatafromtitle] Add support regular expression syntax for
  469. --metadata-from-title (#13065)
  470. Extractors
  471. + [mediaset] Add support for video.mediaset.it (#12708, #12964)
  472. * [orf:radio] Fix extraction (#11643, #12926)
  473. * [aljazeera] Extend URL regular expression (#13053)
  474. * [imdb] Relax URL regular expression (#13056)
  475. + [francetv] Add support for mobile.france.tv (#13068)
  476. + [upskill] Add support for upskillcourses.com (#13043)
  477. * [thescene] Fix extraction (#13061)
  478. * [condenast] Improve embed support
  479. * [liveleak] Fix extraction (#12053)
  480. + [douyu] Support Douyu shows (#12228)
  481. * [myspace] Improve URL regular expression (#13040)
  482. * [adultswim] Use desktop platform in assets URL (#13041)
  483. version 2017.05.09
  484. Core
  485. * [YoutubeDL] Force --restrict-filenames when no locale is set on all python
  486. versions (#13027)
  487. Extractors
  488. * [francetv] Adapt to site redesign (#13034)
  489. + [packtpub] Add support for authentication (#12622)
  490. * [drtv] Lower preference for SignLanguage formats (#13013, #13016)
  491. + [cspan] Add support for brightcove live embeds (#13028)
  492. * [vrv] Extract DASH formats and subtitles
  493. * [funimation] Fix authentication (#13021)
  494. * [adultswim] Fix extraction (#8640, #10950, #11042, #12121)
  495. + Add support for Adobe Pass authentication
  496. + Add support for live streams
  497. + Add support for show pages
  498. * [turner] Extract thumbnail, is_live and strip description
  499. + [nonktube] Add support for nonktube.com (#8647, #13024)
  500. + [nuevo] Pass headers to _extract_nuevo
  501. * [nbc] Improve extraction (#12364)
  502. version 2017.05.07
  503. Common
  504. * [extractor/common] Fix typo in _extract_akamai_formats
  505. + [postprocessor/ffmpeg] Embed chapters into media file with --add-metadata
  506. + [extractor/common] Introduce chapters meta field
  507. Extractors
  508. * [youtube] Fix authentication (#12820, #12927, #12973, #12992, #12993, #12995,
  509. #13003)
  510. * [bilibili] Fix video downloading (#13001)
  511. * [rmcdecouverte] Fix extraction (#12937)
  512. * [theplatform] Extract chapters
  513. * [bandcamp] Fix thumbnail extraction (#12980)
  514. * [pornhub] Extend URL regular expression (#12996)
  515. + [youtube] Extract chapters
  516. + [nrk] Extract chapters
  517. + [vice] Add support for ooyala embeds in article pages
  518. + [vice] Support vice articles (#12968)
  519. * [vice] Fix extraction for non en_us videos (#12967)
  520. * [gdcvault] Fix extraction for some videos (#12733)
  521. * [pbs] Improve multipart video support (#12981)
  522. * [laola1tv] Fix extraction (#12880)
  523. + [cda] Support birthday verification (#12789)
  524. * [leeco] Fix extraction (#12974)
  525. + [pbs] Extract chapters
  526. * [amp] Imporove thumbnail and subtitles extraction
  527. * [foxsports] Fix extraction (#12945)
  528. - [coub] Remove comment count extraction (#12941)
  529. version 2017.05.01
  530. Core
  531. + [extractor/common] Extract view count from JSON-LD
  532. * [utils] Improve unified_timestamp
  533. + [utils] Add video/mp2t to mimetype2ext
  534. * [downloader/external] Properly handle live stream downloading cancellation
  535. (#8932)
  536. + [utils] Add support for unicode whitespace in clean_html on python 2 (#12906)
  537. Extractors
  538. * [infoq] Make audio format extraction non fatal (#12938)
  539. * [brightcove] Allow whitespace around attribute names in embedded code
  540. + [zaq1] Add support for zaq1.pl (#12693)
  541. + [xvideos] Extract duration (#12828)
  542. * [vevo] Fix extraction (#12879)
  543. + [noovo] Add support for noovo.ca (#12792)
  544. + [washingtonpost] Add support for embeds (#12699)
  545. * [yandexmusic:playlist] Fix extraction for python 3 (#12888)
  546. * [anvato] Improve extraction (#12913)
  547. * Promote to regular shortcut based extractor
  548. * Add mcp to access key mapping table
  549. * Add support for embeds extraction
  550. * Add support for anvato embeds in generic extractor
  551. * [xtube] Fix extraction for older FLV videos (#12734)
  552. * [tvplayer] Fix extraction (#12908)
  553. version 2017.04.28
  554. Core
  555. + [adobepass] Use geo verification headers for all requests
  556. - [downloader/fragment] Remove assert for resume_len when no fragments
  557. downloaded
  558. + [extractor/common] Add manifest_url for explicit group rendition formats
  559. * [extractor/common] Fix manifest_url for m3u8 formats
  560. - [extractor/common] Don't list master m3u8 playlists in format list (#12832)
  561. Extractor
  562. * [aenetworks] Fix extraction for shows with single season
  563. + [go] Add support for Disney, DisneyJunior and DisneyXD show pages
  564. * [youtube] Recognize new locale-based player URLs (#12885)
  565. + [streamable] Add support for new embedded URL schema (#12844)
  566. * [arte:+7] Relax URL regular expression (#12837)
  567. version 2017.04.26
  568. Core
  569. * Introduce --keep-fragments for keeping fragments of fragmented download
  570. on disk after download is finished
  571. * [YoutubeDL] Fix output template for missing timestamp (#12796)
  572. * [socks] Handle cases where credentials are required but missing
  573. * [extractor/common] Improve HLS extraction (#12211)
  574. * Extract m3u8 parsing to separate method
  575. * Improve rendition groups extraction
  576. * Build stream name according stream GROUP-ID
  577. * Ignore reference to AUDIO group without URI when stream has no CODECS
  578. * Use float for scaled tbr in _parse_m3u8_formats
  579. * [utils] Add support for TTML styles in dfxp2srt
  580. * [downloader/hls] No need to download keys for fragments that have been
  581. already downloaded
  582. * [downloader/fragment] Improve fragment downloading
  583. * Resume immediately
  584. * Don't concatenate fragments and decrypt them on every resume
  585. * Optimize disk storage usage, don't store intermediate fragments on disk
  586. * Store bookkeeping download state file
  587. + [extractor/common] Add support for multiple getters in try_get
  588. + [extractor/common] Add support for video of WebPage context in _json_ld
  589. (#12778)
  590. + [extractor/common] Relax JWPlayer regular expression and remove
  591. duplicate URLs (#12768)
  592. Extractors
  593. * [iqiyi] Fix extraction of Yule videos
  594. * [vidio] Improve extraction and sort formats
  595. + [brightcove] Match only video elements with data-video-id attribute
  596. * [iqiyi] Fix playlist detection (#12504)
  597. - [azubu] Remove extractor (#12813)
  598. * [porn91] Fix extraction (#12814)
  599. * [vidzi] Fix extraction (#12793)
  600. + [amp] Extract error message (#12795)
  601. + [xfileshare] Add support for gorillavid.com and daclips.com (#12776)
  602. * [instagram] Fix extraction (#12777)
  603. + [generic] Support Brightcove videos in <iframe> (#12482)
  604. + [brightcove] Support URLs with bcpid instead of playerID (#12482)
  605. * [brightcove] Fix _extract_url (#12782)
  606. + [odnoklassniki] Extract HLS formats
  607. version 2017.04.17
  608. Extractors
  609. * [limelight] Improve extraction LimelightEmbeddedPlayerFlash media embeds and
  610. add support for channel and channelList embeds
  611. * [generic] Extract multiple Limelight embeds (#12761)
  612. + [itv] Extract series metadata
  613. * [itv] Fix RTMP formats downloading (#12759)
  614. * [itv] Use native HLS downloader by default
  615. + [go90] Extract subtitles (#12752)
  616. + [go90] Extract series metadata (#12752)
  617. version 2017.04.16
  618. Core
  619. * [YoutubeDL] Apply expand_path after output template substitution
  620. + [YoutubeDL] Propagate overridden meta fields to extraction results of type
  621. url (#11163)
  622. Extractors
  623. + [generic] Extract RSS entries as url_transparent (#11163)
  624. + [streamango] Add support for streamango.com (#12643)
  625. + [wsj:article] Add support for articles (#12558)
  626. * [brightcove] Relax video tag embeds extraction and validate ambiguous embeds'
  627. URLs (#9163, #12005, #12178, #12480)
  628. + [udemy] Add support for react rendition (#12744)
  629. version 2017.04.15
  630. Extractors
  631. * [youku] Fix fileid extraction (#12741, #12743)
  632. version 2017.04.14
  633. Core
  634. + [downloader/hls] Add basic support for EXT-X-BYTERANGE tag (#10955)
  635. + [adobepass] Improve Comcast and Verison login code (#10803)
  636. + [adobepass] Add support for Verizon (#10803)
  637. Extractors
  638. + [aenetworks] Add support for specials (#12723)
  639. + [hbo] Extract HLS formats
  640. + [go90] Add support for go90.com (#10127)
  641. + [tv2hu] Add support for tv2.hu (#10509)
  642. + [generic] Exclude URLs with xml ext from valid video URLs (#10768, #11654)
  643. * [youtube] Improve HLS formats extraction
  644. * [afreecatv] Fix extraction for videos with different key layout (#12718)
  645. - [youtube] Remove explicit preference for audio-only and video-only formats in
  646. order not to break sorting when new formats appear
  647. * [canalplus] Bypass geo restriction
  648. version 2017.04.11
  649. Extractors
  650. * [afreecatv] Fix extraction (#12706)
  651. + [generic] Add support for <object> YouTube embeds (#12637)
  652. * [bbccouk] Treat bitrate as audio+video bitrate in media selector
  653. + [bbccouk] Skip unrecognized formats in media selector (#12701)
  654. + [bbccouk] Add support for https protocol in media selector (#12701)
  655. * [curiositystream] Fix extraction (#12638)
  656. * [adn] Update subtitle decryption key
  657. * [chaturbate] Fix extraction (#12665, #12688, #12690)
  658. version 2017.04.09
  659. Extractors
  660. + [medici] Add support for medici.tv (#3406)
  661. + [rbmaradio] Add support for redbullradio.com URLs (#12687)
  662. + [npo:live] Add support for default URL (#12555)
  663. * [mixcloud:playlist] Fix title, description and view count extraction (#12582)
  664. + [thesun] Add suport for thesun.co.uk (#11298, #12674)
  665. + [ceskateleveize:porady] Add support for porady (#7411, #12645)
  666. * [ceskateleveize] Improve extraction and remove URL replacement hacks
  667. + [kaltura] Add support for iframe embeds (#12679)
  668. * [airmozilla] Fix extraction (#12670)
  669. * [wshh] Extract html5 entries and delegate to generic extractor (12676)
  670. + [raiplay] Extract subtitles
  671. + [xfileshare] Add support for vidlo.us (#12660)
  672. + [xfileshare] Add support for vidbom.com (#12661)
  673. + [aenetworks] Add more video URL regular expressions (#12657)
  674. + [odnoklassniki] Fix format sorting for 1080p quality
  675. + [rtl2] Add support for you.rtl2.de (#10257)
  676. + [vshare] Add support for vshare.io (#12278)
  677. version 2017.04.03
  678. Core
  679. + [extractor/common] Add censorship check for TransTelekom ISP
  680. * [extractor/common] Move censorship checks to a separate method
  681. Extractors
  682. + [discoveryvr] Add support for discoveryvr.com (#12578)
  683. + [tv5mondeplus] Add support for tv5mondeplus.com (#11386)
  684. + [periscope] Add support for pscp.tv URLs (#12618, #12625)
  685. version 2017.04.02
  686. Core
  687. * [YoutubeDL] Return early when extraction of url_transparent fails
  688. Extractors
  689. * [rai] Fix and improve extraction (#11790)
  690. + [vrv] Add support for series pages
  691. * [limelight] Improve extraction for audio only formats
  692. * [funimation] Fix extraction (#10696, #11773)
  693. + [xfileshare] Add support for vidabc.com (#12589)
  694. + [xfileshare] Improve extraction and extract hls formats
  695. + [crunchyroll] Pass geo verifcation proxy
  696. + [cwtv] Extract ISM formats
  697. + [tvplay] Bypass geo restriction
  698. + [vrv] Add support for vrv.co
  699. + [packtpub] Add support for packtpub.com (#12610)
  700. + [generic] Pass base_url to _parse_jwplayer_data
  701. + [adn] Add support for animedigitalnetwork.fr (#4866)
  702. + [allocine] Extract more metadata
  703. * [allocine] Fix extraction (#12592)
  704. * [openload] Fix extraction
  705. version 2017.03.26
  706. Core
  707. * Don't raise an error if JWPlayer config data is not a Javascript object
  708. literal. _find_jwplayer_data now returns a dict rather than an str. (#12307)
  709. * Expand environment variables for options representing paths (#12556)
  710. + [utils] Introduce expand_path
  711. * [downloader/hls] Delegate downloading to ffmpeg immediately for live streams
  712. Extractors
  713. * [afreecatv] Fix extraction (#12179)
  714. + [atvat] Add support for atv.at (#5325)
  715. + [fox] Add metadata extraction (#12391)
  716. + [atresplayer] Extract DASH formats
  717. + [atresplayer] Extract HD manifest (#12548)
  718. * [atresplayer] Fix login error detection (#12548)
  719. * [franceculture] Fix extraction (#12547)
  720. * [youtube] Improve URL regular expression (#12538)
  721. * [generic] Do not follow redirects to the same URL
  722. version 2017.03.24
  723. Extractors
  724. - [9c9media] Remove mp4 URL extraction request
  725. + [bellmedia] Add support for etalk.ca and space.ca (#12447)
  726. * [channel9] Fix extraction (#11323)
  727. * [cloudy] Fix extraction (#12525)
  728. + [hbo] Add support for free episode URLs and new formats extraction (#12519)
  729. * [condenast] Fix extraction and style (#12526)
  730. * [viu] Relax URL regular expression (#12529)
  731. version 2017.03.22
  732. Extractors
  733. - [pluralsight] Omit module title from video title (#12506)
  734. * [pornhub] Decode obfuscated video URL (#12470, #12515)
  735. * [senateisvp] Allow https URL scheme for embeds (#12512)
  736. version 2017.03.20
  737. Core
  738. + [YoutubeDL] Allow multiple input URLs to be used with stdout (-) as
  739. output template
  740. + [adobepass] Detect and output error on authz token extraction (#12472)
  741. Extractors
  742. + [bostonglobe] Add extractor for bostonglobe.com (#12099)
  743. + [toongoggles] Add support for toongoggles.com (#12171)
  744. + [medialaan] Add support for Medialaan sites (#9974, #11912)
  745. + [discoverynetworks] Add support for more domains and bypass geo restiction
  746. * [openload] Fix extraction (#10408)
  747. version 2017.03.16
  748. Core
  749. + [postprocessor/ffmpeg] Add support for flac
  750. + [extractor/common] Extract SMIL formats from jwplayer
  751. Extractors
  752. + [generic] Add forgotten return for jwplayer formats
  753. * [redbulltv] Improve extraction
  754. version 2017.03.15
  755. Core
  756. * Fix missing subtitles if --add-metadata is used (#12423)
  757. Extractors
  758. * [facebook] Make title optional (#12443)
  759. + [mitele] Add support for ooyala videos (#12430)
  760. * [openload] Fix extraction (#12435, #12446)
  761. * [streamable] Update API URL (#12433)
  762. + [crunchyroll] Extract season name (#12428)
  763. * [discoverygo] Bypass geo restriction
  764. + [discoverygo:playlist] Add support for playlists (#12424)
  765. version 2017.03.10
  766. Extractors
  767. * [generic] Make title optional for jwplayer embeds (#12410)
  768. * [wdr:maus] Fix extraction (#12373)
  769. * [prosiebensat1] Improve title extraction (#12318, #12327)
  770. * [dplayit] Separate and rewrite extractor and bypass geo restriction (#12393)
  771. * [miomio] Fix extraction (#12291, #12388, #12402)
  772. * [telequebec] Fix description extraction (#12399)
  773. * [openload] Fix extraction (#12357)
  774. * [brightcove:legacy] Relax videoPlayer validation check (#12381)
  775. version 2017.03.07
  776. Core
  777. * Metadata are now added after conversion (#5594)
  778. Extractors
  779. * [soundcloud] Update client id (#12376)
  780. * [openload] Fix extraction (#10408, #12357)
  781. version 2017.03.06
  782. Core
  783. + [utils] Process bytestrings in urljoin (#12369)
  784. * [extractor/common] Improve height extraction and extract bitrate
  785. * [extractor/common] Move jwplayer formats extraction in separate method
  786. + [external:ffmpeg] Limit test download size to 10KiB (#12362)
  787. Extractors
  788. + [drtv] Add geo countries to GeoRestrictedError
  789. + [drtv:live] Bypass geo restriction
  790. + [tunepk] Add extractor (#12197, #12243)
  791. version 2017.03.05
  792. Extractors
  793. + [twitch] Add basic support for two-factor authentication (#11974)
  794. + [vier] Add support for vijf.be (#12304)
  795. + [redbulltv] Add support for redbull.tv (#3919, #11948)
  796. * [douyutv] Switch to the PC API to escape the 5-min limitation (#12316)
  797. + [generic] Add support for rutube embeds
  798. + [rutube] Relax URL regular expression
  799. + [vrak] Add support for vrak.tv (#11452)
  800. + [brightcove:new] Add ability to smuggle geo_countries into URL
  801. + [brightcove:new] Raise GeoRestrictedError
  802. * [go] Relax URL regular expression (#12341)
  803. * [24video] Use original host for requests (#12339)
  804. * [ruutu] Disable DASH formats (#12322)
  805. version 2017.03.02
  806. Core
  807. + [adobepass] Add support for Charter Spectrum (#11465)
  808. * [YoutubeDL] Don't sanitize identifiers in output template (#12317)
  809. Extractors
  810. * [facebook] Fix extraction (#12323, #12330)
  811. * [youtube] Mark errors about rental videos as expected (#12324)
  812. + [npo] Add support for audio
  813. * [npo] Adapt to app.php API (#12311, #12320)
  814. version 2017.02.28
  815. Core
  816. + [utils] Add bytes_to_long and long_to_bytes
  817. + [utils] Add pkcs1pad
  818. + [aes] Add aes_cbc_encrypt
  819. Extractors
  820. + [azmedien:showplaylist] Add support for show playlists (#12160)
  821. + [youtube:playlist] Recognize another playlist pattern (#11928, #12286)
  822. + [daisuki] Add support for daisuki.net (#2486, #3186, #4738, #6175, #7776,
  823. #10060)
  824. * [douyu] Fix extraction (#12301)
  825. version 2017.02.27
  826. Core
  827. * [downloader/common] Limit displaying 2 digits after decimal point in sleep
  828. interval message (#12183)
  829. + [extractor/common] Add preference to _parse_html5_media_entries
  830. Extractors
  831. + [npo] Add support for zapp.nl
  832. + [npo] Add support for hetklokhuis.nl (#12293)
  833. - [scivee] Remove extractor (#9315)
  834. + [cda] Decode download URL (#12255)
  835. + [crunchyroll] Improve uploader extraction (#12267)
  836. + [youtube] Raise GeoRestrictedError
  837. + [dailymotion] Raise GeoRestrictedError
  838. + [mdr] Recognize more URL patterns (#12169)
  839. + [tvigle] Raise GeoRestrictedError
  840. * [vevo] Fix extraction for videos with the new streams/streamsV3 format
  841. (#11719)
  842. + [freshlive] Add support for freshlive.tv (#12175)
  843. + [xhamster] Capture and output videoClosed error (#12263)
  844. + [etonline] Add support for etonline.com (#12236)
  845. + [njpwworld] Add support for njpwworld.com (#11561)
  846. * [amcnetworks] Relax URL regular expression (#12127)
  847. version 2017.02.24.1
  848. Extractors
  849. * [noco] Modernize
  850. * [noco] Switch login URL to https (#12246)
  851. + [thescene] Extract more metadata
  852. * [thescene] Fix extraction (#12235)
  853. + [tubitv] Use geo bypass mechanism
  854. * [openload] Fix extraction (#10408)
  855. + [ivi] Raise GeoRestrictedError
  856. version 2017.02.24
  857. Core
  858. * [options] Hide deprecated options from --help
  859. * [options] Deprecate --autonumber-size
  860. + [YoutubeDL] Add support for string formatting operations in output template
  861. (#5185, #5748, #6841, #9929, #9966 #9978, #12189)
  862. Extractors
  863. + [lynda:course] Add webpage extraction fallback (#12238)
  864. * [go] Sign all uplynk URLs and use geo bypass only for free videos
  865. (#12087, #12210)
  866. + [skylinewebcams] Add support for skylinewebcams.com (#12221)
  867. + [instagram] Add support for multi video posts (#12226)
  868. + [crunchyroll] Extract playlist entries ids
  869. * [mgtv] Fix extraction
  870. + [sohu] Raise GeoRestrictedError
  871. + [leeco] Raise GeoRestrictedError and use geo bypass mechanism
  872. version 2017.02.22
  873. Extractors
  874. * [crunchyroll] Fix descriptions with double quotes (#12124)
  875. * [dailymotion] Make comment count optional (#12209)
  876. + [vidzi] Add support for vidzi.cc (#12213)
  877. + [24video] Add support for 24video.tube (#12217)
  878. + [crackle] Use geo bypass mechanism
  879. + [viewster] Use geo verification headers
  880. + [tfo] Improve geo restriction detection and use geo bypass mechanism
  881. + [telequebec] Use geo bypass mechanism
  882. + [limelight] Extract PlaylistService errors and improve geo restriction
  883. detection
  884. version 2017.02.21
  885. Core
  886. * [extractor/common] Allow calling _initialize_geo_bypass from extractors
  887. (#11970)
  888. + [adobepass] Add support for Time Warner Cable (#12191)
  889. + [travis] Run tests in parallel
  890. + [downloader/ism] Honor HTTP headers when downloading fragments
  891. + [downloader/dash] Honor HTTP headers when downloading fragments
  892. + [utils] Add GeoUtils class for working with geo tools and GeoUtils.random_ipv4
  893. + Add option --geo-bypass-country for explicit geo bypass on behalf of
  894. specified country
  895. + Add options to control geo bypass mechanism --geo-bypass and --no-geo-bypass
  896. + Add experimental geo restriction bypass mechanism based on faking
  897. X-Forwarded-For HTTP header
  898. + [utils] Introduce GeoRestrictedError for geo restricted videos
  899. + [utils] Introduce YoutubeDLError base class for all youtube-dl exceptions
  900. Extractors
  901. + [ninecninemedia] Use geo bypass mechanism
  902. * [spankbang] Make uploader optional (#12193)
  903. + [iprima] Improve geo restriction detection and disable geo bypass
  904. * [iprima] Modernize
  905. * [commonmistakes] Disable UnicodeBOM extractor test for python 3.2
  906. + [prosiebensat1] Throw ExtractionError on unsupported page type (#12180)
  907. * [nrk] Update _API_HOST and relax _VALID_URL
  908. + [tv4] Bypass geo restriction and improve detection
  909. * [tv4] Switch to hls3 protocol (#12177)
  910. + [viki] Improve geo restriction detection
  911. + [vgtv] Improve geo restriction detection
  912. + [srgssr] Improve geo restriction detection
  913. + [vbox7] Improve geo restriction detection and use geo bypass mechanism
  914. + [svt] Improve geo restriction detection and use geo bypass mechanism
  915. + [pbs] Improve geo restriction detection and use geo bypass mechanism
  916. + [ondemandkorea] Improve geo restriction detection and use geo bypass mechanism
  917. + [nrk] Improve geo restriction detection and use geo bypass mechanism
  918. + [itv] Improve geo restriction detection and use geo bypass mechanism
  919. + [go] Improve geo restriction detection and use geo bypass mechanism
  920. + [dramafever] Improve geo restriction detection and use geo bypass mechanism
  921. * [brightcove:legacy] Restrict videoPlayer value (#12040)
  922. + [tvn24] Add support for tvn24.pl and tvn24bis.pl (#11679)
  923. + [thisav] Add support for HTML5 media (#11771)
  924. * [metacafe] Bypass family filter (#10371)
  925. * [viceland] Improve info extraction
  926. version 2017.02.17
  927. Extractors
  928. * [heise] Improve extraction (#9725)
  929. * [ellentv] Improve (#11653)
  930. * [openload] Fix extraction (#10408, #12002)
  931. + [theplatform] Recognize URLs with whitespaces (#12044)
  932. * [einthusan] Relax URL regular expression (#12141, #12159)
  933. + [generic] Support complex JWPlayer embedded videos (#12030)
  934. * [elpais] Improve extraction (#12139)
  935. version 2017.02.16
  936. Core
  937. + [utils] Add support for quoted string literals in --match-filter (#8050,
  938. #12142, #12144)
  939. Extractors
  940. * [ceskatelevize] Lower priority for audio description sources (#12119)
  941. * [amcnetworks] Fix extraction (#12127)
  942. * [pinkbike] Fix uploader extraction (#12054)
  943. + [onetpl] Add support for businessinsider.com.pl and plejada.pl
  944. + [onetpl] Add support for onet.pl (#10507)
  945. + [onetmvp] Add shortcut extractor
  946. + [vodpl] Add support for vod.pl (#12122)
  947. + [pornhub] Extract video URL from tv platform site (#12007, #12129)
  948. + [ceskatelevize] Extract DASH formats (#12119, #12133)
  949. version 2017.02.14
  950. Core
  951. * TypeError is fixed with Python 2.7.13 on Windows (#11540, #12085)
  952. Extractor
  953. * [zdf] Fix extraction (#12117)
  954. * [xtube] Fix extraction for both kinds of video id (#12088)
  955. * [xtube] Improve title extraction (#12088)
  956. + [lemonde] Fallback delegate extraction to generic extractor (#12115, #12116)
  957. * [bellmedia] Allow video id longer than 6 characters (#12114)
  958. + [limelight] Add support for referer protected videos
  959. * [disney] Improve extraction (#4975, #11000, #11882, #11936)
  960. * [hotstar] Improve extraction (#12096)
  961. * [einthusan] Fix extraction (#11416)
  962. + [aenetworks] Add support for lifetimemovieclub.com (#12097)
  963. * [youtube] Fix parsing codecs (#12091)
  964. version 2017.02.11
  965. Core
  966. + [utils] Introduce get_elements_by_class and get_elements_by_attribute
  967. utility functions
  968. + [extractor/common] Skip m3u8 manifests protected with Adobe Flash Access
  969. Extractor
  970. * [pluralsight:course] Fix extraction (#12075)
  971. + [bbc] Extract m3u8 formats with 320k audio
  972. * [facebook] Relax video id matching (#11017, #12055, #12056)
  973. + [corus] Add support for Corus Entertainment sites (#12060, #9164)
  974. + [pluralsight] Detect blocked account error message (#12070)
  975. + [bloomberg] Add another video id pattern (#12062)
  976. * [extractor/commonmistakes] Restrict URL regular expression (#12050)
  977. + [tvplayer] Add support for tvplayer.com
  978. version 2017.02.10
  979. Extractors
  980. * [xtube] Fix extraction (#12023)
  981. * [pornhub] Fix extraction (#12007, #12018)
  982. * [facebook] Improve JS data regular expression (#12042)
  983. * [kaltura] Improve embed partner id extraction (#12041)
  984. + [sprout] Add support for sproutonline.com
  985. * [6play] Improve extraction
  986. + [scrippsnetworks:watch] Add support for Scripps Networks sites (#10765)
  987. + [go] Add support for Adobe Pass authentication (#11468, #10831)
  988. * [6play] Fix extraction (#12011)
  989. + [nbc] Add support for Adobe Pass authentication (#12006)
  990. version 2017.02.07
  991. Core
  992. * [extractor/common] Fix audio only with audio group in m3u8 (#11995)
  993. + [downloader/fragment] Respect --no-part
  994. * [extractor/common] Speed-up HTML5 media entries extraction (#11979)
  995. Extractors
  996. * [pornhub] Fix extraction (#11997)
  997. + [canalplus] Add support for cstar.fr (#11990)
  998. + [extractor/generic] Improve RTMP support (#11993)
  999. + [gaskrank] Add support for gaskrank.tv (#11685)
  1000. * [bandcamp] Fix extraction for incomplete albums (#11727)
  1001. * [iwara] Fix extraction (#11781)
  1002. * [googledrive] Fix extraction on Python 3.6
  1003. + [videopress] Add support for videopress.com
  1004. + [afreecatv] Extract RTMP formats
  1005. version 2017.02.04.1
  1006. Extractors
  1007. + [twitch:stream] Add support for player.twitch.tv (#11971)
  1008. * [radiocanada] Fix extraction for toutv rtmp formats
  1009. version 2017.02.04
  1010. Core
  1011. + Add --playlist-random to shuffle playlists (#11889, #11901)
  1012. * [utils] Improve comments processing in js_to_json (#11947)
  1013. * [utils] Handle single-line comments in js_to_json
  1014. * [downloader/external:ffmpeg] Minimize the use of aac_adtstoasc filter
  1015. Extractors
  1016. + [piksel] Add another app token pattern (#11969)
  1017. + [vk] Capture and output author blocked error message (#11965)
  1018. + [turner] Fix secure HLS formats downloading with ffmpeg (#11358, #11373,
  1019. #11800)
  1020. + [drtv] Add support for live and radio sections (#1827, #3427)
  1021. * [myspace] Fix extraction and extract HLS and HTTP formats
  1022. + [youtube] Add format info for itag 325 and 328
  1023. * [vine] Fix extraction (#11955)
  1024. - [sportbox] Remove extractor (#11954)
  1025. + [filmon] Add support for filmon.com (#11187)
  1026. + [infoq] Add audio only formats (#11565)
  1027. * [douyutv] Improve room id regular expression (#11931)
  1028. * [iprima] Fix extraction (#11920, #11896)
  1029. * [youtube] Fix ytsearch when cookies are provided (#11924)
  1030. * [go] Relax video id regular expression (#11937)
  1031. * [facebook] Fix title extraction (#11941)
  1032. + [youtube:playlist] Recognize TL playlists (#11945)
  1033. + [bilibili] Support new Bangumi URLs (#11845)
  1034. + [cbc:watch] Extract audio codec for audio only formats (#11893)
  1035. + [elpais] Fix extraction for some URLs (#11765)
  1036. version 2017.02.01
  1037. Extractors
  1038. + [facebook] Add another fallback extraction scenario (#11926)
  1039. * [prosiebensat1] Fix extraction of descriptions (#11810, #11929)
  1040. - [crunchyroll] Remove ScaledBorderAndShadow settings (#9028)
  1041. + [vimeo] Extract upload timestamp
  1042. + [vimeo] Extract license (#8726, #11880)
  1043. + [nrk:series] Add support for series (#11571, #11711)
  1044. version 2017.01.31
  1045. Core
  1046. + [compat] Add compat_etree_register_namespace
  1047. Extractors
  1048. * [youtube] Fix extraction for domainless player URLs (#11890, #11891, #11892,
  1049. #11894, #11895, #11897, #11900, #11903, #11904, #11906, #11907, #11909,
  1050. #11913, #11914, #11915, #11916, #11917, #11918, #11919)
  1051. + [vimeo] Extract both mixed and separated DASH formats
  1052. + [ruutu] Extract DASH formats
  1053. * [itv] Fix extraction for python 2.6
  1054. version 2017.01.29
  1055. Core
  1056. * [extractor/common] Fix initialization template (#11605, #11825)
  1057. + [extractor/common] Document fragment_base_url and fragment's path fields
  1058. * [extractor/common] Fix duration per DASH segment (#11868)
  1059. + Introduce --autonumber-start option for initial value of %(autonumber)s
  1060. template (#727, #2702, #9362, #10457, #10529, #11862)
  1061. Extractors
  1062. + [azmedien:playlist] Add support for topic and themen playlists (#11817)
  1063. * [npo] Fix subtitles extraction
  1064. + [itv] Extract subtitles
  1065. + [itv] Add support for itv.com (#9240)
  1066. + [mtv81] Add support for mtv81.com (#7619)
  1067. + [vlive] Add support for channels (#11826)
  1068. + [kaltura] Add fallback for fileExt
  1069. + [kaltura] Improve uploader_id extraction
  1070. + [konserthusetplay] Add support for rspoplay.se (#11828)
  1071. version 2017.01.28
  1072. Core
  1073. * [utils] Improve parse_duration
  1074. Extractors
  1075. * [crunchyroll] Improve series and season metadata extraction (#11832)
  1076. * [soundcloud] Improve formats extraction and extract audio bitrate
  1077. + [soundcloud] Extract HLS formats
  1078. * [soundcloud] Fix track URL extraction (#11852)
  1079. + [twitch:vod] Expand URL regular expressions (#11846)
  1080. * [aenetworks] Fix season episodes extraction (#11669)
  1081. + [tva] Add support for videos.tva.ca (#11842)
  1082. * [jamendo] Improve and extract more metadata (#11836)
  1083. + [disney] Add support for Disney sites (#7409, #11801, #4975, #11000)
  1084. * [vevo] Remove request to old API and catch API v2 errors
  1085. + [cmt,mtv,southpark] Add support for episode URLs (#11837)
  1086. + [youtube] Add fallback for duration extraction (#11841)
  1087. version 2017.01.25
  1088. Extractors
  1089. + [openload] Fallback video extension to mp4
  1090. + [extractor/generic] Add support for Openload embeds (#11536, #11812)
  1091. * [srgssr] Fix rts video extraction (#11831)
  1092. + [afreecatv:global] Add support for afreeca.tv (#11807)
  1093. + [crackle] Extract vtt subtitles
  1094. + [crackle] Extract multiple resolutions for thumbnails
  1095. + [crackle] Add support for mobile URLs
  1096. + [konserthusetplay] Extract subtitles (#11823)
  1097. + [konserthusetplay] Add support for HLS videos (#11823)
  1098. * [vimeo:review] Fix config URL extraction (#11821)
  1099. version 2017.01.24
  1100. Extractors
  1101. * [pluralsight] Fix extraction (#11820)
  1102. + [nextmedia] Add support for NextTV (壹電視)
  1103. * [24video] Fix extraction (#11811)
  1104. * [youtube:playlist] Fix nonexistent and private playlist detection (#11604)
  1105. + [chirbit] Extract uploader (#11809)
  1106. version 2017.01.22
  1107. Extractors
  1108. + [pornflip] Add support for pornflip.com (#11556, #11795)
  1109. * [chaturbate] Fix extraction (#11797, #11802)
  1110. + [azmedien] Add support for AZ Medien sites (#11784, #11785)
  1111. + [nextmedia] Support redirected URLs
  1112. + [vimeo:channel] Extract videos' titles for playlist entries (#11796)
  1113. + [youtube] Extract episode metadata (#9695, #11774)
  1114. + [cspan] Support Ustream embedded videos (#11547)
  1115. + [1tv] Add support for HLS videos (#11786)
  1116. * [uol] Fix extraction (#11770)
  1117. * [mtv] Relax triforce feed regular expression (#11766)
  1118. version 2017.01.18
  1119. Extractors
  1120. * [bilibili] Fix extraction (#11077)
  1121. + [canalplus] Add fallback for video id (#11764)
  1122. * [20min] Fix extraction (#11683, #11751)
  1123. * [imdb] Extend URL regular expression (#11744)
  1124. + [naver] Add support for tv.naver.com links (#11743)
  1125. version 2017.01.16
  1126. Core
  1127. * [options] Apply custom config to final composite configuration (#11741)
  1128. * [YoutubeDL] Improve protocol auto determining (#11720)
  1129. Extractors
  1130. * [xiami] Relax URL regular expressions
  1131. * [xiami] Improve track metadata extraction (#11699)
  1132. + [limelight] Check hand-make direct HTTP links
  1133. + [limelight] Add support for direct HTTP links at video.llnw.net (#11737)
  1134. + [brightcove] Recognize another player ID pattern (#11688)
  1135. + [niconico] Support login via cookies (#7968)
  1136. * [yourupload] Fix extraction (#11601)
  1137. + [beam:live] Add support for beam.pro live streams (#10702, #11596)
  1138. * [vevo] Improve geo restriction detection
  1139. + [dramafever] Add support for URLs with language code (#11714)
  1140. * [cbc] Improve playlist support (#11704)
  1141. version 2017.01.14
  1142. Core
  1143. + [common] Add ability to customize akamai manifest host
  1144. + [utils] Add more date formats
  1145. Extractors
  1146. - [mtv] Eliminate _transform_rtmp_url
  1147. * [mtv] Generalize triforce mgid extraction
  1148. + [cmt] Add support for full episodes and video clips (#11623)
  1149. + [mitele] Extract DASH formats
  1150. + [ooyala] Add support for videos with embedToken (#11684)
  1151. * [mixcloud] Fix extraction (#11674)
  1152. * [openload] Fix extraction (#10408)
  1153. * [tv4] Improve extraction (#11698)
  1154. * [freesound] Fix and improve extraction (#11602)
  1155. + [nick] Add support for beta.nick.com (#11655)
  1156. * [mtv,cc] Use HLS by default with native HLS downloader (#11641)
  1157. * [mtv] Fix non-HLS extraction
  1158. version 2017.01.10
  1159. Extractors
  1160. * [youtube] Fix extraction (#11663, #11664)
  1161. + [inc] Add support for inc.com (#11277, #11647)
  1162. + [youtube] Add itag 212 (#11575)
  1163. + [egghead:course] Add support for egghead.io courses
  1164. version 2017.01.08
  1165. Core
  1166. * Fix "invalid escape sequence" errors under Python 3.6 (#11581)
  1167. Extractors
  1168. + [hitrecord] Add support for hitrecord.org (#10867, #11626)
  1169. - [videott] Remove extractor
  1170. * [swrmediathek] Improve extraction
  1171. - [sharesix] Remove extractor
  1172. - [aol:features] Remove extractor
  1173. * [sendtonews] Improve info extraction
  1174. * [3sat,phoenix] Fix extraction (#11619)
  1175. * [comedycentral/mtv] Add support for HLS videos (#11600)
  1176. * [discoverygo] Fix JSON data parsing (#11219, #11522)
  1177. version 2017.01.05
  1178. Extractors
  1179. + [zdf] Fix extraction (#11055, #11063)
  1180. * [pornhub:playlist] Improve extraction (#11594)
  1181. + [cctv] Add support for ncpa-classic.com (#11591)
  1182. + [tunein] Add support for embeds (#11579)
  1183. version 2017.01.02
  1184. Extractors
  1185. * [cctv] Improve extraction (#879, #6753, #8541)
  1186. + [nrktv:episodes] Add support for episodes (#11571)
  1187. + [arkena] Add support for video.arkena.com (#11568)
  1188. version 2016.12.31
  1189. Core
  1190. + Introduce --config-location option for custom configuration files (#6745,
  1191. #10648)
  1192. Extractors
  1193. + [twitch] Add support for player.twitch.tv (#11535, #11537)
  1194. + [videa] Add support for videa.hu (#8181, #11133)
  1195. * [vk] Fix postlive videos extraction
  1196. * [vk] Extract from playerParams (#11555)
  1197. - [freevideo] Remove extractor (#11515)
  1198. + [showroomlive] Add support for showroom-live.com (#11458)
  1199. * [xhamster] Fix duration extraction (#11549)
  1200. * [rtve:live] Fix extraction (#11529)
  1201. * [brightcove:legacy] Improve embeds detection (#11523)
  1202. + [twitch] Add support for rechat messages (#11524)
  1203. * [acast] Fix audio and timestamp extraction (#11521)
  1204. version 2016.12.22
  1205. Core
  1206. * [extractor/common] Improve detection of video-only formats in m3u8
  1207. manifests (#11507)
  1208. Extractors
  1209. + [theplatform] Pass geo verification headers to SMIL request (#10146)
  1210. + [viu] Pass geo verification headers to auth request
  1211. * [rtl2] Extract more formats and metadata
  1212. * [vbox7] Skip malformed JSON-LD (#11501)
  1213. * [uplynk] Force downloading using native HLS downloader (#11496)
  1214. + [laola1] Add support for another extraction scenario (#11460)
  1215. version 2016.12.20
  1216. Core
  1217. * [extractor/common] Improve fragment URL construction for DASH media
  1218. * [extractor/common] Fix codec information extraction for mixed audio/video
  1219. DASH media (#11490)
  1220. Extractors
  1221. * [vbox7] Fix extraction (#11494)
  1222. + [uktvplay] Add support for uktvplay.uktv.co.uk (#11027)
  1223. + [piksel] Add support for player.piksel.com (#11246)
  1224. + [vimeo] Add support for DASH formats
  1225. * [vimeo] Fix extraction for HLS formats (#11490)
  1226. * [kaltura] Fix wrong widget ID in some cases (#11480)
  1227. + [nrktv:direkte] Add support for live streams (#11488)
  1228. * [pbs] Fix extraction for geo restricted videos (#7095)
  1229. * [brightcove:new] Skip widevine classic videos
  1230. + [viu] Add support for viu.com (#10607, #11329)
  1231. version 2016.12.18
  1232. Core
  1233. + [extractor/common] Recognize DASH formats in html5 media entries
  1234. Extractors
  1235. + [ccma] Add support for ccma.cat (#11359)
  1236. * [laola1tv] Improve extraction
  1237. + [laola1tv] Add support embed URLs (#11460)
  1238. * [nbc] Fix extraction for MSNBC videos (#11466)
  1239. * [twitch] Adapt to new videos pages URL schema (#11469)
  1240. + [meipai] Add support for meipai.com (#10718)
  1241. * [jwplatform] Improve subtitles and duration extraction
  1242. + [ondemandkorea] Add support for ondemandkorea.com (#10772)
  1243. + [vvvvid] Add support for vvvvid.it (#5915)
  1244. version 2016.12.15
  1245. Core
  1246. + [utils] Add convenience urljoin
  1247. Extractors
  1248. + [openload] Recognize oload.tv URLs (#10408)
  1249. + [facebook] Recognize .onion URLs (#11443)
  1250. * [vlive] Fix extraction (#11375, #11383)
  1251. + [canvas] Extract DASH formats
  1252. + [melonvod] Add support for vod.melon.com (#11419)
  1253. version 2016.12.12
  1254. Core
  1255. + [utils] Add common user agents map
  1256. + [common] Recognize HLS manifests that contain video only formats (#11394)
  1257. Extractors
  1258. + [dplay] Use Safari user agent for HLS (#11418)
  1259. + [facebook] Detect login required error message
  1260. * [facebook] Improve video selection (#11390)
  1261. + [canalplus] Add another video id pattern (#11399)
  1262. * [mixcloud] Relax URL regular expression (#11406)
  1263. * [ctvnews] Relax URL regular expression (#11394)
  1264. + [rte] Capture and output error message (#7746, #10498)
  1265. + [prosiebensat1] Add support for DASH formats
  1266. * [srgssr] Improve extraction for geo restricted videos (#11089)
  1267. * [rts] Improve extraction for geo restricted videos (#4989)
  1268. version 2016.12.09
  1269. Core
  1270. * [socks] Fix error reporting (#11355)
  1271. Extractors
  1272. * [openload] Fix extraction (#10408)
  1273. * [pandoratv] Fix extraction (#11023)
  1274. + [telebruxelles] Add support for emission URLs
  1275. * [telebruxelles] Extract all formats
  1276. + [bloomberg] Add another video id regular expression (#11371)
  1277. * [fusion] Update ooyala id regular expression (#11364)
  1278. + [1tv] Add support for playlists (#11335)
  1279. * [1tv] Improve extraction (#11335)
  1280. + [aenetworks] Extract more formats (#11321)
  1281. + [thisoldhouse] Recognize /tv-episode/ URLs (#11271)
  1282. version 2016.12.01
  1283. Extractors
  1284. * [soundcloud] Update client id (#11327)
  1285. * [ruutu] Detect DRM protected videos
  1286. + [liveleak] Add support for youtube embeds (#10688)
  1287. * [spike] Fix full episodes support (#11312)
  1288. * [comedycentral] Fix full episodes support
  1289. * [normalboots] Rewrite in terms of JWPlatform (#11184)
  1290. * [teamfourstar] Rewrite in terms of JWPlatform (#11184)
  1291. - [screenwavemedia] Remove extractor (#11184)
  1292. version 2016.11.27
  1293. Extractors
  1294. + [webcaster] Add support for webcaster.pro
  1295. + [azubu] Add support for azubu.uol.com.br (#11305)
  1296. * [viki] Prefer hls formats
  1297. * [viki] Fix rtmp formats extraction (#11255)
  1298. * [puls4] Relax URL regular expression (#11267)
  1299. * [vevo] Improve artist extraction (#10911)
  1300. * [mitele] Relax URL regular expression and extract more metadata (#11244)
  1301. + [cbslocal] Recognize New York site (#11285)
  1302. + [youtube:playlist] Pass disable_polymer in URL query (#11193)
  1303. version 2016.11.22
  1304. Extractors
  1305. * [hellporno] Fix video extension extraction (#11247)
  1306. + [hellporno] Add support for hellporno.net (#11247)
  1307. + [amcnetworks] Recognize more BBC America URLs (#11263)
  1308. * [funnyordie] Improve extraction (#11208)
  1309. * [extractor/generic] Improve limelight embeds support
  1310. - [crunchyroll] Remove ScaledBorderAndShadow from ASS subtitles (#8207, #9028)
  1311. * [bandcamp] Fix free downloads extraction and extract all formats (#11067)
  1312. * [twitter:card] Relax URL regular expression (#11225)
  1313. + [tvanouvelles] Add support for tvanouvelles.ca (#10616)
  1314. version 2016.11.18
  1315. Extractors
  1316. * [youtube:live] Relax URL regular expression (#11164)
  1317. * [openload] Fix extraction (#10408, #11122)
  1318. * [vlive] Prefer locale over language for subtitles id (#11203)
  1319. version 2016.11.14.1
  1320. Core
  1321. + [downoader/fragment,f4m,hls] Respect HTTP headers from info dict
  1322. * [extractor/common] Fix media templates with Bandwidth substitution pattern in
  1323. MPD manifests (#11175)
  1324. * [extractor/common] Improve thumbnail extraction from JSON-LD
  1325. Extractors
  1326. + [nrk] Workaround geo restriction
  1327. + [nrk] Improve error detection and messages
  1328. + [afreecatv] Add support for vod.afreecatv.com (#11174)
  1329. * [cda] Fix and improve extraction (#10929, #10936)
  1330. * [plays] Fix extraction (#11165)
  1331. * [eagleplatform] Fix extraction (#11160)
  1332. + [audioboom] Recognize /posts/ URLs (#11149)
  1333. version 2016.11.08.1
  1334. Extractors
  1335. * [espn:article] Fix support for espn.com articles
  1336. * [franceculture] Fix extraction (#11140)
  1337. version 2016.11.08
  1338. Extractors
  1339. * [tmz:article] Fix extraction (#11052)
  1340. * [espn] Fix extraction (#11041)
  1341. * [mitele] Fix extraction after website redesign (#10824)
  1342. - [ard] Remove age restriction check (#11129)
  1343. * [generic] Improve support for pornhub.com embeds (#11100)
  1344. + [generic] Add support for redtube.com embeds (#11099)
  1345. + [generic] Add support for drtuber.com embeds (#11098)
  1346. + [redtube] Add support for embed URLs
  1347. + [drtuber] Add support for embed URLs
  1348. + [yahoo] Improve content id extraction (#11088)
  1349. * [toutv] Relax URL regular expression (#11121)
  1350. version 2016.11.04
  1351. Core
  1352. * [extractor/common] Tolerate malformed RESOLUTION attribute in m3u8
  1353. manifests (#11113)
  1354. * [downloader/ism] Fix AVC Decoder Configuration Record
  1355. Extractors
  1356. + [fox9] Add support for fox9.com (#11110)
  1357. + [anvato] Extract more metadata and improve formats extraction
  1358. * [vodlocker] Improve removed videos detection (#11106)
  1359. + [vzaar] Add support for vzaar.com (#11093)
  1360. + [vice] Add support for uplynk preplay videos (#11101)
  1361. * [tubitv] Fix extraction (#11061)
  1362. + [shahid] Add support for authentication (#11091)
  1363. + [radiocanada] Add subtitles support (#11096)
  1364. + [generic] Add support for ISM manifests
  1365. version 2016.11.02
  1366. Core
  1367. + Add basic support for Smooth Streaming protocol (#8118, #10969)
  1368. * Improve MPD manifest base URL extraction (#10909, #11079)
  1369. * Fix --match-filter for int-like strings (#11082)
  1370. Extractors
  1371. + [mva] Add support for ISM formats
  1372. + [msn] Add support for ISM formats
  1373. + [onet] Add support for ISM formats
  1374. + [tvp] Add support for ISM formats
  1375. + [nicknight] Add support for nicknight sites (#10769)
  1376. version 2016.10.30
  1377. Extractors
  1378. * [facebook] Improve 1080P video detection (#11073)
  1379. * [imgur] Recognize /r/ URLs (#11071)
  1380. * [beeg] Fix extraction (#11069)
  1381. * [openload] Fix extraction (#10408)
  1382. * [gvsearch] Modernize and fix search request (#11051)
  1383. * [adultswim] Fix extraction (#10979)
  1384. + [nobelprize] Add support for nobelprize.org (#9999)
  1385. * [hornbunny] Fix extraction (#10981)
  1386. * [tvp] Improve video id extraction (#10585)
  1387. version 2016.10.26
  1388. Extractors
  1389. + [rentv] Add support for ren.tv (#10620)
  1390. + [ard] Detect unavailable videos (#11018)
  1391. * [vk] Fix extraction (#11022)
  1392. version 2016.10.25
  1393. Core
  1394. * Running youtube-dl in the background is fixed (#10996, #10706, #955)
  1395. Extractors
  1396. + [jamendo] Add support for jamendo.com (#10132, #10736)
  1397. + [pandatv] Add support for panda.tv (#10736)
  1398. + [dotsub] Support Vimeo embed (#10964)
  1399. * [litv] Fix extraction
  1400. + [vimeo] Delegate ondemand redirects to ondemand extractor (#10994)
  1401. * [vivo] Fix extraction (#11003)
  1402. + [twitch:stream] Add support for rebroadcasts (#10995)
  1403. * [pluralsight] Fix subtitles conversion (#10990)
  1404. version 2016.10.21.1
  1405. Extractors
  1406. + [pluralsight] Process all clip URLs (#10984)
  1407. version 2016.10.21
  1408. Core
  1409. - Disable thumbnails embedding in mkv
  1410. + Add support for Comcast multiple-system operator (#10819)
  1411. Extractors
  1412. * [pluralsight] Adapt to new API (#10972)
  1413. * [openload] Fix extraction (#10408, #10971)
  1414. + [natgeo] Extract m3u8 formats (#10959)
  1415. version 2016.10.19
  1416. Core
  1417. + [utils] Expose PACKED_CODES_RE
  1418. + [extractor/common] Extract non smil wowza mpd manifests
  1419. + [extractor/common] Detect f4m audio-only formats
  1420. Extractors
  1421. * [vidzi] Fix extraction (#10908, #10952)
  1422. * [urplay] Fix subtitles extraction
  1423. + [urplay] Add support for urskola.se (#10915)
  1424. + [orf] Add subtitles support (#10939)
  1425. * [youtube] Fix --no-playlist behavior for youtu.be/id URLs (#10896)
  1426. * [nrk] Relax URL regular expression (#10928)
  1427. + [nytimes] Add support for podcasts (#10926)
  1428. * [pluralsight] Relax URL regular expression (#10941)
  1429. version 2016.10.16
  1430. Core
  1431. * [postprocessor/ffmpeg] Return correct filepath and ext in updated information
  1432. in FFmpegExtractAudioPP (#10879)
  1433. Extractors
  1434. + [ruutu] Add support for supla.fi (#10849)
  1435. + [theoperaplatform] Add support for theoperaplatform.eu (#10914)
  1436. * [lynda] Fix height for prioritized streams
  1437. + [lynda] Add fallback extraction scenario
  1438. * [lynda] Switch to https (#10916)
  1439. + [huajiao] New extractor (#10917)
  1440. * [cmt] Fix mgid extraction (#10813)
  1441. + [safari:course] Add support for techbus.safaribooksonline.com
  1442. * [orf:tvthek] Fix extraction and modernize (#10898)
  1443. * [chirbit] Fix extraction of user profile pages
  1444. * [carambatv] Fix extraction
  1445. * [canalplus] Fix extraction for some videos
  1446. * [cbsinteractive] Fix extraction for cnet.com
  1447. * [parliamentliveuk] Lower case URLs are now recognized (#10912)
  1448. version 2016.10.12
  1449. Core
  1450. + Support HTML media elements without child nodes
  1451. * [Makefile] Support for GNU make < 4 is fixed; BSD make dropped (#9387)
  1452. Extractors
  1453. * [dailymotion] Fix extraction (#10901)
  1454. * [vimeo:review] Fix extraction (#10900)
  1455. * [nhl] Correctly handle invalid formats (#10713)
  1456. * [footyroom] Fix extraction (#10810)
  1457. * [abc.net.au:iview] Fix for standalone (non series) videos (#10895)
  1458. + [hbo] Add support for episode pages (#10892)
  1459. * [allocine] Fix extraction (#10860)
  1460. + [nextmedia] Recognize action news on AppleDaily
  1461. * [lego] Improve info extraction and bypass geo restriction (#10872)
  1462. version 2016.10.07
  1463. Extractors
  1464. + [iprima] Detect geo restriction
  1465. * [facebook] Fix video extraction (#10846)
  1466. + [commonprotocols] Support direct MMS links (#10838)
  1467. + [generic] Add support for multiple vimeo embeds (#10862)
  1468. + [nzz] Add support for nzz.ch (#4407)
  1469. + [npo] Detect geo restriction
  1470. + [npo] Add support for 2doc.nl (#10842)
  1471. + [lego] Add support for lego.com (#10369)
  1472. + [tonline] Add support for t-online.de (#10376)
  1473. * [techtalks] Relax URL regular expression (#10840)
  1474. * [youtube:live] Extend URL regular expression (#10839)
  1475. + [theweatherchannel] Add support for weather.com (#7188)
  1476. + [thisoldhouse] Add support for thisoldhouse.com (#10837)
  1477. + [nhl] Add support for wch2016.com (#10833)
  1478. * [pornoxo] Use JWPlatform to improve metadata extraction
  1479. version 2016.10.02
  1480. Core
  1481. * Fix possibly lost extended attributes during post-processing
  1482. + Support pyxattr as well as python-xattr for --xattrs and
  1483. --xattr-set-filesize (#9054)
  1484. Extractors
  1485. + [jwplatform] Support DASH streams in JWPlayer
  1486. + [jwplatform] Support old-style JWPlayer playlists
  1487. + [byutv:event] Add extractor
  1488. * [periscope:user] Fix extraction (#10820)
  1489. * [dctp] Fix extraction (#10734)
  1490. + [instagram] Extract video dimensions (#10790)
  1491. + [tvland] Extend URL regular expression (#10812)
  1492. + [vgtv] Add support for tv.aftonbladet.se (#10800)
  1493. - [aftonbladet] Remove extractor
  1494. * [vk] Fix timestamp and view count extraction (#10760)
  1495. + [vk] Add support for running and finished live streams (#10799)
  1496. + [leeco] Recognize more Le Sports URLs (#10794)
  1497. + [instagram] Extract comments (#10788)
  1498. + [ketnet] Extract mzsource formats (#10770)
  1499. * [limelight:media] Improve HTTP formats extraction
  1500. version 2016.09.27
  1501. Core
  1502. + Add hdcore query parameter to akamai f4m formats
  1503. + Delegate HLS live streams downloading to ffmpeg
  1504. + Improved support for HTML5 subtitles
  1505. Extractors
  1506. + [vk] Add support for dailymotion embeds (#10661)
  1507. * [promptfile] Fix extraction (#10634)
  1508. * [kaltura] Speed up embed regular expressions (#10764)
  1509. + [npo] Add support for anderetijden.nl (#10754)
  1510. + [prosiebensat1] Add support for advopedia sites
  1511. * [mwave] Relax URL regular expression (#10735, #10748)
  1512. * [prosiebensat1] Fix playlist support (#10745)
  1513. + [prosiebensat1] Add support for sat1gold sites (#10745)
  1514. + [cbsnews:livevideo] Fix extraction and extract m3u8 formats
  1515. + [brightcove:new] Add support for live streams
  1516. * [soundcloud] Generalize playlist entries extraction (#10733)
  1517. + [mtv] Add support for new URL schema (#8169, #9808)
  1518. * [einthusan] Fix extraction (#10714)
  1519. + [twitter] Support Periscope embeds (#10737)
  1520. + [openload] Support subtitles (#10625)
  1521. version 2016.09.24
  1522. Core
  1523. + Add support for watchTVeverywhere.com authentication provider based MSOs for
  1524. Adobe Pass authentication (#10709)
  1525. Extractors
  1526. + [soundcloud:playlist] Provide video id for early playlist entries (#10733)
  1527. + [prosiebensat1] Add support for kabeleinsdoku (#10732)
  1528. * [cbs] Extract info from thunder videoPlayerService (#10728)
  1529. * [openload] Fix extraction (#10408)
  1530. + [ustream] Support the new HLS streams (#10698)
  1531. + [ooyala] Extract all HLS formats
  1532. + [cartoonnetwork] Add support for Adobe Pass authentication
  1533. + [soundcloud] Extract license metadata
  1534. + [fox] Add support for Adobe Pass authentication (#8584)
  1535. + [tbs] Add support for Adobe Pass authentication (#10642, #10222)
  1536. + [trutv] Add support for Adobe Pass authentication (#10519)
  1537. + [turner] Add support for Adobe Pass authentication
  1538. version 2016.09.19
  1539. Extractors
  1540. + [crunchyroll] Check if already authenticated (#10700)
  1541. - [twitch:stream] Remove fallback to profile extraction when stream is offline
  1542. * [thisav] Improve title extraction (#10682)
  1543. * [vyborymos] Improve station info extraction
  1544. version 2016.09.18
  1545. Core
  1546. + Introduce manifest_url and fragments fields in formats dictionary for
  1547. fragmented media
  1548. + Provide manifest_url field for DASH segments, HLS and HDS
  1549. + Provide fragments field for DASH segments
  1550. * Rework DASH segments downloader to use fragments field
  1551. + Add helper method for Wowza Streaming Engine formats extraction
  1552. Extractors
  1553. + [vyborymos] Add extractor for vybory.mos.ru (#10692)
  1554. + [xfileshare] Add title regular expression for streamin.to (#10646)
  1555. + [globo:article] Add support for multiple videos (#10653)
  1556. + [thisav] Recognize HTML5 videos (#10447)
  1557. * [jwplatform] Improve JWPlayer detection
  1558. + [mangomolo] Add support for Mangomolo embeds
  1559. + [toutv] Add support for authentication (#10669)
  1560. * [franceinter] Fix upload date extraction
  1561. * [tv4] Fix HLS and HDS formats extraction (#10659)
  1562. version 2016.09.15
  1563. Core
  1564. * Improve _hidden_inputs
  1565. + Introduce improved explicit Adobe Pass support
  1566. + Add --ap-mso to provide multiple-system operator identifier
  1567. + Add --ap-username to provide MSO account username
  1568. + Add --ap-password to provide MSO account password
  1569. + Add --ap-list-mso to list all supported MSOs
  1570. + Add support for Rogers Cable multiple-system operator (#10606)
  1571. Extractors
  1572. * [crunchyroll] Fix authentication (#10655)
  1573. * [twitch] Fix API calls (#10654, #10660)
  1574. + [bellmedia] Add support for more Bell Media Television sites
  1575. * [franceinter] Fix extraction (#10538, #2105)
  1576. * [kuwo] Improve error detection (#10650)
  1577. + [go] Add support for free full episodes (#10439)
  1578. * [bilibili] Fix extraction for specific videos (#10647)
  1579. * [nhk] Fix extraction (#10633)
  1580. * [kaltura] Improve audio detection
  1581. * [kaltura] Skip chun format
  1582. + [vimeo:ondemand] Pass Referer along with embed URL (#10624)
  1583. + [nbc] Add support for NBC Olympics (#10361)
  1584. version 2016.09.11.1
  1585. Extractors
  1586. + [tube8] Extract categories and tags (#10579)
  1587. + [pornhub] Extract categories and tags (#10499)
  1588. * [openload] Temporary fix (#10408)
  1589. + [foxnews] Add support Fox News articles (#10598)
  1590. * [viafree] Improve video id extraction (#10615)
  1591. * [iwara] Fix extraction after relaunch (#10462, #3215)
  1592. + [tfo] Add extractor for tfo.org
  1593. * [lrt] Fix audio extraction (#10566)
  1594. * [9now] Fix extraction (#10561)
  1595. + [canalplus] Add support for c8.fr (#10577)
  1596. * [newgrounds] Fix uploader extraction (#10584)
  1597. + [polskieradio:category] Add support for category lists (#10576)
  1598. + [ketnet] Add extractor for ketnet.be (#10343)
  1599. + [canvas] Add support for een.be (#10605)
  1600. + [telequebec] Add extractor for telequebec.tv (#1999)
  1601. * [parliamentliveuk] Fix extraction (#9137)
  1602. version 2016.09.08
  1603. Extractors
  1604. + [jwplatform] Extract height from format label
  1605. + [yahoo] Extract Brightcove Legacy Studio embeds (#9345)
  1606. * [videomore] Fix extraction (#10592)
  1607. * [foxgay] Fix extraction (#10480)
  1608. + [rmcdecouverte] Add extractor for rmcdecouverte.bfmtv.com (#9709)
  1609. * [gamestar] Fix metadata extraction (#10479)
  1610. * [puls4] Fix extraction (#10583)
  1611. + [cctv] Add extractor for CCTV and CNTV (#8153)
  1612. + [lci] Add extractor for lci.fr (#10573)
  1613. + [wat] Extract DASH formats
  1614. + [viafree] Improve video id detection (#10569)
  1615. + [trutv] Add extractor for trutv.com (#10519)
  1616. + [nick] Add support for nickelodeon.nl (#10559)
  1617. + [abcotvs:clips] Add support for clips.abcotvs.com
  1618. + [abcotvs] Add support for ABC Owned Television Stations sites (#9551)
  1619. + [miaopai] Add extractor for miaopai.com (#10556)
  1620. * [gamestar] Fix metadata extraction (#10479)
  1621. + [bilibili] Add support for episodes (#10190)
  1622. + [tvnoe] Add extractor for tvnoe.cz (#10524)
  1623. version 2016.09.04.1
  1624. Core
  1625. * In DASH downloader if the first segment fails, abort the whole download
  1626. process to prevent throttling (#10497)
  1627. + Add support for --skip-unavailable-fragments and --fragment retries in
  1628. hlsnative downloader (#10165, #10448).
  1629. + Add support for --skip-unavailable-fragments in DASH downloader
  1630. + Introduce --skip-unavailable-fragments option for fragment based downloaders
  1631. that allows to skip fragments unavailable due to a HTTP error
  1632. * Fix extraction of video/audio entries with src attribute in
  1633. _parse_html5_media_entries (#10540)
  1634. Extractors
  1635. * [theplatform] Relax URL regular expression (#10546)
  1636. * [youtube:playlist] Extend URL regular expression
  1637. * [rottentomatoes] Delegate extraction to internetvideoarchive extractor
  1638. * [internetvideoarchive] Extract all formats
  1639. * [pornvoisines] Fix extraction (#10469)
  1640. * [rottentomatoes] Fix extraction (#10467)
  1641. * [espn] Extend URL regular expression (#10549)
  1642. * [vimple] Extend URL regular expression (#10547)
  1643. * [youtube:watchlater] Fix extraction (#10544)
  1644. * [youjizz] Fix extraction (#10437)
  1645. + [foxnews] Add support for FoxNews Insider (#10445)
  1646. + [fc2] Recognize Flash player URLs (#10512)
  1647. version 2016.09.03
  1648. Core
  1649. * Restore usage of NAME attribute from EXT-X-MEDIA tag for formats codes in
  1650. _extract_m3u8_formats (#10522)
  1651. * Handle semicolon in mimetype2ext
  1652. Extractors
  1653. + [youtube] Add support for rental videos' previews (#10532)
  1654. * [youtube:playlist] Fallback to video extraction for video/playlist URLs when
  1655. no playlist is actually served (#10537)
  1656. + [drtv] Add support for dr.dk/nyheder (#10536)
  1657. + [facebook:plugins:video] Add extractor (#10530)
  1658. + [go] Add extractor for *.go.com sites
  1659. * [adobepass] Check for authz_token expiration (#10527)
  1660. * [nytimes] improve extraction
  1661. * [thestar] Fix extraction (#10465)
  1662. * [glide] Fix extraction (#10478)
  1663. - [exfm] Remove extractor (#10482)
  1664. * [youporn] Fix categories and tags extraction (#10521)
  1665. + [curiositystream] Add extractor for app.curiositystream.com
  1666. - [thvideo] Remove extractor (#10464)
  1667. * [movingimage] Fix for the new site name (#10466)
  1668. + [cbs] Add support for once formats (#10515)
  1669. * [limelight] Skip ism snd duplicate manifests
  1670. + [porncom] Extract categories and tags (#10510)
  1671. + [facebook] Extract timestamp (#10508)
  1672. + [yahoo] Extract more formats
  1673. version 2016.08.31
  1674. Extractors
  1675. * [soundcloud] Fix URL regular expression to avoid clashes with sets (#10505)
  1676. * [bandcamp:album] Fix title extraction (#10455)
  1677. * [pyvideo] Fix extraction (#10468)
  1678. + [ctv] Add support for tsn.ca, bnn.ca and thecomedynetwork.ca (#10016)
  1679. * [9c9media] Extract more metadata
  1680. * [9c9media] Fix multiple stacks extraction (#10016)
  1681. * [adultswim] Improve video info extraction (#10492)
  1682. * [vodplatform] Improve embed regular expression
  1683. - [played] Remove extractor (#10470)
  1684. + [tbs] Add extractor for tbs.com and tntdrama.com (#10222)
  1685. + [cartoonnetwork] Add extractor for cartoonnetwork.com (#10110)
  1686. * [adultswim] Rework in terms of turner extractor
  1687. * [cnn] Rework in terms of turner extractor
  1688. * [nba] Rework in terms of turner extractor
  1689. + [turner] Add base extractor for Turner Broadcasting System based sites
  1690. * [bilibili] Fix extraction (#10375)
  1691. * [openload] Fix extraction (#10408)
  1692. version 2016.08.28
  1693. Core
  1694. + Add warning message that ffmpeg doesn't support SOCKS
  1695. * Improve thumbnail sorting
  1696. + Extract formats from #EXT-X-MEDIA tags in _extract_m3u8_formats
  1697. * Fill IV with leading zeros for IVs shorter than 16 octets in hlsnative
  1698. + Add ac-3 to the list of audio codecs in parse_codecs
  1699. Extractors
  1700. * [periscope:user] Fix extraction (#10453)
  1701. * [douyutv] Fix extraction (#10153, #10318, #10444)
  1702. + [nhk:vod] Add extractor for www3.nhk.or.jp on demand (#4437, #10424)
  1703. - [trutube] Remove extractor (#10438)
  1704. + [usanetwork] Add extractor for usanetwork.com
  1705. * [crackle] Fix extraction (#10333)
  1706. * [spankbang] Fix description and uploader extraction (#10339)
  1707. * [discoverygo] Detect cable provider restricted videos (#10425)
  1708. + [cbc] Add support for watch.cbc.ca
  1709. * [kickstarter] Silent the warning for og:description (#10415)
  1710. * [mtvservices:embedded] Fix extraction for the new 'edge' player (#10363)
  1711. version 2016.08.24.1
  1712. Extractors
  1713. + [pluralsight] Add support for subtitles (#9681)
  1714. version 2016.08.24
  1715. Extractors
  1716. * [youtube] Fix authentication (#10392)
  1717. * [openload] Fix extraction (#10408)
  1718. + [bravotv] Add support for Adobe Pass (#10407)
  1719. * [bravotv] Fix clip info extraction (#10407)
  1720. * [eagleplatform] Improve embedded videos detection (#10409)
  1721. * [awaan] Fix extraction
  1722. * [mtvservices:embedded] Update config URL
  1723. + [abc:iview] Add extractor (#6148)
  1724. version 2016.08.22
  1725. Core
  1726. * Improve formats and subtitles extension auto calculation
  1727. + Recognize full unit names in parse_filesize
  1728. + Add support for m3u8 manifests in HTML5 multimedia tags
  1729. * Fix octal/hexadecimal number detection in js_to_json
  1730. Extractors
  1731. + [ivi] Add support for 720p and 1080p
  1732. + [charlierose] Add new extractor (#10382)
  1733. * [1tv] Fix extraction (#9249)
  1734. * [twitch] Renew authentication
  1735. * [kaltura] Improve subtitles extension calculation
  1736. + [zingmp3] Add support for video clips
  1737. * [zingmp3] Fix extraction (#10041)
  1738. * [kaltura] Improve subtitles extraction (#10279)
  1739. * [cultureunplugged] Fix extraction (#10330)
  1740. + [cnn] Add support for money.cnn.com (#2797)
  1741. * [cbsnews] Fix extraction (#10362)
  1742. * [cbs] Fix extraction (#10393)
  1743. + [litv] Support 'promo' URLs (#10385)
  1744. * [snotr] Fix extraction (#10338)
  1745. * [n-tv.de] Fix extraction (#10331)
  1746. * [globo:article] Relax URL and video id regular expressions (#10379)
  1747. version 2016.08.19
  1748. Core
  1749. - Remove output template description from --help
  1750. * Recognize lowercase units in parse_filesize
  1751. Extractors
  1752. + [porncom] Add extractor for porn.com (#2251, #10251)
  1753. + [generic] Add support for DBTV embeds
  1754. * [vk:wallpost] Fix audio extraction for new site layout
  1755. * [vk] Fix authentication
  1756. + [hgtvcom:show] Add extractor for hgtv.com shows (#10365)
  1757. + [discoverygo] Add support for another GO network sites
  1758. version 2016.08.17
  1759. Core
  1760. + Add _get_netrc_login_info
  1761. Extractors
  1762. * [mofosex] Extract all formats (#10335)
  1763. + [generic] Add support for vbox7 embeds
  1764. + [vbox7] Add support for embed URLs
  1765. + [viafree] Add extractor (#10358)
  1766. + [mtg] Add support for viafree URLs (#10358)
  1767. * [theplatform] Extract all subtitles per language
  1768. + [xvideos] Fix HLS extraction (#10356)
  1769. + [amcnetworks] Add extractor
  1770. + [bbc:playlist] Add support for pagination (#10349)
  1771. + [fxnetworks] Add extractor (#9462)
  1772. * [cbslocal] Fix extraction for SendtoNews-based videos
  1773. * [sendtonews] Fix extraction
  1774. * [jwplatform] Extract video id from JWPlayer data
  1775. - [zippcast] Remove extractor (#10332)
  1776. + [viceland] Add extractor (#8799)
  1777. + [adobepass] Add base extractor for Adobe Pass Authentication
  1778. * [life:embed] Improve extraction
  1779. * [vgtv] Detect geo restricted videos (#10348)
  1780. + [uplynk] Add extractor
  1781. * [xiami] Fix extraction (#10342)
  1782. version 2016.08.13
  1783. Core
  1784. * Show progress for curl external downloader
  1785. * Forward more options to curl external downloader
  1786. Extractors
  1787. * [pbs] Fix description extraction
  1788. * [franceculture] Fix extraction (#10324)
  1789. * [pornotube] Fix extraction (#10322)
  1790. * [4tube] Fix metadata extraction (#10321)
  1791. * [imgur] Fix width and height extraction (#10325)
  1792. * [expotv] Improve extraction
  1793. + [vbox7] Fix extraction (#10309)
  1794. - [tapely] Remove extractor (#10323)
  1795. * [muenchentv] Fix extraction (#10313)
  1796. + [24video] Add support for .me and .xxx TLDs
  1797. * [24video] Fix comment count extraction
  1798. * [sunporno] Add support for embed URLs
  1799. * [sunporno] Fix metadata extraction (#10316)
  1800. + [hgtv] Add extractor for hgtv.ca (#3999)
  1801. - [pbs] Remove request to unavailable API
  1802. + [pbs] Add support for high quality HTTP formats
  1803. + [crunchyroll] Add support for HLS formats (#10301)
  1804. version 2016.08.12
  1805. Core
  1806. * Subtitles are now written as is. Newline conversions are disabled. (#10268)
  1807. + Recognize more formats in unified_timestamp
  1808. Extractors
  1809. - [goldenmoustache] Remove extractor (#10298)
  1810. * [drtuber] Improve title extraction
  1811. * [drtuber] Make dislike count optional (#10297)
  1812. * [chirbit] Fix extraction (#10296)
  1813. * [francetvinfo] Relax URL regular expression
  1814. * [rtlnl] Relax URL regular expression (#10282)
  1815. * [formula1] Relax URL regular expression (#10283)
  1816. * [wat] Improve extraction (#10281)
  1817. * [ctsnews] Fix extraction
  1818. version 2016.08.10
  1819. Core
  1820. * Make --metadata-from-title non fatal when title does not match the pattern
  1821. * Introduce options for randomized sleep before each download
  1822. --min-sleep-interval and --max-sleep-interval (#9930)
  1823. * Respect default in _search_json_ld
  1824. Extractors
  1825. + [uol] Add extractor for uol.com.br (#4263)
  1826. * [rbmaradio] Fix extraction and extract all formats (#10242)
  1827. + [sonyliv] Add extractor for sonyliv.com (#10258)
  1828. * [aparat] Fix extraction
  1829. * [cwtv] Extract HTTP formats
  1830. + [rozhlas] Add extractor for prehravac.rozhlas.cz (#10253)
  1831. * [kuwo:singer] Fix extraction
  1832. version 2016.08.07
  1833. Core
  1834. + Add support for TV Parental Guidelines ratings in parse_age_limit
  1835. + Add decode_png (#9706)
  1836. + Add support for partOfTVSeries in JSON-LD
  1837. * Lower master M3U8 manifest preference for better format sorting
  1838. Extractors
  1839. + [discoverygo] Add extractor (#10245)
  1840. * [flipagram] Make JSON-LD extraction non fatal
  1841. * [generic] Make JSON-LD extraction non fatal
  1842. + [bbc] Add support for morph embeds (#10239)
  1843. * [tnaflixnetworkbase] Improve title extraction
  1844. * [tnaflix] Fix metadata extraction (#10249)
  1845. * [fox] Fix theplatform release URL query
  1846. * [openload] Fix extraction (#9706)
  1847. * [bbc] Skip duplicate manifest URLs
  1848. * [bbc] Improve format code
  1849. + [bbc] Add support for DASH and F4M
  1850. * [bbc] Improve format sorting and listing
  1851. * [bbc] Improve playlist extraction
  1852. + [pokemon] Add extractor (#10093)
  1853. + [condenast] Add fallback scenario for video info extraction
  1854. version 2016.08.06
  1855. Core
  1856. * Add support for JSON-LD root list entries (#10203)
  1857. * Improve unified_timestamp
  1858. * Lower preference of RTSP formats in generic sorting
  1859. + Add support for multiple properties in _og_search_property
  1860. * Improve password hiding from verbose output
  1861. Extractors
  1862. + [adultswim] Add support for trailers (#10235)
  1863. * [archiveorg] Improve extraction (#10219)
  1864. + [jwplatform] Add support for playlists
  1865. + [jwplatform] Add support for relative URLs
  1866. * [jwplatform] Improve audio detection
  1867. + [tvplay] Capture and output native error message
  1868. + [tvplay] Extract series metadata
  1869. + [tvplay] Add support for subtitles (#10194)
  1870. * [tvp] Improve extraction (#7799)
  1871. * [cbslocal] Fix timestamp parsing (#10213)
  1872. + [naver] Add support for subtitles (#8096)
  1873. * [naver] Improve extraction
  1874. * [condenast] Improve extraction
  1875. * [engadget] Relax URL regular expression
  1876. * [5min] Fix extraction
  1877. + [nationalgeographic] Add support for Episode Guide
  1878. + [kaltura] Add support for subtitles
  1879. * [kaltura] Optimize network requests
  1880. + [vodplatform] Add extractor for vod-platform.net
  1881. - [gamekings] Remove extractor
  1882. * [limelight] Extract HTTP formats
  1883. * [ntvru] Fix extraction
  1884. + [comedycentral] Re-add :tds and :thedailyshow shortnames
  1885. version 2016.08.01
  1886. Fixed/improved extractors
  1887. - [yandexmusic:track] Adapt to changes in track location JSON (#10193)
  1888. - [bloomberg] Support another form of player (#10187)
  1889. - [limelight] Skip DRM protected videos
  1890. - [safari] Relax regular expressions for URL matching (#10202)
  1891. - [cwtv] Add support for cwtvpr.com (#10196)
  1892. version 2016.07.30
  1893. Fixed/improved extractors
  1894. - [twitch:clips] Sort formats
  1895. - [tv2] Use m3u8_native
  1896. - [tv2:article] Fix video detection (#10188)
  1897. - rtve (#10076)
  1898. - [dailymotion:playlist] Optimize download archive processing (#10180)
  1899. version 2016.07.28
  1900. Fixed/improved extractors
  1901. - shared (#10170)
  1902. - soundcloud (#10179)
  1903. - twitch (#9767)
  1904. version 2016.07.26.2
  1905. Fixed/improved extractors
  1906. - smotri
  1907. - camdemy
  1908. - mtv
  1909. - comedycentral
  1910. - cmt
  1911. - cbc
  1912. - mgtv
  1913. - orf
  1914. version 2016.07.24
  1915. New extractors
  1916. - arkena (#8682)
  1917. - lcp (#8682)
  1918. Fixed/improved extractors
  1919. - facebook (#10151)
  1920. - dailymail
  1921. - telegraaf
  1922. - dcn
  1923. - onet
  1924. - tvp
  1925. Miscellaneous
  1926. - Support $Time$ in DASH manifests
  1927. version 2016.07.22
  1928. New extractors
  1929. - odatv (#9285)
  1930. Fixed/improved extractors
  1931. - bbc
  1932. - youjizz (#10131)
  1933. - youtube (#10140)
  1934. - pornhub (#10138)
  1935. - eporner (#10139)
  1936. version 2016.07.17
  1937. New extractors
  1938. - nintendo (#9986)
  1939. - streamable (#9122)
  1940. Fixed/improved extractors
  1941. - ard (#10095)
  1942. - mtv
  1943. - comedycentral (#10101)
  1944. - viki (#10098)
  1945. - spike (#10106)
  1946. Miscellaneous
  1947. - Improved twitter player detection (#10090)
  1948. version 2016.07.16
  1949. New extractors
  1950. - ninenow (#5181)
  1951. Fixed/improved extractors
  1952. - rtve (#10076)
  1953. - brightcove
  1954. - 3qsdn
  1955. - syfy (#9087, #3820, #2388)
  1956. - youtube (#10083)
  1957. Miscellaneous
  1958. - Fix subtitle embedding for video-only and audio-only files (#10081)
  1959. version 2016.07.13
  1960. New extractors
  1961. - rudo
  1962. Fixed/improved extractors
  1963. - biobiochiletv
  1964. - tvplay
  1965. - dbtv
  1966. - brightcove
  1967. - tmz
  1968. - youtube (#10059)
  1969. - shahid (#10062)
  1970. - vk
  1971. - ellentv (#10067)
  1972. version 2016.07.11
  1973. New Extractors
  1974. - roosterteeth (#9864)
  1975. Fixed/improved extractors
  1976. - miomio (#9605)
  1977. - vuclip
  1978. - youtube
  1979. - vidzi (#10058)
  1980. version 2016.07.09.2
  1981. Fixed/improved extractors
  1982. - vimeo (#1638)
  1983. - facebook (#10048)
  1984. - lynda (#10047)
  1985. - animeondemand
  1986. Fixed/improved features
  1987. - Embedding subtitles no longer throws an error with problematic inputs (#9063)
  1988. version 2016.07.09.1
  1989. Fixed/improved extractors
  1990. - youtube
  1991. - ard
  1992. - srmediatek (#9373)
  1993. version 2016.07.09
  1994. New extractors
  1995. - Flipagram (#9898)
  1996. Fixed/improved extractors
  1997. - telecinco
  1998. - toutv
  1999. - radiocanada
  2000. - tweakers (#9516)
  2001. - lynda
  2002. - nick (#7542)
  2003. - polskieradio (#10028)
  2004. - le
  2005. - facebook (#9851)
  2006. - mgtv
  2007. - animeondemand (#10031)
  2008. Fixed/improved features
  2009. - `--postprocessor-args` and `--downloader-args` now accepts non-ASCII inputs
  2010. on non-Windows systems
  2011. version 2016.07.07
  2012. New extractors
  2013. - kamcord (#10001)
  2014. Fixed/improved extractors
  2015. - spiegel (#10018)
  2016. - metacafe (#8539, #3253)
  2017. - onet (#9950)
  2018. - francetv (#9955)
  2019. - brightcove (#9965)
  2020. - daum (#9972)
  2021. version 2016.07.06
  2022. Fixed/improved extractors
  2023. - youtube (#10007, #10009)
  2024. - xuite
  2025. - stitcher
  2026. - spiegel
  2027. - slideshare
  2028. - sandia
  2029. - rtvnh
  2030. - prosiebensat1
  2031. - onionstudios
  2032. version 2016.07.05
  2033. Fixed/improved extractors
  2034. - brightcove
  2035. - yahoo (#9995)
  2036. - pornhub (#9997)
  2037. - iqiyi
  2038. - kaltura (#5557)
  2039. - la7
  2040. - Changed features
  2041. - Rename --cn-verfication-proxy to --geo-verification-proxy
  2042. Miscellaneous
  2043. - Add script for displaying downloads statistics
  2044. version 2016.07.03.1
  2045. Fixed/improved extractors
  2046. - theplatform
  2047. - aenetworks
  2048. - nationalgeographic
  2049. - hrti (#9482)
  2050. - facebook (#5701)
  2051. - buzzfeed (#5701)
  2052. - rai (#8617, #9157, #9232, #8552, #8551)
  2053. - nationalgeographic (#9991)
  2054. - iqiyi
  2055. version 2016.07.03
  2056. New extractors
  2057. - hrti (#9482)
  2058. Fixed/improved extractors
  2059. - vk (#9981)
  2060. - facebook (#9938)
  2061. - xtube (#9953, #9961)
  2062. version 2016.07.02
  2063. New extractors
  2064. - fusion (#9958)
  2065. Fixed/improved extractors
  2066. - twitch (#9975)
  2067. - vine (#9970)
  2068. - periscope (#9967)
  2069. - pornhub (#8696)
  2070. version 2016.07.01
  2071. New extractors
  2072. - 9c9media
  2073. - ctvnews (#2156)
  2074. - ctv (#4077)
  2075. Fixed/Improved extractors
  2076. - rds
  2077. - meta (#8789)
  2078. - pornhub (#9964)
  2079. - sixplay (#2183)
  2080. New features
  2081. - Accept quoted strings across multiple lines (#9940)