aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/options.py
AgeCommit message (Collapse)Author
2016-03-23Merge pull request #8898 from dstftw/fragment-retriesSergey M
Add --fragment-retries option (Fixes #8466)
2016-03-20[postprocessort/ffmpeg] Allow embedding webvtt into webm (Closes #8874)Sergey M․
2016-03-19[options] Add --fragment-retries optionSergey M․
2016-03-01[options] Add --no-mark-watched (#5054)Sergey M․
2016-03-01Add --mark-watched feature (Closes #5054)Sergey M․
2016-02-14[refactor] Single quotes consistencySergey M․
2016-01-30[options] Add missing closing parenthesisSergey M․
2016-01-30Add --hls-use-mpegts optionJaime Marquínez Ferrándiz
When using the mpegts container hls vidoes can be played while being downloaded (useful if you are recording a live stream). VLC and mpv play them file, but QuickTime doesn't.
2016-01-23[options] Clarify language tagsSergey M․
2015-12-30[options] Prefer --convert-subs spellingSergey M․
2015-11-28[options] Changed wording for --list-formatsYen Chi Hsuan
As proposed by @dstftw at 9bff48a0e7128b4d274a5dab4aaac8da0c900ede
2015-11-27[options] Clarify --list-formats needs videos (closes #7669)Yen Chi Hsuan
2015-11-16Clarify that automatic subtitles are generated.Rastislav Barlik
It wasn't clear what automatic word mean.
2015-10-02[options] Cleanup double spaces in help textsYen Chi Hsuan
2015-09-05[options] Use compat_shlex_splitSergey M․
2015-09-01[options] Clarify extractors supporting videopasswordSergey M․
2015-07-21[options] Fix a typo (#6307)Sergey M․
2015-07-11Revert xvid to avi and make docs to be similar to existing external ↵Sergey M․
downloader option
2015-07-11Merge branch 'master' of https://github.com/aurium/youtube-dl into aurium-masterSergey M․
2015-06-30Rename --pp-params to --postprocessor-args and access value as super class ↵Aurélio A. Heckert
attribute
2015-06-29Merge pull request #6097 from dstftw/union-itags-from-multiple-dashmpdSergey M.
[youtube] Extract formats from multiple DASH manifests (Closes #6093)
2015-06-27[options] Clarify --youtube-skip-dash-manifestSergey M․
2015-06-27[options] Add missing whitespace and split linesSergey M․
2015-06-24Merge pull request #5961 from dstftw/force-generic-extractorSergey M.
Add --force-generic-extractor
2015-06-16Use shlex.split for --pp-params and update related docs.Aurélio A. Heckert
2015-06-15[options] Add missing whitespace for --fixup descriptionSergey M․
2015-06-12Add `--force-generic-extractor`Sergey M․
For some extractors that are hard to workout a good _VALID_URL we use very vague and unrestrictive ones, e.g. just allowing anything after hostname and capturing part of URL as id. If some of these extractors happen to have an video embed of some different hoster or platform and this scenario was not handled in extractor itself we end up with inability to download this embed until extractor is fixed to support embed of this kind. Forcing downloader to use the generic extractor can be a neat temporary solution for this problem. Example: FiveTV extractor with Tvigle embed - http://www.5-tv.ru/rabota/broadcasts/48/
2015-06-09Adds support for XviD output with extra parametrizationAurélio A. Heckert
As the "LG Time Machine" (a (not so) smart TV) has a limitation for video dimensions (as for codecs), I take to implement an extra parameter `--pp-params` where we can send extra parameterization for the video converter (post-processor). Example: ``` $ youtube-dl --recode-video=xvid --pp-params='-s 720x480' -c https://www.youtube.com/watch?v=BE7Qoe2ZiXE ``` That works fine on a 4yo LG Time Machine. Closes #5733
2015-06-07[options] Clarify `--list-extractors` (Closes #5916)Sergey M․
2015-05-22Clarify that --dump-pages encodes the pages using base64 (#5781)Jaime Marquínez Ferrándiz
2015-05-21[options] Clarify `--metadata-from-title` additional templatesSergey M․
2015-05-02[options] Clarify `--write-annotations` helpSergey M․
2015-05-01Add ability to embed subtitles in mkv files (closes #5434)Nikoli
2015-04-25Remove the --max-quality optionJaime 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-19Move the documentation for the `--format` option to the manpageJaime 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 stringSergey M․
2015-04-04[options] `Number` is a verb hereSergey M․
2015-04-04[options] extractor is lowercaseSergey M․
2015-04-04[options] Restore some stringsSergey M․
2015-04-04Merge branch 'patch-1' of https://github.com/tuexss/youtube-dl into ↵Sergey M․
tuexss-patch-1
2015-04-04Do not encode outtmpl twice (Closes #5288)Sergey M․
2015-03-25Clean up of --help outputtestbonn
For consistency and readability
2015-03-24[options] Handle special characters in argv (Fixes #5157)Philipp Hagemeister
2015-03-14[metadatafromtitle] Some improvements and cleanupJaime 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-14Add metadata from title parserphiresky
(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-28Use shutil.get_terminal_size for getting the terminal width if it's ↵Jaime Marquínez Ferrándiz
available (python >= 3.3)