Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-25 | Some pep8 style fixes | Jaime Marquínez Ferrándiz | |
2014-01-23 | [youtube] Add new formats (Fixes #2221) | Philipp Hagemeister | |
2014-01-23 | Do not count unmatched videos for --max-downloads (Fixes #2211) | Philipp Hagemeister | |
2014-01-23 | Correct --max-downloads with --ignore-errors | Philipp Hagemeister | |
2014-01-22 | Merge branch 'paged-lists' | Philipp Hagemeister | |
Conflicts: test/test_utils.py youtube_dl/extractor/youtube.py | |||
2014-01-22 | Merge branch 'youtube-dash-manifest' | Philipp Hagemeister | |
Conflicts: youtube_dl/extractor/youtube.py | |||
2014-01-22 | Default to -f best-audio when only audio is requested | Philipp Hagemeister | |
2014-01-22 | Add -f bestaudio (Fixes #2163) | Philipp Hagemeister | |
2014-01-22 | Add new --default-search option (#2193) | Philipp Hagemeister | |
2014-01-21 | [servingsys] Add support | Philipp Hagemeister | |
This also adds support for brightcove advertisements. Fixes #2181 | |||
2014-01-20 | Add infrastructure for paged lists | Philipp Hagemeister | |
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 | |||
2014-01-19 | [youtube] Download DASH manifest | Philipp Hagemeister | |
If given, download and parse the DASH manifest file, in order to get ultra-HQ formats. Fixes #2166 | |||
2014-01-15 | Don’t try to merge the formats if ffmpeg or avconv are not installed | Jaime Marquínez Ferrándiz | |
2014-01-08 | Add ‘--prefer-avconv’ and ‘--prefer-ffmpeg’ options (#2115) | Jaime Marquínez Ferrándiz | |
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. | |||
2014-01-07 | --list-formats: Only add "@" if vbr is given | Philipp Hagemeister | |
2014-01-07 | Move postprocessor into its own package | Philipp Hagemeister | |
2014-01-05 | Set required properties for format merging | Philipp Hagemeister | |
2014-01-05 | Merge remote-tracking branch 'jaimeMF/merge-formats' | Philipp Hagemeister | |
2014-01-05 | Prepare widespread unicode literal use | Philipp Hagemeister | |
2014-01-04 | Allow merging formats (closes #1612) | Jaime Marquínez Ferrándiz | |
Multiple formats can be requested using `-f 137+139`, each one is downloaded and then the two are merged with ffmpeg. | |||
2014-01-01 | Merge remote-tracking branch 'origin/master' | Philipp Hagemeister | |
2014-01-01 | Merge pull request #2061 from rzhxeo/var | Jaime Marquínez Ferrándiz | |
Correct variable name in YoutubeDL.list_formats | |||
2014-01-01 | Merge remote-tracking branch 'origin/master' | Philipp Hagemeister | |
2013-12-31 | Fix initialization of YoutubeDL with params set to None | Jaime Marquínez Ferrándiz | |
Set it to an empty dictionary because it’s directly accessed when setting some properties | |||
2013-12-30 | Correct variable name in YoutubeDL | rzhxeo | |
2013-12-29 | Add new --print-traffic option | Philipp Hagemeister | |
2013-12-25 | [yahoo] Use centralized sorting, and add tbr field | Philipp Hagemeister | |
2013-12-24 | [zdf] Use centralized sorting | Philipp Hagemeister | |
2013-12-24 | Add temporary _sort_formats helper function | Philipp Hagemeister | |
2013-12-24 | Add a resolution field and improve general --list-formats output | Philipp Hagemeister | |
2013-12-23 | [bliptv] Remove support for direct downloads | Philipp Hagemeister | |
This is now handled by the generic IE | |||
2013-12-23 | YoutubeDL: rename `_fd_progress_hooks` back to `_progress_hooks` | Jaime Marquínez Ferrándiz | |
In the future it may report more things. | |||
2013-12-23 | YoutubeDL: only set the ‘formats’ field of the info_dict if it was ↵ | Jaime Marquínez Ferrándiz | |
already set before It caused a circular reference error, when trying to dump it to json (for example with the test video for myvideo.de or any other video without formats) | |||
2013-12-23 | Merge remote-tracking branch 'jaimeMF/split-downloaders' | Philipp Hagemeister | |
2013-12-23 | Merge remote-tracking branch 'rzhxeo/youtube' | Philipp Hagemeister | |
2013-12-23 | Remove debugging code | Philipp Hagemeister | |
Introduced by accident in 5d681e960db98ec2d9f3d4361bd66f581506a772 | |||
2013-12-23 | Use bidiv instead of fribidi if available (Fixes #1912) | Philipp Hagemeister | |
2013-12-18 | Make prefer_free_formats sorting more robust | rzhxeo | |
2013-12-18 | Filter and sort videos before calling list_formats | rzhxeo | |
2013-12-18 | [YoutubeIE] Externalize format selection | rzhxeo | |
2013-12-17 | Add webpage_url_basename info_dict field (Fixes #1938) | Philipp Hagemeister | |
2013-12-16 | Incorrect variable is used to check whether thumbnail exists | alimirjamali | |
Dear @phihag I believe in line 848, the correct variable to check is 'thumb_filename' rather than 'infofn' Kindly advise Mit freundlichen Gruessen Ali | |||
2013-12-16 | Simplify --playlist-start / --playlist-end interface | Philipp Hagemeister | |
2013-12-16 | Apply --no-overwrites for --write-* files as well (Fixes #1980) | Philipp Hagemeister | |
2013-12-16 | Add --get-duration (Fixes #859) | Philipp Hagemeister | |
2013-12-16 | Add --min-views / --max-views (Fixes #1979) | Philipp Hagemeister | |
2013-12-11 | Move FileDownloader to its own module and create a new class for each ↵ | Jaime Marquínez Ferrándiz | |
download process A suitable downloader can be found using the 'get_suitable_downloader' function. Each subclass implements 'real_download', for downloading an info dict you call the 'download' method, which first checks if the video has already been downloaded | |||
2013-12-11 | Now a new FileDownloader is created when downloading a video | Jaime Marquínez Ferrándiz | |
The progress hooks can be added using the method "add_downloader_progress_hook" | |||
2013-12-11 | Fix thumbnail filename determination (Fixes #1945) | Philipp Hagemeister | |
2013-12-10 | [YoutubeDL] Simplify filename preparation | Philipp Hagemeister | |