ChangeLog 63 KB

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