Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-25 | Remove the --max-quality option | Jaime Marquínez Ferrándiz | |
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. | |||
2015-04-19 | Move the documentation for the `--format` option to the manpage | Jaime Marquínez Ferrándiz | |
It's too big for beeing embedded in the help message and it's easier to edit in the markdown file. | |||
2015-04-12 | [options] Fix file based configurations for python 2 (Closes #5401) | Sergey M․ | |
2015-04-04 | [options] Fix load info help string | Sergey M․ | |
2015-04-04 | [options] `Number` is a verb here | Sergey M․ | |
2015-04-04 | [options] extractor is lowercase | Sergey M․ | |
2015-04-04 | [options] Restore some strings | Sergey M․ | |
2015-04-04 | Merge branch 'patch-1' of https://github.com/tuexss/youtube-dl into ↵ | Sergey M․ | |
tuexss-patch-1 | |||
2015-04-04 | Do not encode outtmpl twice (Closes #5288) | Sergey M․ | |
2015-03-25 | Clean up of --help output | testbonn | |
For consistency and readability | |||
2015-03-24 | [options] Handle special characters in argv (Fixes #5157) | Philipp Hagemeister | |
2015-03-14 | [metadatafromtitle] Some improvements and cleanup | Jaime Marquínez Ferrándiz | |
* Remove the 'songtitle' field, 'title' can be used instead. * Remove newlines in the help text, for consistency with other options. * Add 'from __future__ import unicode_literals'. * Call '__init__' from the parent class. * Add test for the format_to_regex method | |||
2015-03-14 | Add metadata from title parser | phiresky | |
(Closes #5125) | |||
2015-03-08 | [options] Rename --dump-intermediate-pages to --dump-pages for consistence ↵ | Philipp Hagemeister | |
with --write-pages | |||
2015-03-03 | [letv] Add --cn-verification-proxy (Closes #5077) | Philipp Hagemeister | |
2015-03-02 | [downloader/external] Add support for custom options (Fixes #4885, closes #5098) | Philipp Hagemeister | |
2015-02-28 | Use shutil.get_terminal_size for getting the terminal width if it's ↵ | Jaime Marquínez Ferrándiz | |
available (python >= 3.3) | |||
2015-02-28 | Add postprocessor for converting subtitles (closes #4954) | Jaime Marquínez Ferrándiz | |
2015-02-24 | [options] Add --yes-playlist as inverse of --no-playlist (Fixes #5051) | Philipp Hagemeister | |
2015-02-23 | Merge branch 'subtitles-rework' | Jaime Marquínez Ferrándiz | |
(Closes PR #4964) | |||
2015-02-17 | [downloader] Add --hls-prefer-native to use the native HLS downloader (#4966) | Philipp Hagemeister | |
2015-02-16 | Improve subtitles support | Jaime Marquínez Ferrándiz | |
For each language the extractor builds a list with the available formats sorted (like for video formats), then YoutubeDL selects one of them using the '--sub-format' option which now allows giving the format preferences (for example 'ass/srt/best'). For each format the 'url' field can be set so that we only download the contents if needed, or if the contents needs to be processed (like in crunchyroll) the 'data' field can be used. The reasons for this change are: * We weren't checking that the format given with '--sub-format' was available, checking it in each extractor would be repetitive. * It allows to easily support giving a format preference. * The subtitles were automatically downloaded in the extractor, but I think that if you use for example the '--dump-json' option you want to finish as fast as possible. Currently only the ted extractor has been updated, but the old system still works. | |||
2015-02-16 | [ffmpeg] Add --ffmpeg-location | Philipp Hagemeister | |
2015-02-10 | [options] Add alias --dump-header for --print-traffic | Philipp Hagemeister | |
2015-02-10 | [options] Add --no-color | Philipp Hagemeister | |
2015-02-10 | [YoutubeDL] Add generic video filtering (Fixes #4916) | Philipp Hagemeister | |
This functionality is intended to eventually encompass the current format filtering. | |||
2015-02-10 | Use snake_case instead of camelCase | Philipp Hagemeister | |
2015-02-09 | [options] Mention asr as possible filter | Sergey M․ | |
2015-02-09 | [options] Update help on string comparisons | Sergey M․ | |
2015-02-02 | [options] Mark --fixup as non-experimental and correct its help | Philipp Hagemeister | |
2015-01-26 | [YoutubeDL] Allow format filtering by fps | Philipp Hagemeister | |
2015-01-25 | Add --xattr-set-filesize option (Fixes #1348) | Philipp Hagemeister | |
2015-01-25 | [options] Add support for infinite retries (Fixes #507) | Philipp Hagemeister | |
2015-01-25 | [YoutubeDL] Add --playlist-items option (Fixes #2662) | Philipp Hagemeister | |
2015-01-25 | [YoutubeDL] Implement --write-all-thumbnails (Closes #2269) | Philipp Hagemeister | |
2015-01-25 | Add --list-thumbnails | Philipp Hagemeister | |
2015-01-24 | [downloader] Lay groundwork for external downloaders. | Philipp Hagemeister | |
This comes with a very simply implementation for wget; the real work is in setting up the infrastructure. | |||
2015-01-23 | Fix --sleep-interval (#3426) | Philipp Hagemeister | |
2015-01-23 | Merge remote-tracking branch 'rupertbaxter2/master' | Philipp Hagemeister | |
Conflicts: youtube_dl/__init__.py youtube_dl/downloader/common.py | |||
2015-01-23 | [YoutubeDL] Allow filtering by properties (Fixes #4584) | Philipp Hagemeister | |
2015-01-17 | [options] Clarify that --password can be left out (#4723) | Philipp Hagemeister | |
2015-01-10 | [options] Add --no-call-home | Philipp Hagemeister | |
While we're at it, also drop "experimental" moniker for --call-home - should work fine. | |||
2015-01-10 | [YoutubeDL] Add new --call-home option for debugging | Philipp Hagemeister | |
2015-01-10 | [options] Add -4 and -6 options | Philipp Hagemeister | |
Fixes #520, fixes #3626. | |||
2015-01-10 | Add new option --source-address | Philipp Hagemeister | |
Closes #3618, fixes #721, fixes #2481, fixes #4551, closes #1020. | |||
2015-01-10 | [youtube|ffmpeg] Automatically correct video with non-square pixels (Fixes ↵ | Philipp Hagemeister | |
#4674) | |||
2015-01-10 | [options] PEP8 and simpler --merge-output-format handling (#4673) | Philipp Hagemeister | |
2015-01-09 | Added an option to specify an output format for merges when downloading ↵ | Andrei Troie | |
separate video & audio | |||
2015-01-08 | Add --print-json (Closes #2845) | Philipp Hagemeister | |
2015-01-08 | [YoutubeDL] Allow selection by more extensions | Philipp Hagemeister | |