aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor
Commit message (Collapse)AuthorAgeFilesLines
* [eighttracks] modernizePhilipp Hagemeister2014-08-261-57/+81
|
* Merge branch 'master' of github.com:rg3/youtube-dlPhilipp Hagemeister2014-08-252-2/+1
|\
| * [generic] Remove debug statementJaime Marquínez Ferrándiz2014-08-251-1/+0
| |
| * [bliptv] Remove superfluous characters in _VALID_URL regexJaime Marquínez Ferrándiz2014-08-251-1/+1
| |
* | [generic] Fix rss under Python 2.x and move test to extractorPhilipp Hagemeister2014-08-251-0/+10
| |
* | [googlesearch] Move test to extractorPhilipp Hagemeister2014-08-251-0/+8
|/
* [wat] Use server time and pass country argument (Closes #3579)Sergey M․2014-08-251-21/+34
|
* [extractor/common] Generate better f4m format IDsPhilipp Hagemeister2014-08-251-2/+6
|
* [rtlnl] Extract durationPhilipp Hagemeister2014-08-251-1/+5
|
* [wat] Remove unused importPhilipp Hagemeister2014-08-251-1/+0
|
* [vimeo] Always pass in referer (Fixes #3582)Philipp Hagemeister2014-08-251-0/+15
|
* [wat] Make geolock a warning (Fixes #3579)Philipp Hagemeister2014-08-241-1/+2
|
* [generic] remove unused importsPhilipp Hagemeister2014-08-241-2/+0
|
* Merge remote-tracking branch 'riking/twofactor'Philipp Hagemeister2014-08-242-1/+89
|\
| * Remove debug printsriking2014-08-161-2/+0
| |
| * [youtube] Add two-factor account signin (TOTP only)riking2014-08-162-1/+91
| | | | | | | | | | | | Additional work is required to prompt the user for the SMS or phone call codes, as there is no framework currently to prompt the user during an extraction operation. Fixes #3533
* | [gameone:playlist] Move test to extractorPhilipp Hagemeister2014-08-241-1/+12
| |
* | Merge remote-tracking branch 'olebowle/gameone'Philipp Hagemeister2014-08-242-1/+18
|\ \
| * | [gameone] simplify playlist extractorOle Ernst2014-07-231-3/+1
| | |
| * | [gameone] add playlist capabilityOle Ernst2014-07-132-1/+20
| | |
* | | [generic] Use default opener for HEAD request (Fixes #3528)Philipp Hagemeister2014-08-241-58/+6
| | |
* | | [expotv] Add new extractor (Fixes #3552)Philipp Hagemeister2014-08-242-0/+74
| | |
* | | [pornotube] ModernizePhilipp Hagemeister2014-08-241-21/+24
| | |
* | | [generic] Automatic detection of flow player and age_limit (Fixes #3576)Philipp Hagemeister2014-08-241-0/+32
| | |
* | | [ministrygrid] Add extractor (Fixes #2900)Philipp Hagemeister2014-08-243-1/+70
| | |
* | | [wayofthemaster] Remove unused importPhilipp Hagemeister2014-08-241-1/+0
| | |
* | | [wayofthemaster] Add extractor (Fixes #3575)Philipp Hagemeister2014-08-242-0/+54
| | |
* | | [ebaumsworld] Remove spurious determine_extPhilipp Hagemeister2014-08-241-2/+0
| | |
* | | [ebaumsworld] ModernizePhilipp Hagemeister2014-08-241-6/+9
| | |
* | | [bip.tv] Allow underscore in lookup ids (Fixes #3573)Philipp Hagemeister2014-08-242-2/+2
| | |
* | | [blip.tv] Add legacy test casePhilipp Hagemeister2014-08-241-1/+16
| | | | | | | | | | | | This was broken in the mean time, so add a test case to make sure it doesn't break silently again.
* | | [arte.tv:creative] Fix test casePhilipp Hagemeister2014-08-241-0/+2
| | |
* | | [arte:creative] Support more URLs (fixes #3572)Philipp Hagemeister2014-08-241-5/+13
| | |
* | | [brightcove] Add support for videoId= in og:video meta (Fixes #3571)Philipp Hagemeister2014-08-241-2/+4
| | |
* | | [brightcove] Detect geoblockingPhilipp Hagemeister2014-08-241-0/+7
| | |
* | | [generic] Require og:video URLs to contain a dotPhilipp Hagemeister2014-08-241-1/+1
| | |
* | | [generic] Prevent from downloading a .swf as a videoPhilipp Hagemeister2014-08-241-1/+6
| | | | | | | | | | | | We're seeing quite a number of people who do not put a video file in the og:video field, but the player URL. Try to detect some of these and filter them out.
* | | [brightcove] Add a truncated URL warning message (#3571)Philipp Hagemeister2014-08-241-1/+5
| | |
* | | [grooveshark] Use proper importsPhilipp Hagemeister2014-08-241-16/+15
| | |
* | | [generic] Add support for camtasia videos (Fixes #3574)Philipp Hagemeister2014-08-241-0/+67
| | |
* | | Merge remote-tracking branch 'origin/master'Philipp Hagemeister2014-08-241-12/+55
|\ \ \
| * | | [wat] Add support for SD and HD videos (Closes #3558)Sergey M․2014-08-241-12/+55
| | | |
* | | | [grooveshark] Fix test md5sumPhilipp Hagemeister2014-08-241-2/+1
| | | |
* | | | [grooveshark,http] Make HTTP POST downloads workPhilipp Hagemeister2014-08-242-39/+32
| | | |
* | | | Merge remote-tracking branch 'sehrgut/Grooveshark'Philipp Hagemeister2014-08-232-0/+206
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | Conflicts: youtube_dl/__init__.py youtube_dl/extractor/__init__.py
| * | | Fixed errors found by travisci:Keith Beckman2014-05-201-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | py26: re.split can't take flags. use inline flags or re.compile py27: info_dict must be serializable. remove request object py335, py34: no urlparse module. use utils.compat_urlparse
| * | | Fixed pyflakes and pep8 warningsKeith Beckman2014-05-201-21/+24
| | | |
| * | | Added new IE for GroovesharkKeith Beckman2014-05-202-0/+201
| | | |
* | | | [sbs] Add new extractor (Fixes #3566)Philipp Hagemeister2014-08-233-0/+64
| | | |
* | | | [rtlnl] Remove unused codePhilipp Hagemeister2014-08-231-1/+0
| | | |