]> jfr.im git - yt-dlp.git/blame - yt_dlp/options.py
Separate the options `--ignore-errors` and `--no-abort-on-error`
[yt-dlp.git] / yt_dlp / options.py
CommitLineData
2daabe49
PH
1from __future__ import unicode_literals
2
34a741a8
PH
3import os.path
4import optparse
3aa9a735 5import re
34a741a8
PH
6import sys
7
8c25f81b 8from .compat import (
4644ac55 9 compat_expanduser,
003c69a8 10 compat_get_terminal_size,
4644ac55 11 compat_getenv,
c7b0add8 12 compat_kwargs,
cab792ab 13 compat_shlex_split,
8c25f81b
PH
14)
15from .utils import (
0202b52a 16 expand_path,
f74980cb 17 get_executable_path,
de6000d9 18 OUTTMPL_TYPES,
ff556f5c 19 preferredencoding,
34a741a8
PH
20 write_string,
21)
982ee69a 22from .cookies import SUPPORTED_BROWSERS
34a741a8
PH
23from .version import __version__
24
81a23040 25from .downloader.external import list_external_downloaders
ad3dc496 26from .postprocessor import (
81a23040 27 FFmpegExtractAudioPP,
28 FFmpegSubtitlesConvertorPP,
29 FFmpegThumbnailsConvertorPP,
30 FFmpegVideoRemuxerPP,
7a340e0d 31 SponsorBlockPP,
81a23040 32)
7a340e0d 33from .postprocessor.modify_chapters import DEFAULT_SPONSORBLOCK_CHAPTER_TITLE
81a23040 34
34a741a8 35
905d18a7
YCH
36def _hide_login_info(opts):
37 PRIVATE_OPTS = set(['-p', '--password', '-u', '--username', '--video-password', '--ap-password', '--ap-username'])
38 eqre = re.compile('^(?P<key>' + ('|'.join(re.escape(po) for po in PRIVATE_OPTS)) + ')=.+$')
39
40 def _scrub_eq(o):
41 m = eqre.match(o)
42 if m:
43 return m.group('key') + '=PRIVATE'
44 else:
45 return o
46
47 opts = list(map(_scrub_eq, opts))
48 for idx, opt in enumerate(opts):
49 if opt in PRIVATE_OPTS and idx + 1 < len(opts):
50 opts[idx + 1] = 'PRIVATE'
51 return opts
52
53
34a741a8
PH
54def parseOpts(overrideArguments=None):
55 def _readOptions(filename_bytes, default=[]):
56 try:
57 optionf = open(filename_bytes)
58 except IOError:
59 return default # silently skip if file is not present
60 try:
067aa17e 61 # FIXME: https://github.com/ytdl-org/youtube-dl/commit/dfe5fa49aed02cf36ba9f743b11b0903554b5e56
1251565e
S
62 contents = optionf.read()
63 if sys.version_info < (3,):
64 contents = contents.decode(preferredencoding())
65 res = compat_shlex_split(contents, comments=True)
34a741a8
PH
66 finally:
67 optionf.close()
68 return res
69
e2e43aea 70 def _readUserConf(package_name, default=[]):
71 # .config
72 xdg_config_home = compat_getenv('XDG_CONFIG_HOME') or compat_expanduser('~/.config')
73 userConfFile = os.path.join(xdg_config_home, package_name, 'config')
74 if not os.path.isfile(userConfFile):
75 userConfFile = os.path.join(xdg_config_home, '%s.conf' % package_name)
76 userConf = _readOptions(userConfFile, default=None)
77 if userConf is not None:
0202b52a 78 return userConf, userConfFile
34a741a8 79
e2e43aea 80 # appdata
81 appdata_dir = compat_getenv('appdata')
82 if appdata_dir:
83 userConfFile = os.path.join(appdata_dir, package_name, 'config')
84 userConf = _readOptions(userConfFile, default=None)
85 if userConf is None:
0202b52a 86 userConfFile += '.txt'
87 userConf = _readOptions(userConfFile, default=None)
e2e43aea 88 if userConf is not None:
0202b52a 89 return userConf, userConfFile
34a741a8 90
e2e43aea 91 # home
92 userConfFile = os.path.join(compat_expanduser('~'), '%s.conf' % package_name)
93 userConf = _readOptions(userConfFile, default=None)
34a741a8 94 if userConf is None:
0202b52a 95 userConfFile += '.txt'
96 userConf = _readOptions(userConfFile, default=None)
e2e43aea 97 if userConf is not None:
0202b52a 98 return userConf, userConfFile
34a741a8 99
0202b52a 100 return default, None
34a741a8
PH
101
102 def _format_option_string(option):
103 ''' ('-o', '--option') -> -o, --format METAVAR'''
104
105 opts = []
106
107 if option._short_opts:
108 opts.append(option._short_opts[0])
109 if option._long_opts:
110 opts.append(option._long_opts[0])
111 if len(opts) > 1:
112 opts.insert(1, ', ')
113
8450c15c
PH
114 if option.takes_value():
115 opts.append(' %s' % option.metavar)
34a741a8 116
611c1dd9 117 return ''.join(opts)
34a741a8 118
d21bba78 119 def _list_from_options_callback(option, opt_str, value, parser, append=True, delim=',', process=str.strip):
e632bce2 120 # append can be True, False or -1 (prepend)
121 current = getattr(parser.values, option.dest) if append else []
1f8471e2 122 value = list(filter(None, [process(value)] if delim is None else map(process, value.split(delim))))
d818eb74 123 setattr(
124 parser.values, option.dest,
e632bce2 125 current + value if append is True else value + current)
34a741a8 126
31654882 127 def _set_from_options_callback(
d21bba78 128 option, opt_str, value, parser, delim=',', allowed_values=None, aliases={},
129 process=lambda x: x.lower().strip()):
31654882 130 current = getattr(parser.values, option.dest)
d21bba78 131 values = [process(value)] if delim is None else list(map(process, value.split(delim)[::-1]))
31654882 132 while values:
133 actual_val = val = values.pop()
134 if val == 'all':
135 current.update(allowed_values)
136 elif val == '-all':
137 current = set()
138 elif val in aliases:
139 values.extend(aliases[val])
140 else:
141 if val[0] == '-':
142 val = val[1:]
143 current.discard(val)
144 else:
145 current.update([val])
146 if allowed_values is not None and val not in allowed_values:
147 raise optparse.OptionValueError(f'wrong {option.metavar} for {opt_str}: {actual_val}')
148
149 setattr(parser.values, option.dest, current)
150
e632bce2 151 def _dict_from_options_callback(
d818eb74 152 option, opt_str, value, parser,
153 allowed_keys=r'[\w-]+', delimiter=':', default_key=None, process=None, multiple_keys=True):
45016689 154
155 out_dict = getattr(parser.values, option.dest)
d818eb74 156 if multiple_keys:
157 allowed_keys = r'(%s)(,(%s))*' % (allowed_keys, allowed_keys)
158 mobj = re.match(r'(?i)(?P<keys>%s)%s(?P<val>.*)$' % (allowed_keys, delimiter), value)
45016689 159 if mobj is not None:
d818eb74 160 keys = [k.strip() for k in mobj.group('keys').lower().split(',')]
161 val = mobj.group('val')
45016689 162 elif default_key is not None:
d818eb74 163 keys, val = [default_key], value
45016689 164 else:
165 raise optparse.OptionValueError(
166 'wrong %s formatting; it should be %s, not "%s"' % (opt_str, option.metavar, value))
4bb6b02f 167 try:
168 val = process(val) if process else val
169 except Exception as err:
170 raise optparse.OptionValueError(
171 'wrong %s formatting; %s' % (opt_str, err))
d818eb74 172 for key in keys:
173 out_dict[key] = val
45016689 174
34a741a8 175 # No need to wrap help messages if we're on a wide console
003c69a8 176 columns = compat_get_terminal_size().columns
8450c15c 177 max_width = columns if columns else 80
982ee69a
MB
178 # 47% is chosen because that is how README.md is currently formatted
179 # and moving help text even further to the right is undesirable.
180 # This can be reduced in the future to get a prettier output
181 max_help_position = int(0.47 * max_width)
34a741a8
PH
182
183 fmt = optparse.IndentedHelpFormatter(width=max_width, max_help_position=max_help_position)
184 fmt.format_option_strings = _format_option_string
185
186 kw = {
8450c15c
PH
187 'version': __version__,
188 'formatter': fmt,
a42419da 189 'usage': '%prog [OPTIONS] URL [URL...]',
8450c15c 190 'conflict_handler': 'resolve',
34a741a8
PH
191 }
192
c7b0add8 193 parser = optparse.OptionParser(**compat_kwargs(kw))
34a741a8 194
8450c15c
PH
195 general = optparse.OptionGroup(parser, 'General Options')
196 general.add_option(
197 '-h', '--help',
198 action='help',
17941321 199 help='Print this help text and exit')
8450c15c 200 general.add_option(
b76f0e58 201 '--version',
8450c15c 202 action='version',
17941321 203 help='Print program version and exit')
8450c15c
PH
204 general.add_option(
205 '-U', '--update',
206 action='store_true', dest='update_self',
8d801631 207 help='Update this program to latest version. Make sure that you have sufficient permissions (run with sudo if needed)')
8450c15c 208 general.add_option(
b1940459 209 '-i', '--ignore-errors',
210 action='store_true', dest='ignoreerrors',
211 help='Ignore download and postprocessing errors. The download will be considered successfull even if the postprocessing fails')
212 general.add_option(
213 '--no-abort-on-error',
214 action='store_const', dest='ignoreerrors', const='only_download',
215 help='Continue with next video on download errors; e.g. to skip unavailable videos in a playlist (default)')
8450c15c 216 general.add_option(
6623ac34 217 '--abort-on-error', '--no-ignore-errors',
8450c15c 218 action='store_false', dest='ignoreerrors',
8a51f564 219 help='Abort downloading of further videos if an error occurs (Alias: --no-ignore-errors)')
8450c15c
PH
220 general.add_option(
221 '--dump-user-agent',
222 action='store_true', dest='dump_user_agent', default=False,
34488702 223 help='Display the current user-agent and exit')
34a741a8 224 general.add_option(
8450c15c
PH
225 '--list-extractors',
226 action='store_true', dest='list_extractors', default=False,
b7b04c78 227 help='List all supported extractors and exit')
8450c15c
PH
228 general.add_option(
229 '--extractor-descriptions',
230 action='store_true', dest='list_extractor_descriptions', default=False,
b7b04c78 231 help='Output descriptions of all supported extractors and exit')
d22dec74
S
232 general.add_option(
233 '--force-generic-extractor',
234 action='store_true', dest='force_generic_extractor', default=False,
235 help='Force extraction to use the generic extractor')
34a741a8
PH
236 general.add_option(
237 '--default-search',
238 dest='default_search', metavar='PREFIX',
9ee4f0bb 239 help='Use this prefix for unqualified URLs. For example "gvsearch2:" downloads two videos from google videos for the search term "large apple". Use the value "auto" to let yt-dlp guess ("auto_warning" to emit a warning when guessing). "error" just throws an error. The default value "fixup_error" repairs broken URLs, but emits an error if this is not possible instead of searching')
34a741a8 240 general.add_option(
6623ac34 241 '--ignore-config', '--no-config',
7303f84a 242 action='store_true', dest='ignoreconfig',
6623ac34 243 help=(
298f597b 244 'Disable loading any configuration files except the one provided by --config-location. '
245 'When given inside a configuration file, no further configuration files are loaded. '
246 'Additionally, (for backward compatibility) if this option is found inside the '
8a51f564 247 'system configuration file, the user configuration is not loaded'))
e66dca5e 248 general.add_option(
b6ee45e9
S
249 '--config-location',
250 dest='config_location', metavar='PATH',
0202b52a 251 help='Location of the main configuration file; either the path to the config or its containing directory')
057a5206
PH
252 general.add_option(
253 '--flat-playlist',
6623ac34 254 action='store_const', dest='extract_flat', const='in_playlist', default=False,
8a51f564 255 help='Do not extract the videos of a playlist, only list them')
6623ac34 256 general.add_option(
257 '--no-flat-playlist',
258 action='store_false', dest='extract_flat',
259 help='Extract the videos of a playlist')
d77ab8e2
S
260 general.add_option(
261 '--mark-watched',
262 action='store_true', dest='mark_watched', default=False,
263 help='Mark videos watched (YouTube only)')
90f794c6
S
264 general.add_option(
265 '--no-mark-watched',
597c1866 266 action='store_false', dest='mark_watched',
267 help='Do not mark videos watched (default)')
7e5db8c9 268 general.add_option(
8a51f564 269 '--no-colors',
597c1866 270 action='store_true', dest='no_color', default=False,
17941321 271 help='Do not emit color codes in output')
53ed7066 272 general.add_option(
273 '--compat-options',
31654882 274 metavar='OPTS', dest='compat_opts', default=set(), type='str',
275 action='callback', callback=_set_from_options_callback,
276 callback_kwargs={
277 'allowed_values': {
278 'filename', 'format-sort', 'abort-on-error', 'format-spec', 'no-playlist-metafiles',
279 'multistreams', 'no-live-chat', 'playlist-index', 'list-formats', 'no-direct-merge',
280 'no-youtube-channel-redirect', 'no-youtube-unavailable-videos', 'no-attach-info-json',
281 'embed-thumbnail-atomicparsley', 'seperate-video-versions', 'no-clean-infojson', 'no-keep-subs',
d21bba78 282 }, 'aliases': {
31654882 283 'youtube-dl': ['-multistreams', 'all'],
284 'youtube-dlc': ['-no-youtube-channel-redirect', '-no-live-chat', 'all'],
285 }
286 }, help=(
287 'Options that can help keep compatibility with youtube-dl or youtube-dlc '
53ed7066 288 'configurations by reverting some of the changes made in yt-dlp. '
289 'See "Differences in default behavior" for details'))
34a741a8 290
be4a824d
PH
291 network = optparse.OptionGroup(parser, 'Network Options')
292 network.add_option(
293 '--proxy', dest='proxy',
294 default=None, metavar='URL',
6623ac34 295 help=(
296 'Use the specified HTTP/HTTPS/SOCKS proxy. To enable '
297 'SOCKS proxy, specify a proper scheme. For example '
298 'socks5://127.0.0.1:1080/. Pass in an empty string (--proxy "") '
299 'for direct connection'))
be4a824d
PH
300 network.add_option(
301 '--socket-timeout',
302 dest='socket_timeout', type=float, default=None, metavar='SECONDS',
303 help='Time to wait before giving up, in seconds')
304 network.add_option(
305 '--source-address',
306 metavar='IP', dest='source_address', default=None,
24ee6b97 307 help='Client-side IP address to bind to',
be4a824d 308 )
500b8b41
PH
309 network.add_option(
310 '-4', '--force-ipv4',
311 action='store_const', const='0.0.0.0', dest='source_address',
24ee6b97 312 help='Make all connections via IPv4',
500b8b41
PH
313 )
314 network.add_option(
315 '-6', '--force-ipv6',
316 action='store_const', const='::', dest='source_address',
24ee6b97 317 help='Make all connections via IPv6',
500b8b41 318 )
0aa10994 319
b31fdeed 320 geo = optparse.OptionGroup(parser, 'Geo-restriction')
0aa10994 321 geo.add_option(
38cce791
YCH
322 '--geo-verification-proxy',
323 dest='geo_verification_proxy', default=None, metavar='URL',
6623ac34 324 help=(
325 'Use this proxy to verify the IP address for some geo-restricted sites. '
8a51f564 326 'The default proxy specified by --proxy (or none, if the option is not present) is used for the actual downloading'))
0aa10994 327 geo.add_option(
91410c9b
PH
328 '--cn-verification-proxy',
329 dest='cn_verification_proxy', default=None, metavar='URL',
0aa10994
S
330 help=optparse.SUPPRESS_HELP)
331 geo.add_option(
332 '--geo-bypass',
333 action='store_true', dest='geo_bypass', default=True,
504f20dd 334 help='Bypass geographic restriction via faking X-Forwarded-For HTTP header')
0aa10994
S
335 geo.add_option(
336 '--no-geo-bypass',
337 action='store_false', dest='geo_bypass', default=True,
504f20dd 338 help='Do not bypass geographic restriction via faking X-Forwarded-For HTTP header')
0aa10994
S
339 geo.add_option(
340 '--geo-bypass-country', metavar='CODE',
341 dest='geo_bypass_country', default=None,
504f20dd 342 help='Force bypass geographic restriction with explicitly provided two-letter ISO 3166-2 country code')
5f95927a
S
343 geo.add_option(
344 '--geo-bypass-ip-block', metavar='IP_BLOCK',
345 dest='geo_bypass_ip_block', default=None,
504f20dd 346 help='Force bypass geographic restriction with explicitly provided IP block in CIDR notation')
be4a824d 347
8450c15c 348 selection = optparse.OptionGroup(parser, 'Video Selection')
34a741a8
PH
349 selection.add_option(
350 '--playlist-start',
351 dest='playliststart', metavar='NUMBER', default=1, type=int,
17941321 352 help='Playlist video to start at (default is %default)')
34a741a8
PH
353 selection.add_option(
354 '--playlist-end',
355 dest='playlistend', metavar='NUMBER', default=None, type=int,
17941321 356 help='Playlist video to end at (default is last)')
c14e88f0
PH
357 selection.add_option(
358 '--playlist-items',
359 dest='playlist_items', metavar='ITEM_SPEC', default=None,
8a51f564 360 help='Playlist video items to download. Specify indices of the videos in the playlist separated by commas like: "--playlist-items 1,2,5,8" if you want to download videos indexed 1, 2, 5, 8 in the playlist. You can specify range: "--playlist-items 1-3,7,10-13", it will download the videos at index 1, 2, 3, 7, 10, 11, 12 and 13')
34a741a8 361 selection.add_option(
8450c15c
PH
362 '--match-title',
363 dest='matchtitle', metavar='REGEX',
8f18aca8 364 help=optparse.SUPPRESS_HELP)
8450c15c
PH
365 selection.add_option(
366 '--reject-title',
367 dest='rejecttitle', metavar='REGEX',
8f18aca8 368 help=optparse.SUPPRESS_HELP)
8450c15c
PH
369 selection.add_option(
370 '--max-downloads',
371 dest='max_downloads', metavar='NUMBER', type=int, default=None,
372 help='Abort after downloading NUMBER files')
373 selection.add_option(
374 '--min-filesize',
375 metavar='SIZE', dest='min_filesize', default=None,
376 help='Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)')
377 selection.add_option(
378 '--max-filesize',
379 metavar='SIZE', dest='max_filesize', default=None,
380 help='Do not download any videos larger than SIZE (e.g. 50k or 44.6m)')
381 selection.add_option(
382 '--date',
383 metavar='DATE', dest='date', default=None,
c76eb41b 384 help=(
8a51f564 385 'Download only videos uploaded in this date. '
386 'The date can be "YYYYMMDD" or in the format '
c76eb41b 387 '"(now|today)[+-][0-9](day|week|month|year)(s)?"'))
8450c15c
PH
388 selection.add_option(
389 '--datebefore',
390 metavar='DATE', dest='datebefore', default=None,
c76eb41b 391 help=(
392 'Download only videos uploaded on or before this date. '
393 'The date formats accepted is the same as --date'))
34a741a8 394 selection.add_option(
8450c15c
PH
395 '--dateafter',
396 metavar='DATE', dest='dateafter', default=None,
c76eb41b 397 help=(
398 'Download only videos uploaded on or after this date. '
399 'The date formats accepted is the same as --date'))
34a741a8 400 selection.add_option(
8450c15c
PH
401 '--min-views',
402 metavar='COUNT', dest='min_views', default=None, type=int,
8f18aca8 403 help=optparse.SUPPRESS_HELP)
34a741a8 404 selection.add_option(
8450c15c
PH
405 '--max-views',
406 metavar='COUNT', dest='max_views', default=None, type=int,
8f18aca8 407 help=optparse.SUPPRESS_HELP)
347de493
PH
408 selection.add_option(
409 '--match-filter',
410 metavar='FILTER', dest='match_filter', default=None,
411 help=(
77b87f05
MT
412 'Generic video filter. Any field (see "OUTPUT TEMPLATE") can be compared with a '
413 'number or a string using the operators defined in "Filtering formats". '
414 'You can also simply specify a field to match if the field is present '
a047eeb6 415 'and "!field" to check if the field is not present. In addition, '
416 'Python style regular expression matching can be done using "~=", '
417 'and multiple filters can be checked with "&". '
418 'Use a "\\" to escape "&" or quotes if needed. Eg: --match-filter '
2e7781a9 419 '"!is_live & like_count>?100 & description~=\'(?i)\\bcats \\& dogs\\b\'" '
a047eeb6 420 'matches only videos that are not live, has a like count more than 100 '
421 '(or the like field is not available), and also has a description '
422 'that contains the phrase "cats & dogs" (ignoring case)'))
6623ac34 423 selection.add_option(
424 '--no-match-filter',
425 metavar='FILTER', dest='match_filter', action='store_const', const=None,
426 help='Do not use generic video filter (default)')
34a741a8 427 selection.add_option(
8450c15c
PH
428 '--no-playlist',
429 action='store_true', dest='noplaylist', default=False,
8a51f564 430 help='Download only the video, if the URL refers to a video and a playlist')
df4bd0d5
PH
431 selection.add_option(
432 '--yes-playlist',
f0884c8b 433 action='store_false', dest='noplaylist',
8a51f564 434 help='Download the playlist, if the URL refers to a video and a playlist')
8450c15c
PH
435 selection.add_option(
436 '--age-limit',
437 metavar='YEARS', dest='age_limit', default=None, type=int,
17941321 438 help='Download only videos suitable for the given age')
8450c15c
PH
439 selection.add_option(
440 '--download-archive', metavar='FILE',
441 dest='download_archive',
8a51f564 442 help='Download only videos not listed in the archive file. Record the IDs of all downloaded videos in it')
ea6e0c2b 443 selection.add_option(
444 '--break-on-existing',
445 action='store_true', dest='break_on_existing', default=False,
8a51f564 446 help='Stop the download process when encountering a file that is in the archive')
8b0d7497 447 selection.add_option(
448 '--break-on-reject',
449 action='store_true', dest='break_on_reject', default=False,
8a51f564 450 help='Stop the download process when encountering a file that has been filtered out')
26e2805c 451 selection.add_option(
452 '--skip-playlist-after-errors', metavar='N',
453 dest='skip_playlist_after_errors', default=None, type=int,
454 help='Number of allowed failures until the rest of the playlist is skipped')
6623ac34 455 selection.add_option(
456 '--no-download-archive',
457 dest='download_archive', action="store_const", const=None,
458 help='Do not use archive file (default)')
8450c15c
PH
459 selection.add_option(
460 '--include-ads',
461 dest='include_ads', action='store_true',
d9aa2332 462 help=optparse.SUPPRESS_HELP)
6623ac34 463 selection.add_option(
464 '--no-include-ads',
465 dest='include_ads', action='store_false',
d9aa2332 466 help=optparse.SUPPRESS_HELP)
34a741a8 467
8450c15c
PH
468 authentication = optparse.OptionGroup(parser, 'Authentication Options')
469 authentication.add_option(
470 '-u', '--username',
471 dest='username', metavar='USERNAME',
17941321 472 help='Login with this account ID')
8450c15c
PH
473 authentication.add_option(
474 '-p', '--password',
475 dest='password', metavar='PASSWORD',
7a5c1cfe 476 help='Account password. If this option is left out, yt-dlp will ask interactively')
8450c15c
PH
477 authentication.add_option(
478 '-2', '--twofactor',
479 dest='twofactor', metavar='TWOFACTOR',
3540fe26 480 help='Two-factor authentication code')
8450c15c
PH
481 authentication.add_option(
482 '-n', '--netrc',
483 action='store_true', dest='usenetrc', default=False,
17941321 484 help='Use .netrc authentication data')
0001fcb5 485 authentication.add_option(
486 '--netrc-location',
487 dest='netrc_location', metavar='PATH',
488 help='Location of .netrc authentication data; either the path or its containing directory. Defaults to ~/.netrc')
8450c15c
PH
489 authentication.add_option(
490 '--video-password',
491 dest='videopassword', metavar='PASSWORD',
29f7c58a 492 help='Video password (vimeo, youku)')
b31fdeed 493 authentication.add_option(
797c636b
RA
494 '--ap-mso',
495 dest='ap_mso', metavar='MSO',
537f7533 496 help='Adobe Pass multiple-system operator (TV provider) identifier, use --ap-list-mso for a list of available MSOs')
b31fdeed 497 authentication.add_option(
1b6712ab 498 '--ap-username',
797c636b 499 dest='ap_username', metavar='USERNAME',
537f7533 500 help='Multiple-system operator account login')
b31fdeed 501 authentication.add_option(
1b6712ab 502 '--ap-password',
797c636b 503 dest='ap_password', metavar='PASSWORD',
7a5c1cfe 504 help='Multiple-system operator account password. If this option is left out, yt-dlp will ask interactively')
b31fdeed 505 authentication.add_option(
87148bb7
RA
506 '--ap-list-mso',
507 action='store_true', dest='ap_list_mso', default=False,
537f7533 508 help='List all supported multiple-system operators')
8450c15c
PH
509
510 video_format = optparse.OptionGroup(parser, 'Video Format Options')
511 video_format.add_option(
512 '-f', '--format',
513 action='store', dest='format', metavar='FORMAT', default=None,
eb8a4433 514 help='Video format code, see "FORMAT SELECTION" for more details')
515 video_format.add_option(
c76eb41b 516 '-S', '--format-sort', metavar='SORTORDER',
e632bce2 517 dest='format_sort', default=[], type='str', action='callback',
518 callback=_list_from_options_callback, callback_kwargs={'append': -1},
eb8a4433 519 help='Sort the formats by the fields given, see "Sorting Formats" for more details')
520 video_format.add_option(
521 '--format-sort-force', '--S-force',
522 action='store_true', dest='format_sort_force', metavar='FORMAT', default=False,
523 help=(
524 'Force user specified sort order to have precedence over all fields, '
525 'see "Sorting Formats" for more details'))
526 video_format.add_option(
527 '--no-format-sort-force',
528 action='store_false', dest='format_sort_force', metavar='FORMAT', default=False,
529 help=(
530 'Some fields have precedence over the user specified sort order (default), '
531 'see "Sorting Formats" for more details'))
909d24dd 532 video_format.add_option(
533 '--video-multistreams',
53ed7066 534 action='store_true', dest='allow_multiple_video_streams', default=None,
91ebc640 535 help='Allow multiple video streams to be merged into a single file')
909d24dd 536 video_format.add_option(
537 '--no-video-multistreams',
538 action='store_false', dest='allow_multiple_video_streams',
91ebc640 539 help='Only one video stream is downloaded for each output file (default)')
909d24dd 540 video_format.add_option(
541 '--audio-multistreams',
53ed7066 542 action='store_true', dest='allow_multiple_audio_streams', default=None,
91ebc640 543 help='Allow multiple audio streams to be merged into a single file')
909d24dd 544 video_format.add_option(
545 '--no-audio-multistreams',
546 action='store_false', dest='allow_multiple_audio_streams',
91ebc640 547 help='Only one audio stream is downloaded for each output file (default)')
8450c15c
PH
548 video_format.add_option(
549 '--all-formats',
550 action='store_const', dest='format', const='all',
d9aa2332 551 help=optparse.SUPPRESS_HELP)
8450c15c
PH
552 video_format.add_option(
553 '--prefer-free-formats',
554 action='store_true', dest='prefer_free_formats', default=False,
da9be05e 555 help=(
556 'Prefer video formats with free containers over non-free ones of same quality. '
557 'Use with "-S ext" to strictly prefer free containers irrespective of quality'))
558 video_format.add_option(
559 '--no-prefer-free-formats',
1c36c1f3 560 action='store_false', dest='prefer_free_formats', default=False,
da9be05e 561 help="Don't give any special preference to free containers (default)")
e8e73840 562 video_format.add_option(
563 '--check-formats',
0ba692ac 564 action='store_true', dest='check_formats', default=None,
565 help='Check that the formats selected are actually downloadable')
566 video_format.add_option(
567 '--no-check-formats',
568 action='store_false', dest='check_formats',
569 help='Do not check that the formats selected are actually downloadable')
8450c15c
PH
570 video_format.add_option(
571 '-F', '--list-formats',
572 action='store_true', dest='listformats',
b7b04c78 573 help='List available formats of each video. Simulate unless --no-simulate is used')
76d321f6 574 video_format.add_option(
575 '--list-formats-as-table',
91ebc640 576 action='store_true', dest='listformats_table', default=True,
53ed7066 577 help=optparse.SUPPRESS_HELP)
76d321f6 578 video_format.add_option(
6623ac34 579 '--list-formats-old', '--no-list-formats-as-table',
76d321f6 580 action='store_false', dest='listformats_table',
53ed7066 581 help=optparse.SUPPRESS_HELP)
d120e901 582 video_format.add_option(
bd1a281e
PH
583 '--merge-output-format',
584 action='store', dest='merge_output_format', metavar='FORMAT', default=None,
d120e901 585 help=(
00334d0d
S
586 'If a merge is required (e.g. bestvideo+bestaudio), '
587 'output to given container format. One of mkv, mp4, ogg, webm, flv. '
d120e901 588 'Ignored if no merge is required'))
63ad4d43 589 video_format.add_option(
590 '--allow-unplayable-formats',
591 action='store_true', dest='allow_unplayable_formats', default=False,
88acdbc2 592 help=optparse.SUPPRESS_HELP)
63ad4d43 593 video_format.add_option(
594 '--no-allow-unplayable-formats',
595 action='store_false', dest='allow_unplayable_formats',
88acdbc2 596 help=optparse.SUPPRESS_HELP)
8450c15c
PH
597
598 subtitles = optparse.OptionGroup(parser, 'Subtitle Options')
599 subtitles.add_option(
6623ac34 600 '--write-subs', '--write-srt',
8450c15c 601 action='store_true', dest='writesubtitles', default=False,
17941321 602 help='Write subtitle file')
8450c15c 603 subtitles.add_option(
6623ac34 604 '--no-write-subs', '--no-write-srt',
605 action='store_false', dest='writesubtitles',
606 help='Do not write subtitle file (default)')
607 subtitles.add_option(
608 '--write-auto-subs', '--write-automatic-subs',
8450c15c 609 action='store_true', dest='writeautomaticsub', default=False,
e167860c 610 help='Write automatically generated subtitle file (Alias: --write-automatic-subs)')
6623ac34 611 subtitles.add_option(
612 '--no-write-auto-subs', '--no-write-automatic-subs',
613 action='store_false', dest='writeautomaticsub', default=False,
e167860c 614 help='Do not write auto-generated subtitles (default) (Alias: --no-write-automatic-subs)')
8450c15c
PH
615 subtitles.add_option(
616 '--all-subs',
617 action='store_true', dest='allsubtitles', default=False,
c32b0aab 618 help=optparse.SUPPRESS_HELP)
8450c15c
PH
619 subtitles.add_option(
620 '--list-subs',
621 action='store_true', dest='listsubtitles', default=False,
b7b04c78 622 help='List available subtitles of each video. Simulate unless --no-simulate is used')
8450c15c
PH
623 subtitles.add_option(
624 '--sub-format',
a504ced0 625 action='store', dest='subtitlesformat', metavar='FORMAT', default='best',
4a3cdf81 626 help='Subtitle format, accepts formats preference, for example: "srt" or "ass/srt/best"')
8450c15c 627 subtitles.add_option(
e167860c 628 '--sub-langs', '--srt-langs',
8450c15c 629 action='callback', dest='subtitleslangs', metavar='LANGS', type='str',
e632bce2 630 default=[], callback=_list_from_options_callback,
c32b0aab 631 help=(
632 'Languages of the subtitles to download (can be regex) or "all" separated by commas. (Eg: --sub-langs en.*,ja) '
633 'You can prefix the language code with a "-" to exempt it from the requested languages. (Eg: --sub-langs all,-live_chat) '
634 'Use --list-subs for a list of available language tags'))
8450c15c
PH
635
636 downloader = optparse.OptionGroup(parser, 'Download Options')
4cf1e5d2 637 downloader.add_option(
638 '-N', '--concurrent-fragments',
639 dest='concurrent_fragment_downloads', metavar='N', default=1, type=int,
b31fdeed 640 help='Number of fragments of a dash/hlsnative video that should be download concurrently (default is %default)')
8450c15c 641 downloader.add_option(
8ec2b2c4
S
642 '-r', '--limit-rate', '--rate-limit',
643 dest='ratelimit', metavar='RATE',
17941321 644 help='Maximum download rate in bytes per second (e.g. 50K or 4.2M)')
51d9739f 645 downloader.add_option(
646 '--throttled-rate',
647 dest='throttledratelimit', metavar='RATE',
648 help='Minimum download rate in bytes per second below which throttling is assumed and the video data is re-extracted (e.g. 100K)')
8450c15c
PH
649 downloader.add_option(
650 '-R', '--retries',
651 dest='retries', metavar='RETRIES', default=10,
8a51f564 652 help='Number of retries (default is %default), or "infinite"')
52bb437e
S
653 downloader.add_option(
654 '--fragment-retries',
655 dest='fragment_retries', metavar='RETRIES', default=10,
12ee65ea 656 help='Number of retries for a fragment (default is %default), or "infinite" (DASH, hlsnative and ISM)')
9603b660 657 downloader.add_option(
c76eb41b 658 '--skip-unavailable-fragments', '--no-abort-on-unavailable-fragment',
9603b660 659 action='store_true', dest='skip_unavailable_fragments', default=True,
8a51f564 660 help='Skip unavailable fragments for DASH, hlsnative and ISM (default) (Alias: --no-abort-on-unavailable-fragment)')
732fb3f8 661 downloader.add_option(
6623ac34 662 '--abort-on-unavailable-fragment', '--no-skip-unavailable-fragments',
9603b660 663 action='store_false', dest='skip_unavailable_fragments',
8a51f564 664 help='Abort downloading if a fragment is unavailable (Alias: --no-skip-unavailable-fragments)')
0eee52f3
S
665 downloader.add_option(
666 '--keep-fragments',
667 action='store_true', dest='keep_fragments', default=False,
6623ac34 668 help='Keep downloaded fragments on disk after downloading is finished')
669 downloader.add_option(
670 '--no-keep-fragments',
671 action='store_false', dest='keep_fragments',
672 help='Delete downloaded fragments after downloading is finished (default)')
8450c15c
PH
673 downloader.add_option(
674 '--buffer-size',
675 dest='buffersize', metavar='SIZE', default='1024',
17941321 676 help='Size of download buffer (e.g. 1024 or 16K) (default is %default)')
6623ac34 677 downloader.add_option(
678 '--resize-buffer',
679 action='store_false', dest='noresizebuffer',
680 help='The buffer size is automatically resized from an initial value of --buffer-size (default)')
8450c15c
PH
681 downloader.add_option(
682 '--no-resize-buffer',
683 action='store_true', dest='noresizebuffer', default=False,
6623ac34 684 help='Do not automatically adjust the buffer size')
ba515388
S
685 downloader.add_option(
686 '--http-chunk-size',
687 dest='http_chunk_size', metavar='SIZE', default=None,
6623ac34 688 help=(
689 'Size of a chunk for chunk-based HTTP downloading (e.g. 10485760 or 10M) (default is disabled). '
690 'May be useful for bypassing bandwidth throttling imposed by a webserver (experimental)'))
8450c15c
PH
691 downloader.add_option(
692 '--test',
693 action='store_true', dest='test', default=False,
694 help=optparse.SUPPRESS_HELP)
ff815fe6
MS
695 downloader.add_option(
696 '--playlist-reverse',
697 action='store_true',
698 help='Download playlist videos in reverse order')
6623ac34 699 downloader.add_option(
700 '--no-playlist-reverse',
c76eb41b 701 action='store_false', dest='playlist_reverse',
6623ac34 702 help='Download playlist videos in default order (default)')
75822ca7
TC
703 downloader.add_option(
704 '--playlist-random',
705 action='store_true',
706 help='Download playlist videos in random order')
881e6a1f
PH
707 downloader.add_option(
708 '--xattr-set-filesize',
709 dest='xattr_set_filesize', action='store_true',
504f20dd 710 help='Set file xattribute ytdl.filesize with expected file size')
85729c51
PH
711 downloader.add_option(
712 '--hls-prefer-native',
bf09af3a 713 dest='hls_prefer_native', action='store_true', default=None,
52a8a1e1 714 help=optparse.SUPPRESS_HELP)
bf09af3a
S
715 downloader.add_option(
716 '--hls-prefer-ffmpeg',
717 dest='hls_prefer_native', action='store_false', default=None,
52a8a1e1 718 help=optparse.SUPPRESS_HELP)
7d106a65
JMF
719 downloader.add_option(
720 '--hls-use-mpegts',
9bd20204 721 dest='hls_use_mpegts', action='store_true', default=None,
6623ac34 722 help=(
9bd20204 723 'Use the mpegts container for HLS videos; '
724 'allowing some players to play the video while downloading, '
725 'and reducing the chance of file corruption if download is interrupted. '
726 'This is enabled by default for live streams'))
727 downloader.add_option(
728 '--no-hls-use-mpegts',
729 dest='hls_use_mpegts', action='store_false',
730 help=(
731 'Do not use the mpegts container for HLS videos. '
732 'This is default when not downloading live streams'))
222516d9 733 downloader.add_option(
52a8a1e1 734 '--downloader', '--external-downloader',
735 dest='external_downloader', metavar='[PROTO:]NAME', default={}, type='str',
e632bce2 736 action='callback', callback=_dict_from_options_callback,
52a8a1e1 737 callback_kwargs={
738 'allowed_keys': 'http|ftp|m3u8|dash|rtsp|rtmp|mms',
cc0ec3e1 739 'default_key': 'default',
dbf5416a 740 'process': str.strip
741 }, help=(
52a8a1e1 742 'Name or path of the external downloader to use (optionally) prefixed by '
743 'the protocols (http, ftp, m3u8, dash, rstp, rtmp, mms) to use it for. '
744 'Currently supports native, %s (Recommended: aria2c). '
745 'You can use this option multiple times to set different downloaders for different protocols. '
746 'For example, --downloader aria2c --downloader "dash,m3u8:native" will use '
747 'aria2c for http/ftp downloads, and the native downloader for dash/m3u8 downloads '
748 '(Alias: --external-downloader)' % ', '.join(list_external_downloaders())))
c75f0b36 749 downloader.add_option(
46ee996e 750 '--downloader-args', '--external-downloader-args',
751 metavar='NAME:ARGS', dest='external_downloader_args', default={}, type='str',
e632bce2 752 action='callback', callback=_dict_from_options_callback,
b8f6bbe6 753 callback_kwargs={
330690a2 754 'allowed_keys': r'ffmpeg_[io]\d*|%s' % '|'.join(list_external_downloaders()),
cc0ec3e1 755 'default_key': 'default',
756 'process': compat_shlex_split
dbf5416a 757 }, help=(
46ee996e 758 'Give these arguments to the external downloader. '
759 'Specify the downloader name and the arguments separated by a colon ":". '
330690a2 760 'For ffmpeg, arguments can be passed to different positions using the same syntax as --postprocessor-args. '
5d3a0e79 761 'You can use this option multiple times to give different arguments to different downloaders '
762 '(Alias: --external-downloader-args)'))
8450c15c
PH
763
764 workarounds = optparse.OptionGroup(parser, 'Workarounds')
34a741a8 765 workarounds.add_option(
8450c15c
PH
766 '--encoding',
767 dest='encoding', metavar='ENCODING',
34a741a8
PH
768 help='Force the specified encoding (experimental)')
769 workarounds.add_option(
8450c15c
PH
770 '--no-check-certificate',
771 action='store_true', dest='no_check_certificate', default=False,
17941321 772 help='Suppress HTTPS certificate validation')
34a741a8 773 workarounds.add_option(
6623ac34 774 '--prefer-insecure', '--prefer-unsecure',
775 action='store_true', dest='prefer_insecure',
e167860c 776 help='Use an unencrypted connection to retrieve information about the video (Currently supported only for YouTube)')
34a741a8 777 workarounds.add_option(
8450c15c
PH
778 '--user-agent',
779 metavar='UA', dest='user_agent',
17941321 780 help='Specify a custom user agent')
34a741a8 781 workarounds.add_option(
8450c15c
PH
782 '--referer',
783 metavar='URL', dest='referer', default=None,
17941321 784 help='Specify a custom referer, use if the video access is restricted to one domain',
34a741a8
PH
785 )
786 workarounds.add_option(
8450c15c 787 '--add-header',
45016689 788 metavar='FIELD:VALUE', dest='headers', default={}, type='str',
e632bce2 789 action='callback', callback=_dict_from_options_callback,
d818eb74 790 callback_kwargs={'multiple_keys': False},
45016689 791 help='Specify a custom HTTP header and its value, separated by a colon ":". You can use this option multiple times',
34a741a8
PH
792 )
793 workarounds.add_option(
8450c15c
PH
794 '--bidi-workaround',
795 dest='bidi_workaround', action='store_true',
796 help='Work around terminals that lack bidirectional text support. Requires bidiv or fribidi executable in PATH')
1cf376f5 797 workarounds.add_option(
798 '--sleep-requests', metavar='SECONDS',
799 dest='sleep_interval_requests', type=float,
800 help='Number of seconds to sleep between requests during data extraction')
5f0d813d 801 workarounds.add_option(
065bc354 802 '--sleep-interval', '--min-sleep-interval', metavar='SECONDS',
649f7966 803 dest='sleep_interval', type=float,
7aa589a5 804 help=(
e167860c 805 'Number of seconds to sleep before each download. '
806 'This is the minimum time to sleep when used along with --max-sleep-interval '
807 '(Alias: --min-sleep-interval)'))
065bc354 808 workarounds.add_option(
809 '--max-sleep-interval', metavar='SECONDS',
810 dest='max_sleep_interval', type=float,
e167860c 811 help='Maximum number of seconds to sleep. Can only be used along with --min-sleep-interval')
0c9df79e 812 workarounds.add_option(
c76eb41b 813 '--sleep-subtitles', metavar='SECONDS',
31108ce9 814 dest='sleep_interval_subtitles', default=0, type=int,
1cf376f5 815 help='Number of seconds to sleep before each subtitle download')
34a741a8 816
0744a815 817 verbosity = optparse.OptionGroup(parser, 'Verbosity and Simulation Options')
8450c15c
PH
818 verbosity.add_option(
819 '-q', '--quiet',
820 action='store_true', dest='quiet', default=False,
34488702 821 help='Activate quiet mode. If used with --verbose, print the log to stderr')
34a741a8
PH
822 verbosity.add_option(
823 '--no-warnings',
824 dest='no_warnings', action='store_true', default=False,
825 help='Ignore warnings')
8450c15c
PH
826 verbosity.add_option(
827 '-s', '--simulate',
b7b04c78 828 action='store_true', dest='simulate', default=None,
17941321 829 help='Do not download the video and do not write anything to disk')
b7b04c78 830 verbosity.add_option(
831 '--no-simulate',
832 action='store_false', dest='simulate',
833 help='Download the video even if printing/listing options are used')
b7da73eb 834 verbosity.add_option(
835 '--ignore-no-formats-error',
836 action='store_true', dest='ignore_no_formats_error', default=False,
837 help=(
838 'Ignore "No video formats" error. Usefull for extracting metadata '
34488702 839 'even if the videos are not actually available for download (experimental)'))
b7da73eb 840 verbosity.add_option(
841 '--no-ignore-no-formats-error',
842 action='store_false', dest='ignore_no_formats_error',
843 help='Throw error when no downloadable video formats are found (default)')
8450c15c 844 verbosity.add_option(
6623ac34 845 '--skip-download', '--no-download',
8450c15c 846 action='store_true', dest='skip_download', default=False,
e167860c 847 help='Do not download the video but write all related files (Alias: --no-download)')
53c18592 848 verbosity.add_option(
ad3dc496 849 '-O', '--print',
850 metavar='TEMPLATE', action='append', dest='forceprint',
53c18592 851 help=(
b7b04c78 852 'Quiet, but print the given fields for each video. Simulate unless --no-simulate is used. '
853 'Either a field name or same syntax as the output template can be used'))
8450c15c
PH
854 verbosity.add_option(
855 '-g', '--get-url',
856 action='store_true', dest='geturl', default=False,
53c18592 857 help=optparse.SUPPRESS_HELP)
8450c15c
PH
858 verbosity.add_option(
859 '-e', '--get-title',
860 action='store_true', dest='gettitle', default=False,
53c18592 861 help=optparse.SUPPRESS_HELP)
8450c15c
PH
862 verbosity.add_option(
863 '--get-id',
864 action='store_true', dest='getid', default=False,
53c18592 865 help=optparse.SUPPRESS_HELP)
8450c15c
PH
866 verbosity.add_option(
867 '--get-thumbnail',
868 action='store_true', dest='getthumbnail', default=False,
53c18592 869 help=optparse.SUPPRESS_HELP)
8450c15c
PH
870 verbosity.add_option(
871 '--get-description',
872 action='store_true', dest='getdescription', default=False,
53c18592 873 help=optparse.SUPPRESS_HELP)
8450c15c
PH
874 verbosity.add_option(
875 '--get-duration',
876 action='store_true', dest='getduration', default=False,
53c18592 877 help=optparse.SUPPRESS_HELP)
8450c15c
PH
878 verbosity.add_option(
879 '--get-filename',
880 action='store_true', dest='getfilename', default=False,
53c18592 881 help=optparse.SUPPRESS_HELP)
8450c15c
PH
882 verbosity.add_option(
883 '--get-format',
884 action='store_true', dest='getformat', default=False,
53c18592 885 help=optparse.SUPPRESS_HELP)
8450c15c
PH
886 verbosity.add_option(
887 '-j', '--dump-json',
888 action='store_true', dest='dumpjson', default=False,
b7b04c78 889 help='Quiet, but print JSON information for each video. Simulate unless --no-simulate is used. See "OUTPUT TEMPLATE" for a description of available keys')
63e0be34
PH
890 verbosity.add_option(
891 '-J', '--dump-single-json',
892 action='store_true', dest='dump_single_json', default=False,
6623ac34 893 help=(
b7b04c78 894 'Quiet, but print JSON information for each url or infojson passed. Simulate unless --no-simulate is used. '
895 'If the URL refers to a playlist, the whole playlist information is dumped in a single line'))
c0bdf32a
PH
896 verbosity.add_option(
897 '--print-json',
898 action='store_true', dest='print_json', default=False,
b7b04c78 899 help=optparse.SUPPRESS_HELP)
2d30509f 900 verbosity.add_option(
c76eb41b 901 '--force-write-archive', '--force-write-download-archive', '--force-download-archive',
2d30509f 902 action='store_true', dest='force_write_download_archive', default=False,
903 help=(
e58c22a0 904 'Force download archive entries to be written as far as no errors occur, '
905 'even if -s or another simulation option is used (Alias: --force-download-archive)'))
8450c15c
PH
906 verbosity.add_option(
907 '--newline',
908 action='store_true', dest='progress_with_newline', default=False,
17941321 909 help='Output progress bar as new lines')
8450c15c
PH
910 verbosity.add_option(
911 '--no-progress',
912 action='store_true', dest='noprogress', default=False,
17941321 913 help='Do not print progress bar')
8450c15c
PH
914 verbosity.add_option(
915 '--console-title',
916 action='store_true', dest='consoletitle', default=False,
17941321 917 help='Display progress in console titlebar')
8450c15c
PH
918 verbosity.add_option(
919 '-v', '--verbose',
920 action='store_true', dest='verbose', default=False,
17941321 921 help='Print various debugging information')
8450c15c 922 verbosity.add_option(
8bba753c 923 '--dump-pages', '--dump-intermediate-pages',
8450c15c 924 action='store_true', dest='dump_intermediate_pages', default=False,
79979c68 925 help='Print downloaded pages encoded using base64 to debug problems (very verbose)')
8450c15c
PH
926 verbosity.add_option(
927 '--write-pages',
928 action='store_true', dest='write_pages', default=False,
929 help='Write downloaded intermediary pages to files in the current directory to debug problems')
930 verbosity.add_option(
931 '--youtube-print-sig-code',
932 action='store_true', dest='youtube_print_sig_code', default=False,
933 help=optparse.SUPPRESS_HELP)
934 verbosity.add_option(
2f543a21 935 '--print-traffic', '--dump-headers',
8450c15c
PH
936 dest='debug_printtraffic', action='store_true', default=False,
937 help='Display sent and read HTTP traffic')
58b1f00d
PH
938 verbosity.add_option(
939 '-C', '--call-home',
940 dest='call_home', action='store_true', default=False,
7a5c1cfe 941 # help='[Broken] Contact the yt-dlp server for debugging')
8d801631 942 help=optparse.SUPPRESS_HELP)
8bfa7545
PH
943 verbosity.add_option(
944 '--no-call-home',
6623ac34 945 dest='call_home', action='store_false',
7a5c1cfe 946 # help='Do not contact the yt-dlp server for debugging (default)')
8d801631 947 help=optparse.SUPPRESS_HELP)
8450c15c
PH
948
949 filesystem = optparse.OptionGroup(parser, 'Filesystem Options')
950 filesystem.add_option(
951 '-a', '--batch-file',
952 dest='batchfile', metavar='FILE',
5d60b997 953 help="File containing URLs to download ('-' for stdin), one URL per line. "
8a51f564 954 "Lines starting with '#', ';' or ']' are considered as comments and ignored")
8450c15c
PH
955 filesystem.add_option(
956 '--id', default=False,
6623ac34 957 action='store_true', dest='useid', help=optparse.SUPPRESS_HELP)
0202b52a 958 filesystem.add_option(
959 '-P', '--paths',
d74a58a1 960 metavar='[TYPES:]PATH', dest='paths', default={}, type='str',
e632bce2 961 action='callback', callback=_dict_from_options_callback,
d74a58a1 962 callback_kwargs={
963 'allowed_keys': 'home|temp|%s' % '|'.join(OUTTMPL_TYPES.keys()),
964 'default_key': 'home'
965 }, help=(
0202b52a 966 'The paths where the files should be downloaded. '
de6000d9 967 'Specify the type of file and the path separated by a colon ":". '
968 'All the same types as --output are supported. '
d74a58a1 969 'Additionally, you can also provide "home" (default) and "temp" paths. '
0202b52a 970 'All intermediary files are first downloaded to the temp path and '
971 'then the final files are moved over to the home path after download is finished. '
de6000d9 972 'This option is ignored if --output is an absolute path'))
8450c15c
PH
973 filesystem.add_option(
974 '-o', '--output',
d818eb74 975 metavar='[TYPES:]TEMPLATE', dest='outtmpl', default={}, type='str',
e632bce2 976 action='callback', callback=_dict_from_options_callback,
de6000d9 977 callback_kwargs={
978 'allowed_keys': '|'.join(OUTTMPL_TYPES.keys()),
cc0ec3e1 979 'default_key': 'default'
dbf5416a 980 }, help='Output filename template; see "OUTPUT TEMPLATE" for details')
a820dc72
RA
981 filesystem.add_option(
982 '--output-na-placeholder',
0bc0a322 983 dest='outtmpl_na_placeholder', metavar='TEXT', default='NA',
984 help=('Placeholder value for unavailable meta fields in output filename template (default: "%default")'))
8450c15c
PH
985 filesystem.add_option(
986 '--autonumber-size',
be5df5ee
S
987 dest='autonumber_size', metavar='NUMBER', type=int,
988 help=optparse.SUPPRESS_HELP)
acbb2374
CP
989 filesystem.add_option(
990 '--autonumber-start',
1a241a2d 991 dest='autonumber_start', metavar='NUMBER', default=1, type=int,
a439a3a4 992 help=optparse.SUPPRESS_HELP)
8450c15c
PH
993 filesystem.add_option(
994 '--restrict-filenames',
995 action='store_true', dest='restrictfilenames', default=False,
996 help='Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames')
6623ac34 997 filesystem.add_option(
998 '--no-restrict-filenames',
c2934512 999 action='store_false', dest='restrictfilenames',
6623ac34 1000 help='Allow Unicode characters, "&" and spaces in filenames (default)')
c2934512 1001 filesystem.add_option(
1002 '--windows-filenames',
1003 action='store_true', dest='windowsfilenames', default=False,
1004 help='Force filenames to be windows compatible')
1005 filesystem.add_option(
1006 '--no-windows-filenames',
1007 action='store_false', dest='windowsfilenames',
1008 help='Make filenames windows compatible only if using windows (default)')
1009 filesystem.add_option(
1010 '--trim-filenames', '--trim-file-names', metavar='LENGTH',
1011 dest='trim_file_name', default=0, type=int,
1012 help='Limit the filename length (excluding extension) to the specified number of characters')
2865cf04 1013 filesystem.add_option(
486fb179 1014 '--auto-number',
2865cf04 1015 action='store_true', dest='autonumber', default=False,
be5df5ee 1016 help=optparse.SUPPRESS_HELP)
8450c15c 1017 filesystem.add_option(
486fb179 1018 '--title',
8450c15c 1019 action='store_true', dest='usetitle', default=False,
be5df5ee 1020 help=optparse.SUPPRESS_HELP)
8450c15c 1021 filesystem.add_option(
486fb179 1022 '--literal', default=False,
8450c15c 1023 action='store_true', dest='usetitle',
be5df5ee 1024 help=optparse.SUPPRESS_HELP)
8450c15c
PH
1025 filesystem.add_option(
1026 '-w', '--no-overwrites',
0c3d0f51 1027 action='store_false', dest='overwrites', default=None,
1028 help='Do not overwrite any files')
1029 filesystem.add_option(
1030 '--force-overwrites', '--yes-overwrites',
1031 action='store_true', dest='overwrites',
1032 help='Overwrite all video and metadata files. This option includes --no-continue')
1033 filesystem.add_option(
1034 '--no-force-overwrites',
1035 action='store_const', dest='overwrites', const=None,
1036 help='Do not overwrite the video, but overwrite related files (default)')
8450c15c
PH
1037 filesystem.add_option(
1038 '-c', '--continue',
1039 action='store_true', dest='continue_dl', default=True,
c25228e5 1040 help='Resume partially downloaded files/fragments (default)')
8450c15c
PH
1041 filesystem.add_option(
1042 '--no-continue',
1043 action='store_false', dest='continue_dl',
c25228e5 1044 help=(
1045 'Do not resume partially downloaded fragments. '
e58c22a0 1046 'If the file is not fragmented, restart download of the entire file'))
6623ac34 1047 filesystem.add_option(
1048 '--part',
1049 action='store_false', dest='nopart', default=False,
1050 help='Use .part files instead of writing directly into output file (default)')
8450c15c
PH
1051 filesystem.add_option(
1052 '--no-part',
6623ac34 1053 action='store_true', dest='nopart',
17941321 1054 help='Do not use .part files - write directly into output file')
6623ac34 1055 filesystem.add_option(
1056 '--mtime',
1057 action='store_true', dest='updatetime', default=True,
1058 help='Use the Last-modified header to set the file modification time (default)')
8450c15c
PH
1059 filesystem.add_option(
1060 '--no-mtime',
6623ac34 1061 action='store_false', dest='updatetime',
17941321 1062 help='Do not use the Last-modified header to set the file modification time')
8450c15c
PH
1063 filesystem.add_option(
1064 '--write-description',
1065 action='store_true', dest='writedescription', default=False,
17941321 1066 help='Write video description to a .description file')
6623ac34 1067 filesystem.add_option(
1068 '--no-write-description',
1069 action='store_false', dest='writedescription',
1070 help='Do not write video description (default)')
8450c15c
PH
1071 filesystem.add_option(
1072 '--write-info-json',
1073 action='store_true', dest='writeinfojson', default=False,
c25228e5 1074 help='Write video metadata to a .info.json file (this may contain personal information)')
6623ac34 1075 filesystem.add_option(
1076 '--no-write-info-json',
1077 action='store_false', dest='writeinfojson',
1078 help='Do not write video metadata (default)')
8450c15c
PH
1079 filesystem.add_option(
1080 '--write-annotations',
1081 action='store_true', dest='writeannotations', default=False,
0bb1bc1b 1082 help=optparse.SUPPRESS_HELP)
6623ac34 1083 filesystem.add_option(
1084 '--no-write-annotations',
1085 action='store_false', dest='writeannotations',
0bb1bc1b 1086 help=optparse.SUPPRESS_HELP)
cac96421 1087 filesystem.add_option(
1088 '--write-playlist-metafiles',
53ed7066 1089 action='store_true', dest='allow_playlist_files', default=None,
cac96421 1090 help=(
1091 'Write playlist metadata in addition to the video metadata '
1092 'when using --write-info-json, --write-description etc. (default)'))
1093 filesystem.add_option(
1094 '--no-write-playlist-metafiles',
1095 action='store_false', dest='allow_playlist_files',
e167860c 1096 help='Do not write playlist metadata when using --write-info-json, --write-description etc.')
75d43ca0 1097 filesystem.add_option(
1098 '--clean-infojson',
e4f02757 1099 action='store_true', dest='clean_infojson', default=None,
75d43ca0 1100 help=(
1101 'Remove some private fields such as filenames from the infojson. '
1102 'Note that it could still contain some personal information (default)'))
1103 filesystem.add_option(
1104 '--no-clean-infojson',
1105 action='store_false', dest='clean_infojson',
1106 help='Write all fields to the infojson')
06167fbb 1107 filesystem.add_option(
2305e2e5 1108 '--write-comments', '--get-comments',
06167fbb 1109 action='store_true', dest='getcomments', default=False,
277d6ff5 1110 help=(
2305e2e5 1111 'Retrieve video comments to be placed in the infojson. '
1112 'The comments are fetched even without this option if the extraction is known to be quick (Alias: --get-comments)'))
1113 filesystem.add_option(
1114 '--no-write-comments', '--no-get-comments',
dd594deb 1115 action='store_false', dest='getcomments',
2305e2e5 1116 help='Do not retrieve video comments unless the extraction is known to be quick (Alias: --no-get-comments)')
8450c15c 1117 filesystem.add_option(
244fe977 1118 '--load-info-json', '--load-info',
8450c15c 1119 dest='load_info_filename', metavar='FILE',
1a48181a 1120 help='JSON file containing the video information (created with the "--write-info-json" option)')
8450c15c
PH
1121 filesystem.add_option(
1122 '--cookies',
1123 dest='cookiefile', metavar='FILE',
17941321 1124 help='File to read cookies from and dump cookie jar in')
6623ac34 1125 filesystem.add_option(
1126 '--no-cookies',
1127 action='store_const', const=None, dest='cookiefile', metavar='FILE',
982ee69a
MB
1128 help='Do not read/dump cookies from/to file (default)')
1129 filesystem.add_option(
1130 '--cookies-from-browser',
1131 dest='cookiesfrombrowser', metavar='BROWSER[:PROFILE]',
1132 help=(
1133 'Load cookies from a user profile of the given web browser. '
1134 'Currently supported browsers are: {}. '
1135 'You can specify the user profile name or directory using '
1136 '"BROWSER:PROFILE_NAME" or "BROWSER:PROFILE_PATH". '
1137 'If no profile is given, the most recently accessed one is used'.format(
ca46b941 1138 ', '.join(sorted(SUPPORTED_BROWSERS)))))
982ee69a
MB
1139 filesystem.add_option(
1140 '--no-cookies-from-browser',
1141 action='store_const', const=None, dest='cookiesfrombrowser',
1142 help='Do not load cookies from browser (default)')
34a741a8
PH
1143 filesystem.add_option(
1144 '--cache-dir', dest='cachedir', default=None, metavar='DIR',
9ee4f0bb 1145 help='Location in the filesystem where youtube-dl can store some downloaded information (such as client ids and signatures) permanently. By default $XDG_CACHE_HOME/yt-dlp or ~/.cache/yt-dlp')
34a741a8 1146 filesystem.add_option(
6623ac34 1147 '--no-cache-dir', action='store_false', dest='cachedir',
34a741a8
PH
1148 help='Disable filesystem caching')
1149 filesystem.add_option(
8450c15c
PH
1150 '--rm-cache-dir',
1151 action='store_true', dest='rm_cachedir',
34a741a8
PH
1152 help='Delete all filesystem cache files')
1153
b31fdeed 1154 thumbnail = optparse.OptionGroup(parser, 'Thumbnail Options')
cfb56d1a
PH
1155 thumbnail.add_option(
1156 '--write-thumbnail',
1157 action='store_true', dest='writethumbnail', default=False,
17941321 1158 help='Write thumbnail image to disk')
6623ac34 1159 thumbnail.add_option(
1160 '--no-write-thumbnail',
1161 action='store_false', dest='writethumbnail',
1162 help='Do not write thumbnail image to disk (default)')
ec82d85a
PH
1163 thumbnail.add_option(
1164 '--write-all-thumbnails',
1165 action='store_true', dest='write_all_thumbnails', default=False,
17941321 1166 help='Write all thumbnail image formats to disk')
cfb56d1a
PH
1167 thumbnail.add_option(
1168 '--list-thumbnails',
1169 action='store_true', dest='list_thumbnails', default=False,
b7b04c78 1170 help='List available thumbnails of each video. Simulate unless --no-simulate is used')
cfb56d1a 1171
732044af 1172 link = optparse.OptionGroup(parser, 'Internet Shortcut Options')
1173 link.add_option(
1174 '--write-link',
1175 action='store_true', dest='writelink', default=False,
8a51f564 1176 help='Write an internet shortcut file, depending on the current platform (.url, .webloc or .desktop). The URL may be cached by the OS')
732044af 1177 link.add_option(
1178 '--write-url-link',
1179 action='store_true', dest='writeurllink', default=False,
8a51f564 1180 help='Write a .url Windows internet shortcut. The OS caches the URL based on the file path')
732044af 1181 link.add_option(
1182 '--write-webloc-link',
1183 action='store_true', dest='writewebloclink', default=False,
8a51f564 1184 help='Write a .webloc macOS internet shortcut')
732044af 1185 link.add_option(
1186 '--write-desktop-link',
1187 action='store_true', dest='writedesktoplink', default=False,
8a51f564 1188 help='Write a .desktop Linux internet shortcut')
732044af 1189
1190 postproc = optparse.OptionGroup(parser, 'Post-Processing Options')
8450c15c
PH
1191 postproc.add_option(
1192 '-x', '--extract-audio',
1193 action='store_true', dest='extractaudio', default=False,
e4172ac9 1194 help='Convert video files to audio-only files (requires ffmpeg and ffprobe)')
8450c15c
PH
1195 postproc.add_option(
1196 '--audio-format', metavar='FORMAT', dest='audioformat', default='best',
81a23040 1197 help=(
1198 'Specify audio format to convert the audio to when -x is used. Currently supported formats are: '
1199 'best (default) or one of %s' % '|'.join(FFmpegExtractAudioPP.SUPPORTED_EXTS)))
8450c15c
PH
1200 postproc.add_option(
1201 '--audio-quality', metavar='QUALITY',
1202 dest='audioquality', default='5',
e4172ac9 1203 help='Specify ffmpeg audio quality, insert a value between 0 (better) and 9 (worse) for VBR or a specific bitrate like 128K (default %default)')
efe87a10
FS
1204 postproc.add_option(
1205 '--remux-video',
1206 metavar='FORMAT', dest='remuxvideo', default=None,
6623ac34 1207 help=(
17912249 1208 'Remux the video into another container if necessary (currently supported: %s). '
06167fbb 1209 'If target container does not support the video/audio codec, remuxing will fail. '
81a23040 1210 'You can specify multiple rules; Eg. "aac>m4a/mov>mp4/mkv" will remux aac to m4a, mov to mp4 '
1211 'and anything else to mkv.' % '|'.join(FFmpegVideoRemuxerPP.SUPPORTED_EXTS)))
8450c15c
PH
1212 postproc.add_option(
1213 '--recode-video',
1214 metavar='FORMAT', dest='recodevideo', default=None,
17912249 1215 help=(
1216 'Re-encode the video into another format if re-encoding is necessary. '
81a23040 1217 'The syntax and supported formats are the same as --remux-video'))
d84f1d14 1218 postproc.add_option(
45016689 1219 '--postprocessor-args', '--ppa',
1220 metavar='NAME:ARGS', dest='postprocessor_args', default={}, type='str',
e632bce2 1221 action='callback', callback=_dict_from_options_callback,
d818eb74 1222 callback_kwargs={
1223 'allowed_keys': r'\w+(?:\+\w+)?', 'default_key': 'default-compat',
cc0ec3e1 1224 'process': compat_shlex_split,
1225 'multiple_keys': False
dbf5416a 1226 }, help=(
1b77b347 1227 'Give these arguments to the postprocessors. '
43820c03 1228 'Specify the postprocessor/executable name and the arguments separated by a colon ":" '
8fa43c73 1229 'to give the argument to the specified postprocessor/executable. Supported PP are: '
7a340e0d
NA
1230 'Merger, ModifyChapters, SplitChapters, ExtractAudio, VideoRemuxer, VideoConvertor, '
1231 'Metadata, EmbedSubtitle, EmbedThumbnail, SubtitlesConvertor, ThumbnailsConvertor, '
1232 'FixupStretched, FixupM4a, FixupM3u8, FixupTimestamp and FixupDuration. '
1233 'The supported executables are: AtomicParsley, FFmpeg and FFprobe. '
43820c03 1234 'You can also specify "PP+EXE:ARGS" to give the arguments to the specified executable '
5b1ecbb3 1235 'only when being used by the specified postprocessor. Additionally, for ffmpeg/ffprobe, '
597c1866 1236 '"_i"/"_o" can be appended to the prefix optionally followed by a number to pass the argument '
1237 'before the specified input/output file. Eg: --ppa "Merger+ffmpeg_i1:-v quiet". '
5b1ecbb3 1238 'You can use this option multiple times to give different arguments to different '
1239 'postprocessors. (Alias: --ppa)'))
8450c15c
PH
1240 postproc.add_option(
1241 '-k', '--keep-video',
1242 action='store_true', dest='keepvideo', default=False,
6623ac34 1243 help='Keep the intermediate video file on disk after post-processing')
1244 postproc.add_option(
1245 '--no-keep-video',
1246 action='store_false', dest='keepvideo',
1247 help='Delete the intermediate video file after post-processing (default)')
1248 postproc.add_option(
1249 '--post-overwrites',
1250 action='store_false', dest='nopostoverwrites',
1251 help='Overwrite post-processed files (default)')
8450c15c
PH
1252 postproc.add_option(
1253 '--no-post-overwrites',
1254 action='store_true', dest='nopostoverwrites', default=False,
6623ac34 1255 help='Do not overwrite post-processed files')
8450c15c
PH
1256 postproc.add_option(
1257 '--embed-subs',
1258 action='store_true', dest='embedsubtitles', default=False,
40025ee2 1259 help='Embed subtitles in the video (only for mp4, webm and mkv videos)')
6623ac34 1260 postproc.add_option(
1261 '--no-embed-subs',
1262 action='store_false', dest='embedsubtitles',
1263 help='Do not embed subtitles (default)')
8450c15c
PH
1264 postproc.add_option(
1265 '--embed-thumbnail',
1266 action='store_true', dest='embedthumbnail', default=False,
6aecd871 1267 help='Embed thumbnail in the video as cover art')
6623ac34 1268 postproc.add_option(
1269 '--no-embed-thumbnail',
1270 action='store_false', dest='embedthumbnail',
1271 help='Do not embed thumbnail (default)')
8450c15c 1272 postproc.add_option(
7e067091 1273 '--embed-metadata', '--add-metadata',
8450c15c 1274 action='store_true', dest='addmetadata', default=False,
7a340e0d 1275 help='Embed metadata to the video file. Also adds chapters to file unless --no-add-chapters is used (Alias: --add-metadata)')
6623ac34 1276 postproc.add_option(
7e067091 1277 '--no-embed-metadata', '--no-add-metadata',
6623ac34 1278 action='store_false', dest='addmetadata',
7a340e0d
NA
1279 help='Do not add metadata to file (default) (Alias: --no-add-metadata)')
1280 postproc.add_option(
1281 '--embed-chapters', '--add-chapters',
1282 action='store_true', dest='addchapters', default=None,
1283 help='Add chapter markers to the video file (Alias: --add-chapters)')
1284 postproc.add_option(
1285 '--no-embed-chapters', '--no-add-chapters',
1286 action='store_false', dest='addchapters',
1287 help='Do not add chapter markers (default) (Alias: --no-add-chapters)')
e7db87f7 1288 postproc.add_option(
1289 '--metadata-from-title',
1290 metavar='FORMAT', dest='metafromtitle',
5bfa4862 1291 help=optparse.SUPPRESS_HELP)
1292 postproc.add_option(
1293 '--parse-metadata',
e9f4ccd1 1294 metavar='FROM:TO', dest='parse_metadata', action='append',
6623ac34 1295 help=(
73cd218f 1296 'Parse additional metadata like title/artist from other fields; '
1297 'see "MODIFYING METADATA" for details'))
e9f4ccd1 1298 postproc.add_option(
1299 '--replace-in-metadata',
1300 dest='parse_metadata', metavar='FIELDS REGEX REPLACE', action='append', nargs=3,
1301 help='Replace text in a metadata field using the given regex. This option can be used multiple times')
8450c15c
PH
1302 postproc.add_option(
1303 '--xattrs',
1304 action='store_true', dest='xattrs', default=False,
17941321 1305 help='Write metadata to the video file\'s xattrs (using dublin core and xdg standards)')
6271f1ca
PH
1306 postproc.add_option(
1307 '--fixup',
99594a11 1308 metavar='POLICY', dest='fixup', default=None,
f89b3e2d 1309 choices=('never', 'ignore', 'warn', 'detect_or_warn', 'force'),
6623ac34 1310 help=(
1311 'Automatically correct known faults of the file. '
1312 'One of never (do nothing), warn (only emit a warning), '
f89b3e2d 1313 'detect_or_warn (the default; fix file if we can, warn otherwise), '
1314 'force (try fixing even if file already exists'))
8450c15c 1315 postproc.add_option(
6623ac34 1316 '--prefer-avconv', '--no-prefer-ffmpeg',
8450c15c 1317 action='store_false', dest='prefer_ffmpeg',
e4172ac9 1318 help=optparse.SUPPRESS_HELP)
8450c15c 1319 postproc.add_option(
6623ac34 1320 '--prefer-ffmpeg', '--no-prefer-avconv',
e4172ac9 1321 action='store_true', dest='prefer_ffmpeg', default=True,
1322 help=optparse.SUPPRESS_HELP)
73fac4e9
PH
1323 postproc.add_option(
1324 '--ffmpeg-location', '--avconv-location', metavar='PATH',
1325 dest='ffmpeg_location',
e4172ac9 1326 help='Location of the ffmpeg binary; either the path to the binary or its containing directory')
34a741a8 1327 postproc.add_option(
c681cb5d 1328 '--exec', metavar='CMD',
ad3dc496 1329 action='append', dest='exec_cmd',
9de3ea31 1330 help=(
1331 'Execute a command on the file after downloading and post-processing. '
34488702 1332 'Same syntax as the output template can be used to pass any field as arguments to the command. '
9de3ea31 1333 'An additional field "filepath" that contains the final path of the downloaded file is also available. '
c681cb5d 1334 'If no fields are passed, %(filepath)q is appended to the end of the command. '
1335 'This option can be used multiple times'))
1336 postproc.add_option(
1337 '--no-exec',
1338 action='store_const', dest='exec_cmd', const=[],
1339 help='Remove any previously defined --exec')
1340 postproc.add_option(
1341 '--exec-before-download', metavar='CMD',
ad3dc496 1342 action='append', dest='exec_before_dl_cmd',
c681cb5d 1343 help=(
1344 'Execute a command before the actual download. '
1345 'The syntax is the same as --exec but "filepath" is not available. '
1346 'This option can be used multiple times'))
5520aa2d 1347 postproc.add_option(
c681cb5d 1348 '--no-exec-before-download',
1349 action='store_const', dest='exec_before_dl_cmd', const=[],
1350 help='Remove any previously defined --exec-before-download')
e9fade72 1351 postproc.add_option(
e167860c 1352 '--convert-subs', '--convert-sub', '--convert-subtitles',
e9fade72 1353 metavar='FORMAT', dest='convertsubtitles', default=None,
81a23040 1354 help=(
1355 'Convert the subtitles to another format (currently supported: %s) '
1356 '(Alias: --convert-subtitles)' % '|'.join(FFmpegSubtitlesConvertorPP.SUPPORTED_EXTS)))
8fa43c73 1357 postproc.add_option(
1358 '--convert-thumbnails',
1359 metavar='FORMAT', dest='convertthumbnails', default=None,
81a23040 1360 help=(
1361 'Convert the thumbnails to another format '
1362 '(currently supported: %s) ' % '|'.join(FFmpegThumbnailsConvertorPP.SUPPORTED_EXTS)))
72755351 1363 postproc.add_option(
1364 '--split-chapters', '--split-tracks',
1365 dest='split_chapters', action='store_true', default=False,
1366 help=(
1367 'Split video into multiple files based on internal chapters. '
1368 'The "chapter:" prefix can be used with "--paths" and "--output" to '
1369 'set the output filename for the split files. See "OUTPUT TEMPLATE" for details'))
1370 postproc.add_option(
1371 '--no-split-chapters', '--no-split-tracks',
1372 dest='split_chapters', action='store_false',
1373 help='Do not split video based on chapters (default)')
7a340e0d
NA
1374 postproc.add_option(
1375 '--remove-chapters',
1376 metavar='REGEX', dest='remove_chapters', action='append',
1377 help='Remove chapters whose title matches the given regular expression. This option can be used multiple times')
1378 postproc.add_option(
1379 '--no-remove-chapters', dest='remove_chapters', action='store_const', const=None,
1380 help='Do not remove any chapters from the file (default)')
1381 postproc.add_option(
1382 '--force-keyframes-at-cuts',
1383 action='store_true', dest='force_keyframes_at_cuts', default=False,
1384 help=(
1385 'Force keyframes around the chapters before removing/splitting them. '
1386 'Requires a reencode and thus is very slow, but the resulting video '
1387 'may have fewer artifacts around the cuts'))
1388 postproc.add_option(
1389 '--no-force-keyframes-at-cuts',
1390 action='store_false', dest='force_keyframes_at_cuts',
1391 help='Do not force keyframes around the chapters when cutting/splitting (default)')
34a741a8 1392
7a340e0d
NA
1393 sponsorblock = optparse.OptionGroup(parser, 'SponsorBlock Options', description=(
1394 'Make chapter entries for, or remove various segments (sponsor, introductions, etc.) '
1395 'from downloaded YouTube videos using the SponsorBlock API (https://sponsor.ajay.app)'))
1396 sponsorblock.add_option(
1397 '--sponsorblock-mark', metavar='CATS',
1398 dest='sponsorblock_mark', default=set(), action='callback', type='str',
1399 callback=_set_from_options_callback, callback_kwargs={'allowed_values': SponsorBlockPP.CATEGORIES.keys()},
1400 help=(
1401 'SponsorBlock categories to create chapters for, separated by commas. '
1402 'Available categories are all, %s. You can prefix the category with a "-" to exempt it. '
1403 'See https://wiki.sponsor.ajay.app/index.php/Segment_Categories for description of the categories. '
165efb82 1404 'Eg: --sponsorblock-mark all,-preview' % ', '.join(SponsorBlockPP.CATEGORIES.keys())))
7a340e0d
NA
1405 sponsorblock.add_option(
1406 '--sponsorblock-remove', metavar='CATS',
1407 dest='sponsorblock_remove', default=set(), action='callback', type='str',
1408 callback=_set_from_options_callback, callback_kwargs={'allowed_values': SponsorBlockPP.CATEGORIES.keys()},
1409 help=(
1410 'SponsorBlock categories to be removed from the video file, separated by commas. '
1411 'If a category is present in both mark and remove, remove takes precedence. '
1412 'The syntax and available categories are the same as for --sponsorblock-mark'))
1413 sponsorblock.add_option(
1414 '--sponsorblock-chapter-title', metavar='TEMPLATE',
1415 default=DEFAULT_SPONSORBLOCK_CHAPTER_TITLE, dest='sponsorblock_chapter_title',
1416 help=(
1417 'The title template for SponsorBlock chapters created by --sponsorblock-mark. '
1418 'The same syntax as the output template is used, but the only available fields are '
1419 'start_time, end_time, category, categories, name, category_names. Defaults to "%default"'))
1420 sponsorblock.add_option(
1421 '--no-sponsorblock', default=False,
1422 action='store_true', dest='no_sponsorblock',
1423 help='Disable both --sponsorblock-mark and --sponsorblock-remove')
1424 sponsorblock.add_option(
1425 '--sponsorblock-api', metavar='URL',
1426 default='https://sponsor.ajay.app', dest='sponsorblock_api',
1427 help='SponsorBlock API location, defaults to %default')
1428
1429 sponsorblock.add_option(
a9e7f546 1430 '--sponskrub',
165efb82 1431 action='store_true', dest='sponskrub', default=False,
7a340e0d
NA
1432 help=optparse.SUPPRESS_HELP)
1433 sponsorblock.add_option(
a9e7f546 1434 '--no-sponskrub',
1435 action='store_false', dest='sponskrub',
7a340e0d
NA
1436 help=optparse.SUPPRESS_HELP)
1437 sponsorblock.add_option(
a9e7f546 1438 '--sponskrub-cut', default=False,
1439 action='store_true', dest='sponskrub_cut',
7a340e0d
NA
1440 help=optparse.SUPPRESS_HELP)
1441 sponsorblock.add_option(
6623ac34 1442 '--no-sponskrub-cut',
1443 action='store_false', dest='sponskrub_cut',
7a340e0d
NA
1444 help=optparse.SUPPRESS_HELP)
1445 sponsorblock.add_option(
a9e7f546 1446 '--sponskrub-force', default=False,
1447 action='store_true', dest='sponskrub_force',
7a340e0d
NA
1448 help=optparse.SUPPRESS_HELP)
1449 sponsorblock.add_option(
6623ac34 1450 '--no-sponskrub-force',
1451 action='store_true', dest='sponskrub_force',
7a340e0d
NA
1452 help=optparse.SUPPRESS_HELP)
1453 sponsorblock.add_option(
a9e7f546 1454 '--sponskrub-location', metavar='PATH',
1455 dest='sponskrub_path', default='',
7a340e0d
NA
1456 help=optparse.SUPPRESS_HELP)
1457 sponsorblock.add_option(
c76eb41b 1458 '--sponskrub-args', dest='sponskrub_args', metavar='ARGS',
1b77b347 1459 help=optparse.SUPPRESS_HELP)
a9e7f546 1460
78895bd3 1461 extractor = optparse.OptionGroup(parser, 'Extractor Options')
62bff2c1 1462 extractor.add_option(
1463 '--extractor-retries',
d6e51845 1464 dest='extractor_retries', metavar='RETRIES', default=3,
62bff2c1 1465 help='Number of retries for known extractor errors (default is %default), or "infinite"')
78895bd3 1466 extractor.add_option(
6623ac34 1467 '--allow-dynamic-mpd', '--no-ignore-dynamic-mpd',
78895bd3 1468 action='store_true', dest='dynamic_mpd', default=True,
8a51f564 1469 help='Process dynamic DASH manifests (default) (Alias: --no-ignore-dynamic-mpd)')
78895bd3 1470 extractor.add_option(
6623ac34 1471 '--ignore-dynamic-mpd', '--no-allow-dynamic-mpd',
78895bd3 1472 action='store_false', dest='dynamic_mpd',
8a51f564 1473 help='Do not process dynamic DASH manifests (Alias: --no-allow-dynamic-mpd)')
310c2ed2 1474 extractor.add_option(
1475 '--hls-split-discontinuity',
1476 dest='hls_split_discontinuity', action='store_true', default=False,
1477 help='Split HLS playlists to different formats at discontinuities such as ad breaks'
1478 )
1479 extractor.add_option(
1480 '--no-hls-split-discontinuity',
1481 dest='hls_split_discontinuity', action='store_false',
1482 help='Do not split HLS playlists to different formats at discontinuities such as ad breaks (default)')
57015a4a 1483 _extractor_arg_parser = lambda key, vals='': (key.strip().lower().replace('-', '_'), [val.strip() for val in vals.split(',')])
5d3a0e79 1484 extractor.add_option(
1485 '--extractor-args',
1486 metavar='KEY:ARGS', dest='extractor_args', default={}, type='str',
1487 action='callback', callback=_dict_from_options_callback,
1488 callback_kwargs={
1489 'multiple_keys': False,
1490 'process': lambda val: dict(
4bb6b02f 1491 _extractor_arg_parser(*arg.split('=', 1)) for arg in val.split(';'))
dbf5416a 1492 }, help=(
5d3a0e79 1493 'Pass these arguments to the extractor. See "EXTRACTOR ARGUMENTS" for details. '
4bb6b02f 1494 'You can use this option multiple times to give arguments for different extractors'))
e409895f 1495 extractor.add_option(
1496 '--youtube-include-dash-manifest', '--no-youtube-skip-dash-manifest',
1497 action='store_true', dest='youtube_include_dash_manifest', default=True,
5d3a0e79 1498 help=optparse.SUPPRESS_HELP)
e409895f 1499 extractor.add_option(
1500 '--youtube-skip-dash-manifest', '--no-youtube-include-dash-manifest',
1501 action='store_false', dest='youtube_include_dash_manifest',
5d3a0e79 1502 help=optparse.SUPPRESS_HELP)
e409895f 1503 extractor.add_option(
1504 '--youtube-include-hls-manifest', '--no-youtube-skip-hls-manifest',
1505 action='store_true', dest='youtube_include_hls_manifest', default=True,
5d3a0e79 1506 help=optparse.SUPPRESS_HELP)
e409895f 1507 extractor.add_option(
1508 '--youtube-skip-hls-manifest', '--no-youtube-include-hls-manifest',
1509 action='store_false', dest='youtube_include_hls_manifest',
5d3a0e79 1510 help=optparse.SUPPRESS_HELP)
78895bd3 1511
34a741a8 1512 parser.add_option_group(general)
be4a824d 1513 parser.add_option_group(network)
0aa10994 1514 parser.add_option_group(geo)
34a741a8
PH
1515 parser.add_option_group(selection)
1516 parser.add_option_group(downloader)
1517 parser.add_option_group(filesystem)
cfb56d1a 1518 parser.add_option_group(thumbnail)
732044af 1519 parser.add_option_group(link)
34a741a8
PH
1520 parser.add_option_group(verbosity)
1521 parser.add_option_group(workarounds)
1522 parser.add_option_group(video_format)
1523 parser.add_option_group(subtitles)
1524 parser.add_option_group(authentication)
1525 parser.add_option_group(postproc)
7a340e0d 1526 parser.add_option_group(sponsorblock)
78895bd3 1527 parser.add_option_group(extractor)
34a741a8
PH
1528
1529 if overrideArguments is not None:
1530 opts, args = parser.parse_args(overrideArguments)
1531 if opts.verbose:
8450c15c 1532 write_string('[debug] Override config: ' + repr(overrideArguments) + '\n')
34a741a8 1533 else:
b04b94da
S
1534 def compat_conf(conf):
1535 if sys.version_info < (3,):
1536 return [a.decode(preferredencoding(), 'replace') for a in conf]
1537 return conf
1538
e2e43aea 1539 configs = {
0202b52a 1540 'command-line': compat_conf(sys.argv[1:]),
1541 'custom': [], 'home': [], 'portable': [], 'user': [], 'system': []}
1542 paths = {'command-line': False}
7303f84a 1543
1544 def read_options(name, path, user=False):
1545 ''' loads config files and returns ignoreconfig '''
1546 # Multiple package names can be given here
1547 # Eg: ('yt-dlp', 'youtube-dlc', 'youtube-dl') will look for
1548 # the configuration file of any of these three packages
1549 for package in ('yt-dlp',):
1550 if user:
1551 config, current_path = _readUserConf(package, default=None)
1552 else:
1553 current_path = os.path.join(path, '%s.conf' % package)
1554 config = _readOptions(current_path, default=None)
1555 if config is not None:
1556 configs[name], paths[name] = config, current_path
1557 return parser.parse_args(config)[0].ignoreconfig
1558 return False
f5e2efbb 1559
e2e43aea 1560 def get_configs():
7303f84a 1561 opts, _ = parser.parse_args(configs['command-line'])
1562 if opts.config_location is not None:
e2e43aea 1563 location = compat_expanduser(opts.config_location)
1564 if os.path.isdir(location):
7a5c1cfe 1565 location = os.path.join(location, 'yt-dlp.conf')
e2e43aea 1566 if not os.path.exists(location):
1567 parser.error('config-location %s does not exist.' % location)
7303f84a 1568 config = _readOptions(location, default=None)
1569 if config:
1570 configs['custom'], paths['config'] = config, location
1571
1572 if opts.ignoreconfig:
e2e43aea 1573 return
7303f84a 1574 if parser.parse_args(configs['custom'])[0].ignoreconfig:
e2e43aea 1575 return
7303f84a 1576 if read_options('portable', get_executable_path()):
e2e43aea 1577 return
7303f84a 1578 opts, _ = parser.parse_args(configs['portable'] + configs['custom'] + configs['command-line'])
1579 if read_options('home', expand_path(opts.paths.get('home', '')).strip()):
0202b52a 1580 return
7303f84a 1581 if read_options('system', '/etc'):
e2e43aea 1582 return
7303f84a 1583 if read_options('user', None, user=True):
0202b52a 1584 configs['system'], paths['system'] = [], None
e66dca5e 1585
e2e43aea 1586 get_configs()
0202b52a 1587 argv = configs['system'] + configs['user'] + configs['home'] + configs['portable'] + configs['custom'] + configs['command-line']
34a741a8
PH
1588 opts, args = parser.parse_args(argv)
1589 if opts.verbose:
0202b52a 1590 for label in ('System', 'User', 'Portable', 'Home', 'Custom', 'Command-line'):
1591 key = label.lower()
7303f84a 1592 if paths.get(key):
1593 write_string(f'[debug] {label} config file: {paths[key]}\n')
1594 if paths.get(key) is not None:
1595 write_string(f'[debug] {label} config: {_hide_login_info(configs[key])!r}\n')
34a741a8
PH
1596
1597 return parser, opts, args