ChangeLog 73 KB

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