ChangeLog 82 KB

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