ChangeLog 75 KB

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