aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/YoutubeDL.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | | [execafterdownload] Simplify (#3569)Philipp Hagemeister2014-08-251-0/+1
|/ /
* | [YouTubeDL] Correct handling of age_limit = None in resultPhilipp Hagemeister2014-08-221-1/+4
| |
* | Allow playlist test definitions in test_download.Philipp Hagemeister2014-08-211-1/+7
|/ | | | | This moves playlist tests where they belong, i.e. to the extractors themselves. Additionally, all our network interaction configuration for tests in test_download now applies to playlist tests as well.
* [YouTubeDL] Best practices (Closes #3370)Philipp Hagemeister2014-07-251-3/+3
|
* Replace failure handling with up-front check.Philipp Hagemeister2014-07-241-9/+6
| | | | | | | The only time that write_string should fail is if the Python is completely braindead. Check for that condition and output a more accurate warning. See #3326 for details.
* Deletes temp files after postprocess merge unless -k option is specifiedrupertbaxter22014-07-231-1/+1
|
* [YoutubeDL] Make sure we really, really get out the encoding stringPhilipp Hagemeister2014-07-231-4/+11
| | | | | Fixes #3326 Apparently, on some platforms, even outputting this fails already.
* [snotr] PEP8 and minor fixes (#3296)Philipp Hagemeister2014-07-211-0/+4
|
* [YoutubeDL] Show download URL when -v is setPhilipp Hagemeister2014-07-061-0/+2
| | | | This will allow us to debug issues like #3204
* [cnn] Improve thumbnail extractionPhilipp Hagemeister2014-06-071-0/+2
|
* [spiegeltv] Simplify and PEP8Philipp Hagemeister2014-06-071-0/+9
|
* [YoutubeDL] Do not require default output template to be setPhilipp Hagemeister2014-04-301-3/+6
|
* [YoutubeDL] Add simple tests for format_note (Closes #2825)Philipp Hagemeister2014-04-301-46/+46
|
* Fix subtitle download error reporting (Fixes #2724)robbie2014-04-081-1/+1
|
* [utils] Completely rewrite Windows output (Fixes #2672)Philipp Hagemeister2014-04-071-1/+1
|
* Use --encoding when outputtingPhilipp Hagemeister2014-04-071-11/+21
|
* Correct check for empty dirname (Fixes #2683)Philipp Hagemeister2014-04-031-1/+1
|
* [YouTubeDL] Throw an early error if the info_dict result is invalidPhilipp Hagemeister2014-04-031-0/+8
|
* [franceculture] Add extractor (Fixes #2669)Philipp Hagemeister2014-04-031-1/+1
|
* Add new --encoding option (Fixes #2650)Philipp Hagemeister2014-03-301-0/+21
|
* Add --no-warnings option (Fixes #2630)Philipp Hagemeister2014-03-261-0/+3
|
* [instagram] Add support for user profiles (Fixes #2606)Philipp Hagemeister2014-03-231-7/+9
|
* Add --prefer-insecure option (Fixes #2364)Philipp Hagemeister2014-03-211-0/+2
|
* [YoutubeDL] Improve error messagePhilipp Hagemeister2014-03-201-1/+1
|
* Add bestvideo and worstvideo to special format names (#2163)Jaime Marquínez Ferrándiz2014-03-141-0/+12
|
* Rename upload_timestamp to timestampPhilipp Hagemeister2014-03-131-2/+2
|
* [vevo] Centralize timestamp handlingPhilipp Hagemeister2014-03-131-0/+6
|
* [playvid] Simplify (#2539)Philipp Hagemeister2014-03-101-1/+4
|
* Don't install the global url openerJaime Marquínez Ferrándiz2014-03-101-3/+0
| | | | All the code uses now the urlopen method of YoutubeDL
* Don't set the global socket timeoutJaime Marquínez Ferrándiz2014-03-101-3/+2
| | | | Use the timeout argument of the `OpenerDirector.open` method instead
* Correct automatic resolution determinationPhilipp Hagemeister2014-03-101-2/+2
|
* YoutubeDL: If the logger is set call its `warning` method in `report_warning`Jaime Marquínez Ferrándiz2014-03-091-5/+8
|
* YoutubeDL: Use its `urlopen` method for downloading the thumbnail.Jaime Marquínez Ferrándiz2014-03-071-1/+1
|
* Document width, height, and resolution (#1445)Philipp Hagemeister2014-03-041-0/+7
|
* [youtube] Add support for search result URLs (Fixes #2495)Philipp Hagemeister2014-03-041-1/+1
|
* Add display_id fieldPhilipp Hagemeister2014-03-031-0/+3
|
* Some pep8 style fixesJaime Marquínez Ferrándiz2014-01-251-3/+3
|
* [youtube] Add new formats (Fixes #2221)Philipp Hagemeister2014-01-231-2/+11
|
* Do not count unmatched videos for --max-downloads (Fixes #2211)Philipp Hagemeister2014-01-231-10/+6
|
* Correct --max-downloads with --ignore-errorsPhilipp Hagemeister2014-01-231-0/+2
|
* Merge branch 'paged-lists'Philipp Hagemeister2014-01-221-7/+16
|\ | | | | | | | | | | Conflicts: test/test_utils.py youtube_dl/extractor/youtube.py
| * Add infrastructure for paged listsPhilipp Hagemeister2014-01-201-7/+16
| | | | | | | | | | | | | | | | | | This commit allows to download pages in playlists as needed instead of all at once. Before this commit, youtube-dl http://www.youtube.com/user/ANNnewsCH/videos --playlist-end 2 --skip-download took quite some time - now it's almost instantaneous. As an example, the youtube:user extractor has been converted. Fixes #2175
* | Merge branch 'youtube-dash-manifest'Philipp Hagemeister2014-01-221-0/+2
|\ \ | | | | | | | | | | | | Conflicts: youtube_dl/extractor/youtube.py
| * | [youtube] Download DASH manifestPhilipp Hagemeister2014-01-191-0/+2
| |/ | | | | | | | | If given, download and parse the DASH manifest file, in order to get ultra-HQ formats. Fixes #2166
* | Default to -f best-audio when only audio is requestedPhilipp Hagemeister2014-01-221-1/+1
| |
* | Add -f bestaudio (Fixes #2163)Philipp Hagemeister2014-01-221-0/+12
| |
* | Add new --default-search option (#2193)Philipp Hagemeister2014-01-221-0/+2
| |
* | [servingsys] Add supportPhilipp Hagemeister2014-01-211-0/+1
|/ | | | | This also adds support for brightcove advertisements. Fixes #2181
* Don’t try to merge the formats if ffmpeg or avconv are not installedJaime Marquínez Ferrándiz2014-01-151-1/+9
|
* Add ‘--prefer-avconv’ and ‘--prefer-ffmpeg’ options (#2115)Jaime Marquínez Ferrándiz2014-01-081-0/+4
| | | | Affects the ffmpeg post processors, if ‘--prefer-ffmpeg’ is given and both avconv and ffmpeg are installed, it will use ffmpeg. Otherwise it will follow the old behaviour.