aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_YoutubeDL.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove the --max-quality optionJaime Marquínez Ferrándiz2015-04-251-33/+0
| | | | | It doesn't work well with 'bestvideo' and 'bestaudio' because they are usually before the max quality. Format filters should be used instead, they are more flexible and don't require the requested quality to exist for each video.
* Postprocessors: use a list for the files that can be deletedJaime Marquínez Ferrándiz2015-04-181-6/+15
| | | | We could only know if we had to delete the original file, but this system allows to specify us more files (like subtitles).
* [test/YoutubeDL] test match_filterJaime Marquínez Ferrándiz2015-03-201-0/+68
|
* [test/YoutubeDL] split in two classesJaime Marquínez Ferrándiz2015-03-201-0/+2
| | | | The name was misleading
* [test/YoutubeDL] Use valid urlsJaime Marquínez Ferrándiz2015-03-141-22/+24
| | | | It failed on python 3.4 when building the http_headers field
* [YoutubeDL] only add normal subtitles to the 'requested_subtitles' field if ↵Jaime Marquínez Ferrándiz2015-02-221-0/+7
| | | | 'writesubtitles' is True
* [test/YoutubeDL] Add test for subtitlesJaime Marquínez Ferrándiz2015-02-221-0/+52
| | | | Updated the offlinetest make target to not skip it
* [test/test_YoutubeDL] Remove debug print callJaime Marquínez Ferrándiz2015-02-061-1/+0
|
* [test/YoutubeDL] Add a simple test for postprocesorsJaime Marquínez Ferrándiz2015-02-061-0/+32
| | | | Just checks that the 'keepvideo' option works as intended.
* [YoutubeDL] Allow filtering by properties (Fixes #4584)Philipp Hagemeister2015-01-231-0/+55
|
* [YoutubeDL] Allow selection by more extensionsPhilipp Hagemeister2015-01-081-0/+33
|
* [tests] Remove format 138 from tests (#4559)Philipp Hagemeister2015-01-041-1/+1
|
* PEP8 appliedJouke Waleson2014-11-231-0/+1
|
* [test_YoutubeDL] Reorder formats (#3542)Philipp Hagemeister2014-08-221-1/+1
|
* fixed (what I assume was a typo) that caused test_format_note to always fail.codesparkle2014-05-211-2/+2
| | | | This test was introduced in c57f7757101690681af2eb8c40c8bf81bbe6e64f.
* [YoutubeDL] Add simple tests for format_note (Closes #2825)Philipp Hagemeister2014-04-301-1/+7
|
* [tests] Fix YoutubeDL testsPhilipp Hagemeister2014-04-041-31/+43
| | | | Since bec1fad, the id, title, and url (also in formats) keys are mandatory. Change the tests to reflect that.
* Add bestvideo and worstvideo to special format names (#2163)Jaime Marquínez Ferrándiz2014-03-141-0/+18
|
* Use unicode_literals in test_YoutubeDLPhilipp Hagemeister2014-01-221-62/+64
|
* Add -f bestaudio (Fixes #2163)Philipp Hagemeister2014-01-221-0/+30
|
* Add more tests for format selectionPhilipp Hagemeister2013-12-241-9/+66
|
* [YoutubeDL] fix tests (Closes #2036)Philipp Hagemeister2013-12-231-8/+8
|
* Set 'NA' as the default value for missing fields in the output template ↵Jaime Marquínez Ferrándiz2013-12-091-0/+15
| | | | | | (fixes #1931) Remove the `except KeyError` clause, it won't get raised anymore
* 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
* Fix YouTubeDL testPhilipp Hagemeister2013-10-281-4/+4
|
* 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-181-2/+41
|
* Fix testPhilipp Hagemeister2013-10-181-7/+18
|
* Implement the prefer_free_formats in YoutubeDLJaime Marquínez Ferrándiz2013-10-111-0/+49