summaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Merge all the subtitles test into a single fileJaime Marquínez Ferrándiz2013-11-104-232/+211
| | | | They reuse a base class
* [ted] Return a single info_dict for talks urlsJaime Marquínez Ferrándiz2013-11-101-5/+3
| | | | It failed with the --list-subs option
* Merge pull request #1705 from iemejia/masterJaime Marquínez Ferrándiz2013-11-101-0/+69
|\ | | | | | | [ted] support for subtitles
| * [ted] fixed error in case of no subtitles presentIsmaël Mejía2013-11-051-0/+6
| | | | | | | | | | I created a test, but I leave it commented since TED videos get new subtitles frequently.
| * Merge remote-tracking branch 'iemejia/master'Ismaël Mejía2013-11-021-0/+9
| |\
| * \ Merge branch 'ted_subtitles'Ismaël Mejía2013-11-021-0/+63
| |\ \
| | * | [ted] Added support for subtitle downloadIsmaël Mejía2013-11-021-0/+63
| | | |
* | | | [soundcloud] Allow to download tracks marked as not 'streamable'Jaime Marquínez Ferrándiz2013-11-091-0/+9
| | | | | | | | | | | | | | | | They use the rtmp protocol but if the are marked as 'downloadable' it can use the direct download link.
* | | | tests: don't run the test if any of the extractors listed in the 'add_ie' ↵Jaime Marquínez Ferrándiz2013-11-061-1/+7
| | | | | | | | | | | | | | | | field is marked as not working
* | | | Set the 'extractor_key' field in the info_dictJaime Marquínez Ferrándiz2013-11-031-1/+1
| | | | | | | | | | | | | | | | It's the string returned by the class method 'ie_key', which allows to retrieve the extractor with 'get_info_extractor'
* | | | Add the 'webpage_url' field to info_dictJaime Marquínez Ferrándiz2013-11-031-0/+3
| | | | | | | | | | | | | | | | | | | | The url for the video page, it must allow to reproduce the result. It's automatically set by YoutubeDL if it's missing.
* | | | Set the extra_info inside YoutubeDL.process_ie_result and set only if the ↵Jaime Marquínez Ferrándiz2013-11-031-0/+12
| |_|/ |/| | | | | | | | keys are missing
* | | [bambuser] Add an extractor for channels (closes #1702)Jaime Marquínez Ferrándiz2013-11-021-0/+9
|/ /
* | Fix the test for dailymotion subtitlesJaime Marquínez Ferrándiz2013-10-311-1/+1
| | | | | | | | The extractor returns a single info_dict now.
* | [tests] a HTTP 503 is a transient issueFilippo Valsorda2013-10-281-1/+2
| |
* | Fix YouTubeDL testPhilipp Hagemeister2013-10-281-4/+4
| |
* | [tests] don't fail on network errorsFilippo Valsorda2013-10-282-5/+34
| | | | | | | | | | | | This is suboptimal, but at least this way we will need to look at the logs only to check for network errors that happen too often, instead of parsing a ton of lines each time to see if there is some true test failing
* | tests: build the filename from the info_dict if the 'file' key is missingJaime Marquínez Ferrándiz2013-10-281-16/+23
| | | | | | | | It will need to have the 'id' and 'ext' keys to work.
* | Allow to use the extension for the format selectionJaime Marquínez Ferrándiz2013-10-211-3/+14
| | | | | | | | The best format with the extension is downloaded.
* | Accept requested formats to be in the format 35/best (closes #1552)Jaime Marquínez Ferrándiz2013-10-211-0/+23
| | | | | | | | The format selection code is now an independent function.
* | Extend #980 with --max-quality supportPhilipp Hagemeister2013-10-182-4/+43
| |
* | Fix testPhilipp Hagemeister2013-10-181-7/+18
| |
* | Merge remote-tracking branch 'jaimeMF/format_selection'Philipp Hagemeister2013-10-181-0/+49
|\ \
| * | Implement the prefer_free_formats in YoutubeDLJaime Marquínez Ferrándiz2013-10-111-0/+49
| | |
* | | Merge branch 'master' of github.com:rg3/youtube-dlPhilipp Hagemeister2013-10-152-2/+1
|\ \ \
| * | | Fix an import in the tests and the Youtube Shows testJaime Marquínez Ferrándiz2013-10-152-2/+1
| | | |
* | | | [generic] Support embedded vimeo videos (#1602)Philipp Hagemeister2013-10-151-0/+16
|/ / /
* | / Simplify testsPhilipp Hagemeister2013-10-1512-117/+148
| |/ |/| | | | | | | | | | | * Make them directly executable again * Move common stuff (md5, parameters) to helper * Never import * * General clean up
* | [youtube] Adds #1312 Download annotationsJai Grimshaw2013-10-141-0/+82
| | | | | | | | | | | | Adds #1321 Download annotations from youtube Annotations are downloaded and written to a .annotations.xml file using the https://www.youtube.com/annotations_invideo?features=1&legacy=1&video_id=$VIDEOID API. Added unit test for annotations.
* | Add an extractor for internetvideoarchive.com videosJaime Marquínez Ferrándiz2013-10-121-0/+14
| | | | | | | | It's used by videodetective.com
* | Add support for single-test tox runsFilippo Valsorda2013-10-128-8/+8
|/ | | | | | Use a sintax like tox test.test_download:TestDownload.test_NowVideo to run the specific test on all the tox environments (Python versions)
* [nhl] Add an extractor for videocenter's categories (#1586)Jaime Marquínez Ferrándiz2013-10-111-0/+10
| | | | It downloads the last 12 videos.
* Simplify test setupPhilipp Hagemeister2013-10-072-14/+2
|
* Allow users to specify an age limit (fixes #1545)Philipp Hagemeister2013-10-061-0/+53
| | | | | With these changes, users can now restrict what videos are downloaded by the intented audience, by specifying their age with --age-limit YEARS . Add rudimentary support in youtube, pornotube, and youporn.
* Move try_rm to test helpersPhilipp Hagemeister2013-10-062-19/+26
|
* [fixup] remove unnecessary commented functionFilippo Valsorda2013-10-051-6/+0
|
* add capability to suppress expected warnings in testsFilippo Valsorda2013-10-053-4/+20
|
* [youtube] correct --no-playlist for python3Filippo Valsorda2013-10-011-0/+1
|
* add test for --no-playlistFilippo Valsorda2013-09-301-0/+7
|
* Work around nosetests nosinessPhilipp Hagemeister2013-09-221-2/+2
|
* Change test target (Verified with node.js)Philipp Hagemeister2013-09-211-1/+1
|
* Restore accidentally deleted commitsPhilipp Hagemeister2013-09-211-0/+80
| | | | That's what happens if you let Windows machines write :(
* [livestream] Fix events extraction (fixes #1467)Jaime Marquínez Ferrándiz2013-09-211-0/+10
|
* [dailymotion] Add an extractor for users (closes #1476)Jaime Marquínez Ferrándiz2013-09-211-1/+15
|
* [youtube] support youtube.googleapis.com/v/* urls (fixes #1425)Jaime Marquínez Ferrándiz2013-09-151-0/+1
|
* [soundcloud] Add an extractor for users (closes #1426)Jaime Marquínez Ferrándiz2013-09-141-1/+9
|
* Now --all-sub is a modifier to --write-sub and --write-auto-sub (closes #1412)Jaime Marquínez Ferrándiz2013-09-142-0/+4
| | | | For keeping backwards compatibility --all-sub sets --write-sub if --write-auto-sub is not given
* [ustream] Simplify channel extractionJaime Marquínez Ferrándiz2013-09-131-7/+21
| | | | | the ChannelParser has been moved to a new function in utils get_meta_content Instead of the SocialStreamParser now it uses a regex
* Merge pull request #1413 from tewe/masterJaime Marquínez Ferrándiz2013-09-131-1/+9
| | | | Add Ustream channel support
* Merge branch 'master' into subtitles_reworkIsmael Mejia2013-09-111-4/+7
|\