aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-24[instagram] Extract embed videos (#8817)Yen Chi Hsuan
2016-03-23[tumblr] Support Vine embeds (#8817)Yen Chi Hsuan
2016-03-23[generic] Support Vine embeds (#8817)Yen Chi Hsuan
2016-03-23[test/test_utils] Update for escape_url change (again)Yen Chi Hsuan
2016-03-23[test/test_utils] Update for escape_url changeYen Chi Hsuan
2016-03-23Merge pull request #8898 from dstftw/fragment-retriesSergey M
Add --fragment-retries option (Fixes #8466)
2016-03-23[tunein] Fix stream data extraction (Closes #8899, closes #8924)Sergey M․
2016-03-23[utils] Encode hostnames before passing to urllibYen Chi Hsuan
With IDN (Internationalized Domain Name) and a proxy, non-ascii URLs are passed down to urllib/urllib2, causing UnicodeEncodeError Fixes #8890
2016-03-22Add extractor for thescene.com (closes #8929)Jaime Marquínez Ferrándiz
2016-03-22[once] Prevent ads from embedding into m3u8 playlists (Closes #8893)Sergey M․
2016-03-22[laola1tv] Add support for livestreams (Closes #8934)Sergey M․
2016-03-22[ceskatelevize] Make m3u8 formats extraction non fatal (Closes #8933)Sergey M․
2016-03-21[animeondemand] Skip dash for nowSergey M․
2016-03-21[animeondemand] Extract teaser when no full episode available (#8923)Sergey M․
2016-03-21[animeondemand] Respect startvideo (Closes #8923)Sergey M․
2016-03-21[motherless] Detect friends only videosSergey M․
2016-03-21[xhamster:embed] Extract vars (Closes #8912)Sergey M․
2016-03-21[rutv] Improve flash version pattern (Closes #8911)Sergey M․
2016-03-21Add support for https for all extractors as preventive and future-proof measureSergey M․
2016-03-21Add missing r prefix for _VALID_URLsSergey M․
2016-03-21[mailru] Add support for https (Closes #8920)Sergey M․
2016-03-20[YoutubeDL] Improve _format_noteSergey M․
2016-03-20[animeondemand] Extract all formats (Closes #8906)Sergey M․
2016-03-20[animeondemand] Detect geo restrictionSergey M․
2016-03-20[kwuo] Fix KuwoChartIE and KuwoSingerIE and accept new URL formsYen Chi Hsuan
2016-03-20Credit @vitstradal for the key algorithm in OpenloadIE (#8489)Yen Chi Hsuan
[ci skip]
2016-03-20[vlive] Fix creator extraction (closes #8814)Yen Chi Hsuan
2016-03-20README: document that BSD make is also supported (#8902)Jaime Marquínez Ferrándiz
2016-03-20[openload] Misc improvementsYen Chi Hsuan
* Add thumbnail * Detect errors (#6469) * Match more (#6469, #8489)
2016-03-20[openload] Add new extractor (closes #8489)Yen Chi Hsuan
2016-03-20[tudou] Use InAdvancePagedList (closes #8884)Yen Chi Hsuan
2016-03-20[francetv] Improve formats extractionSergey M․
2016-03-20[francetvinfo] Add support for france3-regions and strip title (Closes #7673)Sergey M․
2016-03-20Merge pull request #8902 from jaimeMF/bmakeSergey M
Makefile: make it compatible with bmake
2016-03-20[discovery] Relax _VALID_URL (Closes #8903)Sergey M․
2016-03-20[postprocessort/ffmpeg] Allow embedding webvtt into webm (Closes #8874)Sergey M․
2016-03-19Makefile: make it compatible with bmakeJaime Marquínez Ferrándiz
It's the portable version of BSD make: http://crufty.net/help/sjg/bmake.html The syntax for conditionals is different in GNU make and BSD make, so we use the shell
2016-03-19tox.ini: Exclude test_iqiyi_sdk_interpreter.pyJaime Marquínez Ferrándiz
2016-03-20[91porn] Use common messages' wordingSergey M․
2016-03-20[91porn] Unquote final URL (Closes #8881)Sergey M․
2016-03-20Credit @jjatria for biobiochiletv (#7314)Sergey M․
2016-03-20[biobiochiletv] Fix extraction, extract m3u8 formats and overall improve ↵Sergey M․
(Closes #7314)
2016-03-20[biobiotv] Add extractorjjatria
2016-03-19Credit @kasper93 for cda (#8805)Sergey M․
2016-03-19[cda] Improve and simplify (Closes #8805)Sergey M․
2016-03-19[cda] Add new extractor for cda.plKacper Michajłow
Fixes #8760
2016-03-19[safari:api] Separate extractor (Closes #8871)Sergey M․
2016-03-19[downloader/fragment] Document fragment_retriesSergey M․
2016-03-19[downloader/{common,fragment}] Fix total retries reporting on python 2.6Sergey M․
2016-03-19[downloader/dash] Add fragment retry capabilitySergey M․
YouTube may often return 404 HTTP error for a fragment causing the whole download to fail. However if the same fragment is immediately retried with the same request data this usually succeeds (1-2 attemps is usually enough) thus allowing to download the whole file successfully. So, we will retry all fragments that fail with 404 HTTP error for now.