ChangeLog 70 KB

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