aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/options.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix --min/max-sleep-interval wordingSergey M․2016-08-091-6/+9
|
* Add --max-sleep-interval (Closes #9930)singh-pratyush962016-08-091-2/+10
|
* [options] Hide --password=secret in verbose outputPhilipp Hagemeister2016-08-021-2/+13
|
* [options] Rollback old behavior for configuratio files' encodingSergey M․2016-07-091-1/+5
| | | | Until agreed with some solution
* [options] Do not decode Unicode on Python 2.xPhilipp Hagemeister2016-07-071-2/+2
| | | | | The configuration file contents are being returned as unicode now, so decoding them is no longer necessary. (Run python2 with -3 to see the warning before this commit)
* Rename --cn-verfication-proxy to --geo-verification-proxyYen Chi Hsuan2016-07-031-2/+7
| | | | | | | And deprecate the former one Since commit f1388739002a7fd1e8e9c41b642734786fc6c391, this option is not limited to China websites, so rename it.
* [options] Accept quoted string across multiple lines (#9940)Jaime Marquínez Ferrándiz2016-07-011-3/+1
| | | | | | | | | Like: -f " bestvideo+bestaudio/ best "
* [options] Add --load-info-json alias for symmetry with --write-info-jsonSergey M․2016-06-061-1/+1
|
* [options] Add --limit-rate alias for rate limiting optionSergey M․2016-05-301-2/+2
| | | | | Closes #9644 In order to follow regular --verb-noun pattern and better conformity with wget and curl
* [options] Update --proxy description for SOCKS proxiesYen Chi Hsuan2016-05-101-1/+4
|
* Add --hls-prefer-ffmpegSergey M․2016-04-211-1/+5
|
* [options] Remove experimental mark for --hls-prefer-nativeSergey M․2016-04-211-1/+1
|
* Merge pull request #8898 from dstftw/fragment-retriesSergey M2016-03-231-0/+4
|\ | | | | Add --fragment-retries option (Fixes #8466)
| * [options] Add --fragment-retries optionSergey M․2016-03-191-0/+4
| |
* | [postprocessort/ffmpeg] Allow embedding webvtt into webm (Closes #8874)Sergey M․2016-03-201-1/+1
|/
* [options] Add --no-mark-watched (#5054)Sergey M․2016-03-011-0/+4
|
* Add --mark-watched feature (Closes #5054)Sergey M․2016-03-011-0/+4
|
* [refactor] Single quotes consistencySergey M․2016-02-141-1/+1
|
* [options] Add missing closing parenthesisSergey M․2016-01-301-1/+1
|
* Add --hls-use-mpegts optionJaime Marquínez Ferrándiz2016-01-301-0/+5
| | | | | 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.
* [options] Clarify language tagsSergey M․2016-01-231-1/+1
|
* [options] Prefer --convert-subs spellingSergey M․2015-12-301-1/+1
|
* [options] Changed wording for --list-formatsYen Chi Hsuan2015-11-281-1/+1
| | | | As proposed by @dstftw at 9bff48a0e7128b4d274a5dab4aaac8da0c900ede
* [options] Clarify --list-formats needs videos (closes #7669)Yen Chi Hsuan2015-11-271-1/+1
|
* Clarify that automatic subtitles are generated.Rastislav Barlik2015-11-161-1/+1
| | | | It wasn't clear what automatic word mean.
* [options] Cleanup double spaces in help textsYen Chi Hsuan2015-10-021-2/+2
|
* [options] Use compat_shlex_splitSergey M․2015-09-051-2/+2
|
* [options] Clarify extractors supporting videopasswordSergey M․2015-09-011-1/+1
|
* [options] Fix a typo (#6307)Sergey M․2015-07-211-1/+1
|
* Revert xvid to avi and make docs to be similar to existing external ↵Sergey M․2015-07-111-3/+3
| | | | downloader option
* Merge branch 'master' of https://github.com/aurium/youtube-dl into aurium-masterSergey M․2015-07-111-1/+5
|\
| * Rename --pp-params to --postprocessor-args and access value as super class ↵Aurélio A. Heckert2015-06-301-2/+2
| | | | | | | | attribute
| * Use shlex.split for --pp-params and update related docs.Aurélio A. Heckert2015-06-161-2/+2
| |
| * Adds support for XviD output with extra parametrizationAurélio A. Heckert2015-06-091-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge pull request #6097 from dstftw/union-itags-from-multiple-dashmpdSergey M.2015-06-291-1/+1
|\ \ | | | | | | [youtube] Extract formats from multiple DASH manifests (Closes #6093)
| * | [options] Clarify --youtube-skip-dash-manifestSergey M․2015-06-271-1/+1
| | |
* | | [options] Add missing whitespace and split linesSergey M․2015-06-271-1/+2
|/ /
* | Merge pull request #5961 from dstftw/force-generic-extractorSergey M.2015-06-241-0/+4
|\ \ | | | | | | Add --force-generic-extractor
| * | Add `--force-generic-extractor`Sergey M․2015-06-121-0/+4
| |/ | | | | | | | | | | | | | | | | | | 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/
* / [options] Add missing whitespace for --fixup descriptionSergey M․2015-06-151-1/+1
|/
* [options] Clarify `--list-extractors` (Closes #5916)Sergey M․2015-06-071-1/+1
|
* Clarify that --dump-pages encodes the pages using base64 (#5781)Jaime Marquínez Ferrándiz2015-05-221-1/+1
|
* [options] Clarify `--metadata-from-title` additional templatesSergey M․2015-05-211-1/+1
|
* [options] Clarify `--write-annotations` helpSergey M․2015-05-021-1/+1
|
* Add ability to embed subtitles in mkv files (closes #5434)Nikoli2015-05-011-1/+1
|
* Remove the --max-quality optionJaime Marquínez Ferrándiz2015-04-251-4/+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.
* Move the documentation for the `--format` option to the manpageJaime Marquínez Ferrándiz2015-04-191-26/+1
| | | | It's too big for beeing embedded in the help message and it's easier to edit in the markdown file.
* [options] Fix file based configurations for python 2 (Closes #5401)Sergey M․2015-04-121-7/+8
|
* [options] Fix load info help stringSergey M․2015-04-041-1/+1
|
* [options] `Number` is a verb hereSergey M․2015-04-041-1/+1
|