aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/eighttracks.py
Commit message (Collapse)AuthorAgeFilesLines
* [refactor] Single quotes consistencySergey M․2016-02-141-54/+54
|
* [eighttracks] Remove unused importJaime Marquínez Ferrándiz2015-03-141-1/+0
|
* [8tracks] ModernizeSergey M․2015-03-141-2/+1
|
* [8tracks] Improve extractionSergey M․2015-03-141-3/+4
|
* [8tracks] Use predefined avg duration when duration is negative (Closes #5200)Sergey M․2015-03-141-0/+3
|
* [eighttracks] PEP8Philipp Hagemeister2015-01-101-1/+0
|
* [eighttracks] Improve waiting (#3954)Philipp Hagemeister2015-01-101-3/+4
|
* Merge remote-tracking branch 'lenaten/8tracks'Philipp Hagemeister2015-01-101-4/+23
|\
| * fix increment operatornetanel2014-12-061-1/+1
| |
| * Fix #2310. Play by the 8tracks rulesnet2014-10-151-4/+23
| |
* | Fix imports and general cleanupPhilipp Hagemeister2014-12-131-1/+1
| | | | | | | | | | | | | | | | · 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
* | Remove useless u prefixesPhilipp Hagemeister2014-11-261-1/+1
|/
* [eighttracks] modernizePhilipp Hagemeister2014-08-261-57/+81
|
* Correct some extractor _VALID_URL regexesdst2013-12-041-1/+1
|
* Clean up unused imports and other minor mistakesPhilipp Hagemeister2013-11-201-1/+0
|
* [8tracks] Use track count instead of looking at at_last_track propertyPhilipp Hagemeister2013-10-251-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the error: $ youtube-dl http://8tracks.com/vladmc/counting-stars [8tracks] counting-stars: Downloading webpage [8tracks] counting-stars: Downloading song information 1/4 [8tracks] counting-stars: Downloading song information 2/4 [8tracks] counting-stars: Downloading song information 3/4 [8tracks] counting-stars: Downloading song information 4/4 [8tracks] counting-stars: Downloading song information 5/4 Traceback (most recent call last): File "/usr/lib/python2.7/runpy.py", line 162, in _run_module_as_main "__main__", fname, loader, pkg_name) File "/usr/lib/python2.7/runpy.py", line 72, in _run_code exec code in run_globals File "/home/phihag/projects/youtube-dl/youtube_dl/__main__.py", line 18, in <module> youtube_dl.main() File "/home/phihag/projects/youtube-dl/youtube_dl/__init__.py", line 761, in main _real_main(argv) File "/home/phihag/projects/youtube-dl/youtube_dl/__init__.py", line 714, in _real_main retcode = ydl.download(all_urls) File "/home/phihag/projects/youtube-dl/youtube_dl/YoutubeDL.py", line 701, in download videos = self.extract_info(url) File "/home/phihag/projects/youtube-dl/youtube_dl/YoutubeDL.py", line 342, in extract_info ie_result = ie.extract(url) File "/home/phihag/projects/youtube-dl/youtube_dl/extractor/common.py", line 121, in extract return self._real_extract(url) File "/home/phihag/projects/youtube-dl/youtube_dl/extractor/eighttracks.py", line 111, in _real_extract 'id': track_data['id'], KeyError: 'id'
* [eighttracks] move testPhilipp Hagemeister2013-06-271-0/+71
|
* [8tracks] Move into own filePhilipp Hagemeister2013-06-231-0/+51