summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | Add offlinetest make targetPhilipp Hagemeister2014-12-141-1/+15
| | | | | |
* | | | | | [yesjapan] Look for datetime inside `submit_info`Naglis Jonaitis2014-12-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Oops..
* | | | | | [yesjapan] Add new extractor (Closes #4466)Naglis Jonaitis2014-12-142-0/+63
| | | | | |
* | | | | | [youtube] Fix player ID detectionPhilipp Hagemeister2014-12-141-1/+1
| | | | | |
* | | | | | release 2014.12.14Philipp Hagemeister2014-12-141-1/+1
| | | | | |
* | | | | | [rtp] Also match e-id-less URLs (#4382)Philipp Hagemeister2014-12-141-3/+6
| | | | | |
* | | | | | release 2014.12.13.1Philipp Hagemeister2014-12-131-1/+1
| | | | | |
* | | | | | [bandcamp:album] Do not match plain Bandcamp URLs (#4461)Philipp Hagemeister2014-12-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | The _VALID_URL 1fa174692aae06406c9524fec392a131f10c68fe is to broad, since it matches everything beginning with bandcamp.com.
* | | | | | [utils] Do not make an exception for SSLv3Philipp Hagemeister2014-12-131-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SSLv3 is terminally vulnerable to POODLE; web browsers are currently deprecating/removing it. Closes #4459, fixes #4294
* | | | | | [utils] Make ssl work on Python 2.7.8Philipp Hagemeister2014-12-131-2/+8
| | | | | |
* | | | | | release 2014.12.13Philipp Hagemeister2014-12-131-1/+1
| | | | | |
* | | | | | Merge remote-tracking branch 'fstirlitz/master'Philipp Hagemeister2014-12-131-0/+1
|\ \ \ \ \ \
| * | | | | | [comcarcoff] add webpage_url datumfelix2014-12-121-0/+1
| | | | | | |
* | | | | | | Merge branch 'master' of github.com:rg3/youtube-dlPhilipp Hagemeister2014-12-134-1/+49
|\ \ \ \ \ \ \
| * | | | | | | Credit @Mortal for restudy (#4463)Sergey M․2014-12-141-0/+1
| | | | | | | |
| * | | | | | | Merge branch 'Mortal-restudy'Sergey M․2014-12-142-0/+41
| |\ \ \ \ \ \ \
| | * | | | | | | [restudy] Simplify and extract all formatsSergey M․2014-12-141-19/+18
| | | | | | | | |
| | * | | | | | | [Restudy] Add new extractor for restudy.dkMathias Rav2014-12-132-0/+42
| |/ / / / / / /
| * | | | | | | [bandcamp:album] Make path optional (Closes #4461)Sergey M․2014-12-141-1/+7
| | | | | | | |
| * | | | | | | [bbccouk] Fix vpid warningSergey M․2014-12-131-1/+1
| | | | | | | |
| * | | | | | | [adultswim] Improve segment duration extractionSergey M․2014-12-131-1/+4
| | | | | | | |
| * | | | | | | Merge pull request #3927 from qrtt1/masterPhilipp Hagemeister2014-12-131-0/+1
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | apply ratelimit to f4m
| | * | | | | | | apply ratelimit to f4mChing Yi, Chan2014-10-121-0/+1
| | | | | | | | |
| * | | | | | | | [test_unicode_literals] Import from test.helperJaime Marquínez Ferrándiz2014-12-131-1/+1
| | | | | | | | |
* | | | | | | | | Merge branch 'master' of github.com:rg3/youtube-dlPhilipp Hagemeister2014-12-134-3/+7
| | | | | | | | |
* | | | | | | | | [orf] ModernizePhilipp Hagemeister2014-12-131-14/+14
| | | | | | | | |
* | | | | | | | | [keek] remove unused importPhilipp Hagemeister2014-12-131-2/+0
|/ / / / / / / /
* | | | | | | | [keek] Modernize and extract uploaderPhilipp Hagemeister2014-12-131-10/+18
| | | | | | | |
* | | | | | | | Fix imports and general cleanupPhilipp Hagemeister2014-12-13120-378/+437
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | · Import from compat what comes from compat. Yes, some names are available in utils too, but that's an implementation detail. · Use _match_id consistently whenever possible · Fix some outdated tests · Use consistent valid URL (always match the whole protocol, no ^ at start required) · Use modern test definitions
* | | | | | | | [streamcz] Update extractorPhilipp Hagemeister2014-12-131-37/+41
| | | | | | | |
* | | | | | | | [5min] Remove helper method and modernizePhilipp Hagemeister2014-12-133-40/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, other extractor would go call a private(!) helper method. Instead, just hardcode the 5min:video_id format - it's not if that would ever change.
* | | | | | | | [utils] make_HTTPS_handler: Remove try/except block that would always raise ↵Jaime Marquínez Ferrándiz2014-12-121-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | an exception This code is only run for Python < 3.4, where context.load_default_certs doesn't exist
* | | | | | | | [utils] make_HTTPS_handler: Use ssl.create_default_context in Python 2.7.9Jaime Marquínez Ferrándiz2014-12-121-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new features in the ssl module have been backported from 3.4, see https://docs.python.org/dev/whatsnew/2.7.html#pep-466-network-security-enhancements-for-python-2-7
* | | | | | | | [youtube:playlist] Remove unused propertyJaime Marquínez Ferrándiz2014-12-121-1/+0
| | | | | | | |
* | | | | | | | [youtube:channel] Fix extraction (fixes #4435)Jaime Marquínez Ferrándiz2014-12-121-8/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It uses now the same pagination system as playlists
* | | | | | | | [urort] Update to new multi-format protocolPhilipp Hagemeister2014-12-121-15/+22
| | | | | | | |
* | | | | | | | [comcarcoff] Add unicode_literals declarationPhilipp Hagemeister2014-12-121-0/+2
| | | | | | | |
* | | | | | | | [urort] ModernizePhilipp Hagemeister2014-12-121-3/+1
| |/ / / / / / |/| | | | | |
* | | | | | | [comcarcoff] Adapt c62159ea91a04ef82560472b254aef1cc9f70a11Philipp Hagemeister2014-12-121-1/+3
| | | | | | |
* | | | | | | [comcarcoff] (#4454)Philipp Hagemeister2014-12-123-47/+53
| | | | | | |
* | | | | | | Merge remote-tracking branch 'fstirlitz/master'Philipp Hagemeister2014-12-122-0/+47
|\ \ \ \ \ \ \
| * | | | | | | comediansincarsgettingcoffee.com supportfelix2014-12-122-0/+47
| | | | | | | |
* | | | | | | | [ooyala] Remove test md5sumsPhilipp Hagemeister2014-12-121-2/+0
| | | | | | | |
* | | | | | | | [ninegag] Test for additional propertiesPhilipp Hagemeister2014-12-121-0/+6
| | | | | | | |
* | | | | | | | [pornotube] Adapt to new interfacePhilipp Hagemeister2014-12-121-32/+70
|/ / / / / / /
* | | | | | | [rtp] Add new extractor (Closes #4382)Naglis Jonaitis2014-12-122-0/+58
| | | | | | |
* | | | | | | release 2014.12.12.7Philipp Hagemeister2014-12-121-1/+1
| | | | | | |
* | | | | | | release 2014.12.12.6Philipp Hagemeister2014-12-121-1/+1
| | | | | | |
* | | | | | | [nowvideo] Add .li domain (Closes #4453)Sergey M․2014-12-121-1/+1
| | | | | | |
* | | | | | | release 2014.12.12.5Philipp Hagemeister2014-12-121-1/+1
| | | | | | |