ChangeLog 57 KB

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