ChangeLog 49 KB

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