]> jfr.im git - yt-dlp.git/blame - yt_dlp/__init__.py
[cleanup] Misc
[yt-dlp.git] / yt_dlp / __init__.py
CommitLineData
0647d925 1try:
2 import contextvars # noqa: F401
3except Exception:
4 raise Exception(
5 f'You are using an unsupported version of Python. Only Python versions 3.7 and above are supported by yt-dlp') # noqa: F541
a4bc4336 6
235b3ba4 7__license__ = 'Public Domain'
235b3ba4 8
f2df4071 9import collections
ac668111 10import getpass
e9f4ccd1 11import itertools
9e491463 12import optparse
235b3ba4 13import os
43820c03 14import re
235b3ba4 15import sys
235b3ba4 16
ac668111 17from .compat import compat_shlex_quote
f8271158 18from .cookies import SUPPORTED_BROWSERS, SUPPORTED_KEYRINGS
7b2c3f47 19from .downloader.external import get_external_downloader
560738f3 20from .extractor import list_extractor_classes
f8271158 21from .extractor.adobepass import MSO_INFO
d1b5f70b 22from .options import parseOpts
f8271158 23from .postprocessor import (
24 FFmpegExtractAudioPP,
4f04be6a 25 FFmpegMergerPP,
8dc59305 26 FFmpegPostProcessor,
f8271158 27 FFmpegSubtitlesConvertorPP,
28 FFmpegThumbnailsConvertorPP,
29 FFmpegVideoConvertorPP,
30 FFmpegVideoRemuxerPP,
31 MetadataFromFieldPP,
32 MetadataParserPP,
8c25f81b 33)
8372be74 34from .update import Updater
8c25f81b 35from .utils import (
f8271158 36 NO_DEFAULT,
62f6f1cb 37 POSTPROCESS_WHEN,
a4fd0415 38 DateRange,
f304da8a 39 DownloadCancelled,
a4fd0415 40 DownloadError,
d0d74b71 41 FormatSorter,
f8271158 42 GeoUtils,
7e88d7d7 43 PlaylistEntries,
f8271158 44 SameFileError,
45 decodeOption,
5ec1b6b7 46 download_range_func,
590bc6f6 47 expand_path,
31c49255 48 float_or_none,
7b2c3f47 49 format_field,
31c49255 50 int_or_none,
347de493 51 match_filter_func,
64c464a1 52 parse_bytes,
2d9ec704 53 parse_duration,
a4fd0415 54 preferredencoding,
62e609ab 55 read_batch_urls,
6b9e832d 56 read_stdin,
df692c5a 57 render_table,
e3946f98 58 setproctitle,
a4fd0415 59 std_headers,
8b7539d2 60 traverse_obj,
9e491463 61 variadic,
a4fd0415 62 write_string,
a4fd0415 63)
8222d8de 64from .YoutubeDL import YoutubeDL
a4fd0415 65
da4db748 66_IN_CLI = False
67
235b3ba4 68
9e491463 69def _exit(status=0, *args):
70 for msg in args:
71 sys.stderr.write(msg)
72 raise SystemExit(status)
73
74
d1b5f70b 75def get_urls(urls, batchfile, verbose):
59ae15a5 76 # Batch file verification
62e609ab 77 batch_urls = []
d1b5f70b 78 if batchfile is not None:
59ae15a5 79 try:
6b9e832d 80 batch_urls = read_batch_urls(
81 read_stdin('URLs') if batchfile == '-'
82 else open(expand_path(batchfile), encoding='utf-8', errors='ignore'))
d1b5f70b 83 if verbose:
a4bc4336 84 write_string('[debug] Batch file urls: ' + repr(batch_urls) + '\n')
86e5f3ed 85 except OSError:
9e491463 86 _exit(f'ERROR: batch file {batchfile} could not be read')
c774b3c6 87 _enc = preferredencoding()
d1b5f70b 88 return [
89 url.strip().decode(_enc, 'ignore') if isinstance(url, bytes) else url.strip()
90 for url in batch_urls + urls]
59ae15a5 91
d1b5f70b 92
93def print_extractor_information(opts, urls):
8dcce6a8 94 out = ''
59ae15a5 95 if opts.list_extractors:
71df9b7f 96 # Importing GenericIE is currently slow since it imports YoutubeIE
97 from .extractor.generic import GenericIE
98
82d02080 99 urls = dict.fromkeys(urls, False)
100 for ie in list_extractor_classes(opts.age_limit):
8dcce6a8 101 out += ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie.working() else '') + '\n'
82d02080 102 if ie == GenericIE:
103 matched_urls = [url for url, matched in urls.items() if not matched]
104 else:
105 matched_urls = tuple(filter(ie.suitable, urls.keys()))
106 urls.update(dict.fromkeys(matched_urls, True))
107 out += ''.join(f' {url}\n' for url in matched_urls)
d1b5f70b 108 elif opts.list_extractor_descriptions:
8dcce6a8 109 _SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
110 out = '\n'.join(
111 ie.description(markdown=False, search_examples=_SEARCHES)
82d02080 112 for ie in list_extractor_classes(opts.age_limit) if ie.working() and ie.IE_DESC is not False)
d1b5f70b 113 elif opts.ap_list_mso:
8dcce6a8 114 out = 'Supported TV Providers:\n%s\n' % render_table(
115 ['mso', 'mso name'],
116 [[mso_id, mso_info['name']] for mso_id, mso_info in MSO_INFO.items()])
bd558525 117 else:
d1b5f70b 118 return False
8dcce6a8 119 write_string(out, out=sys.stdout)
d1b5f70b 120 return True
53ed7066 121
19b824f6 122
d1b5f70b 123def set_compat_opts(opts):
53ed7066 124 def _unused_compat_opt(name):
d1b5f70b 125 if name not in opts.compat_opts:
53ed7066 126 return False
d1b5f70b 127 opts.compat_opts.discard(name)
128 opts.compat_opts.update(['*%s' % name])
53ed7066 129 return True
130
e4f02757 131 def set_default_compat(compat_name, opt_name, default=True, remove_compat=True):
53ed7066 132 attr = getattr(opts, opt_name)
d1b5f70b 133 if compat_name in opts.compat_opts:
53ed7066 134 if attr is None:
135 setattr(opts, opt_name, not default)
136 return True
137 else:
138 if remove_compat:
139 _unused_compat_opt(compat_name)
140 return False
141 elif attr is None:
142 setattr(opts, opt_name, default)
143 return None
144
b1940459 145 set_default_compat('abort-on-error', 'ignoreerrors', 'only_download')
53ed7066 146 set_default_compat('no-playlist-metafiles', 'allow_playlist_files')
e4f02757 147 set_default_compat('no-clean-infojson', 'clean_infojson')
d1b5f70b 148 if 'no-attach-info-json' in opts.compat_opts:
dac5df5a 149 if opts.embed_infojson:
150 _unused_compat_opt('no-attach-info-json')
151 else:
152 opts.embed_infojson = False
d1b5f70b 153 if 'format-sort' in opts.compat_opts:
d0d74b71 154 opts.format_sort.extend(FormatSorter.ytdl_default)
53ed7066 155 _video_multistreams_set = set_default_compat('multistreams', 'allow_multiple_video_streams', False, remove_compat=False)
156 _audio_multistreams_set = set_default_compat('multistreams', 'allow_multiple_audio_streams', False, remove_compat=False)
157 if _video_multistreams_set is False and _audio_multistreams_set is False:
158 _unused_compat_opt('multistreams')
d1b5f70b 159 if 'filename' in opts.compat_opts:
160 if opts.outtmpl.get('default') is None:
161 opts.outtmpl.update({'default': '%(title)s-%(id)s.%(ext)s'})
53ed7066 162 else:
163 _unused_compat_opt('filename')
164
d1b5f70b 165
166def validate_options(opts):
167 def validate(cndn, name, value=None, msg=None):
168 if cndn:
169 return True
170 raise ValueError((msg or 'invalid {name} "{value}" given').format(name=name, value=value))
171
172 def validate_in(name, value, items, msg=None):
173 return validate(value is None or value in items, name, value, msg)
174
175 def validate_regex(name, value, regex):
176 return validate(value is None or re.match(regex, value), name, value)
177
178 def validate_positive(name, value, strict=False):
179 return validate(value is None or value > 0 or (not strict and value == 0),
180 name, value, '{name} "{value}" must be positive' + ('' if strict else ' or 0'))
181
182 def validate_minmax(min_val, max_val, min_name, max_name=None):
183 if max_val is None or min_val is None or max_val >= min_val:
184 return
185 if not max_name:
186 min_name, max_name = f'min {min_name}', f'max {min_name}'
187 raise ValueError(f'{max_name} "{max_val}" must be must be greater than or equal to {min_name} "{min_val}"')
188
189 # Usernames and passwords
190 validate(not opts.usenetrc or (opts.username is None and opts.password is None),
191 '.netrc', msg='using {name} conflicts with giving username/password')
192 validate(opts.password is None or opts.username is not None, 'account username', msg='{name} missing')
193 validate(opts.ap_password is None or opts.ap_username is not None,
194 'TV Provider account username', msg='{name} missing')
195 validate_in('TV Provider', opts.ap_mso, MSO_INFO,
196 'Unsupported {name} "{value}", use --ap-list-mso to get a list of supported TV Providers')
197
198 # Numbers
199 validate_positive('autonumber start', opts.autonumber_start)
200 validate_positive('autonumber size', opts.autonumber_size, True)
201 validate_positive('concurrent fragments', opts.concurrent_fragment_downloads, True)
202 validate_positive('playlist start', opts.playliststart, True)
203 if opts.playlistend != -1:
204 validate_minmax(opts.playliststart, opts.playlistend, 'playlist start', 'playlist end')
205
206 # Time ranges
207 validate_positive('subtitles sleep interval', opts.sleep_interval_subtitles)
208 validate_positive('requests sleep interval', opts.sleep_interval_requests)
209 validate_positive('sleep interval', opts.sleep_interval)
210 validate_positive('max sleep interval', opts.max_sleep_interval)
07ff290d 211 if opts.sleep_interval is None:
d1b5f70b 212 validate(
07ff290d 213 opts.max_sleep_interval is None, 'min sleep interval',
d1b5f70b 214 msg='{name} must be specified; use --min-sleep-interval')
07ff290d 215 elif opts.max_sleep_interval is None:
216 opts.max_sleep_interval = opts.sleep_interval
217 else:
d1b5f70b 218 validate_minmax(opts.sleep_interval, opts.max_sleep_interval, 'sleep interval')
219
220 if opts.wait_for_video is not None:
221 min_wait, max_wait, *_ = map(parse_duration, opts.wait_for_video.split('-', 1) + [None])
222 validate(min_wait is not None and not (max_wait is None and '-' in opts.wait_for_video),
223 'time range to wait for video', opts.wait_for_video)
224 validate_minmax(min_wait, max_wait, 'time range to wait for video')
225 opts.wait_for_video = (min_wait, max_wait)
226
227 # Format sort
228 for f in opts.format_sort:
d0d74b71 229 validate_regex('format sorting', f, FormatSorter.regex)
d1b5f70b 230
231 # Postprocessor formats
fc61aff4
LL
232 validate_regex('merge output format', opts.merge_output_format,
233 r'({0})(/({0}))*'.format('|'.join(map(re.escape, FFmpegMergerPP.SUPPORTED_EXTS))))
e0ab9854 234 validate_regex('audio format', opts.audioformat, FFmpegExtractAudioPP.FORMAT_RE)
d1b5f70b 235 validate_in('subtitle format', opts.convertsubtitles, FFmpegSubtitlesConvertorPP.SUPPORTED_EXTS)
35faefee 236 validate_regex('thumbnail format', opts.convertthumbnails, FFmpegThumbnailsConvertorPP.FORMAT_RE)
237 validate_regex('recode video format', opts.recodevideo, FFmpegVideoConvertorPP.FORMAT_RE)
238 validate_regex('remux video format', opts.remuxvideo, FFmpegVideoRemuxerPP.FORMAT_RE)
d1b5f70b 239 if opts.audioquality:
240 opts.audioquality = opts.audioquality.strip('k').strip('K')
241 # int_or_none prevents inf, nan
242 validate_positive('audio quality', int_or_none(float_or_none(opts.audioquality), default=0))
243
244 # Retries
245 def parse_retries(name, value):
246 if value is None:
247 return None
248 elif value in ('inf', 'infinite'):
249 return float('inf')
250 try:
251 return int(value)
252 except (TypeError, ValueError):
253 validate(False, f'{name} retry count', value)
254
255 opts.retries = parse_retries('download', opts.retries)
256 opts.fragment_retries = parse_retries('fragment', opts.fragment_retries)
257 opts.extractor_retries = parse_retries('extractor', opts.extractor_retries)
258 opts.file_access_retries = parse_retries('file access', opts.file_access_retries)
259
23326151 260 # Retry sleep function
261 def parse_sleep_func(expr):
262 NUMBER_RE = r'\d+(?:\.\d+)?'
263 op, start, limit, step, *_ = tuple(re.fullmatch(
c4a62b99 264 rf'(?:(linear|exp)=)?({NUMBER_RE})(?::({NUMBER_RE})?)?(?::({NUMBER_RE}))?',
23326151 265 expr.strip()).groups()) + (None, None)
266
267 if op == 'exp':
268 return lambda n: min(float(start) * (float(step or 2) ** n), float(limit or 'inf'))
269 else:
270 default_step = start if op or limit else 0
271 return lambda n: min(float(start) + float(step or default_step) * n, float(limit or 'inf'))
272
273 for key, expr in opts.retry_sleep.items():
274 if not expr:
275 del opts.retry_sleep[key]
276 continue
277 try:
278 opts.retry_sleep[key] = parse_sleep_func(expr)
c4a62b99 279 except AttributeError:
280 raise ValueError(f'invalid {key} retry sleep expression {expr!r}')
23326151 281
d1b5f70b 282 # Bytes
64c464a1 283 def validate_bytes(name, value):
d1b5f70b 284 if value is None:
285 return None
64c464a1 286 numeric_limit = parse_bytes(value)
d1b5f70b 287 validate(numeric_limit is not None, 'rate limit', value)
288 return numeric_limit
289
64c464a1 290 opts.ratelimit = validate_bytes('rate limit', opts.ratelimit)
291 opts.throttledratelimit = validate_bytes('throttled rate limit', opts.throttledratelimit)
292 opts.min_filesize = validate_bytes('min filesize', opts.min_filesize)
293 opts.max_filesize = validate_bytes('max filesize', opts.max_filesize)
294 opts.buffersize = validate_bytes('buffer size', opts.buffersize)
295 opts.http_chunk_size = validate_bytes('http chunk size', opts.http_chunk_size)
d1b5f70b 296
297 # Output templates
76a264ac 298 def validate_outtmpl(tmpl, msg):
299 err = YoutubeDL.validate_outtmpl(tmpl)
300 if err:
d1b5f70b 301 raise ValueError(f'invalid {msg} "{tmpl}": {err}')
76a264ac 302
303 for k, tmpl in opts.outtmpl.items():
819e0531 304 validate_outtmpl(tmpl, f'{k} output template')
ca30f449 305 for type_, tmpl_list in opts.forceprint.items():
306 for tmpl in tmpl_list:
307 validate_outtmpl(tmpl, f'{type_} print template')
bb66c247 308 for type_, tmpl_list in opts.print_to_file.items():
309 for tmpl, file in tmpl_list:
d1b5f70b 310 validate_outtmpl(tmpl, f'{type_} print to file template')
311 validate_outtmpl(file, f'{type_} print to file filename')
7a340e0d 312 validate_outtmpl(opts.sponsorblock_chapter_title, 'SponsorBlock chapter title')
819e0531 313 for k, tmpl in opts.progress_template.items():
314 k = f'{k[:-6]} console title' if '-title' in k else f'{k} progress'
315 validate_outtmpl(tmpl, f'{k} template')
76a264ac 316
d1b5f70b 317 outtmpl_default = opts.outtmpl.get('default')
318 if outtmpl_default == '':
319 opts.skip_download = None
320 del opts.outtmpl['default']
321 if outtmpl_default and not os.path.splitext(outtmpl_default)[1] and opts.extractaudio:
322 raise ValueError(
323 'Cannot download a video and extract audio into the same file! '
324 f'Use "{outtmpl_default}.%(ext)s" instead of "{outtmpl_default}" as the output template')
325
5ec1b6b7 326 def parse_chapters(name, value):
327 chapters, ranges = [], []
fc2ba496 328 parse_timestamp = lambda x: float('inf') if x in ('inf', 'infinite') else parse_duration(x)
5ec1b6b7 329 for regex in value or []:
330 if regex.startswith('*'):
fc2ba496
L
331 for range_ in map(str.strip, regex[1:].split(',')):
332 mobj = range_ != '-' and re.fullmatch(r'([^-]+)?\s*-\s*([^-]+)?', range_)
333 dur = mobj and (parse_timestamp(mobj.group(1) or '0'), parse_timestamp(mobj.group(2) or 'inf'))
334 if None in (dur or [None]):
08e29b9f 335 raise ValueError(f'invalid {name} time range "{regex}". Must be of the form "*start-end"')
fc2ba496 336 ranges.append(dur)
d1b5f70b 337 continue
5ec1b6b7 338 try:
339 chapters.append(re.compile(regex))
340 except re.error as err:
341 raise ValueError(f'invalid {name} regex "{regex}" - {err}')
342 return chapters, ranges
343
344 opts.remove_chapters, opts.remove_ranges = parse_chapters('--remove-chapters', opts.remove_chapters)
345 opts.download_ranges = download_range_func(*parse_chapters('--download-sections', opts.download_ranges))
0202b52a 346
d1b5f70b 347 # Cookies from browser
348 if opts.cookiesfrombrowser:
9bd13fe5 349 container = None
825d3ce3 350 mobj = re.fullmatch(r'''(?x)
351 (?P<name>[^+:]+)
352 (?:\s*\+\s*(?P<keyring>[^:]+))?
935bac1e 353 (?:\s*:\s*(?!:)(?P<profile>.+?))?
825d3ce3 354 (?:\s*::\s*(?P<container>.+))?
355 ''', opts.cookiesfrombrowser)
d1b5f70b 356 if mobj is None:
357 raise ValueError(f'invalid cookies from browser arguments: {opts.cookiesfrombrowser}')
825d3ce3 358 browser_name, keyring, profile, container = mobj.group('name', 'keyring', 'profile', 'container')
d1b5f70b 359 browser_name = browser_name.lower()
360 if browser_name not in SUPPORTED_BROWSERS:
361 raise ValueError(f'unsupported browser specified for cookies: "{browser_name}". '
362 f'Supported browsers are: {", ".join(sorted(SUPPORTED_BROWSERS))}')
363 if keyring is not None:
364 keyring = keyring.upper()
365 if keyring not in SUPPORTED_KEYRINGS:
366 raise ValueError(f'unsupported keyring specified for cookies: "{keyring}". '
367 f'Supported keyrings are: {", ".join(sorted(SUPPORTED_KEYRINGS))}')
d2c8aadf 368 opts.cookiesfrombrowser = (browser_name, profile, keyring, container)
29c7a63d 369
d1b5f70b 370 # MetadataParser
e9f4ccd1 371 def metadataparser_actions(f):
372 if isinstance(f, str):
373 cmd = '--parse-metadata %s' % compat_shlex_quote(f)
374 try:
375 actions = [MetadataFromFieldPP.to_action(f)]
376 except Exception as err:
d1b5f70b 377 raise ValueError(f'{cmd} is invalid; {err}')
e9f4ccd1 378 else:
379 cmd = '--replace-in-metadata %s' % ' '.join(map(compat_shlex_quote, f))
380 actions = ((MetadataParserPP.Actions.REPLACE, x, *f[1:]) for x in f[0].split(','))
381
382 for action in actions:
383 try:
384 MetadataParserPP.validate_action(*action)
385 except Exception as err:
d1b5f70b 386 raise ValueError(f'{cmd} is invalid; {err}')
e9f4ccd1 387 yield action
388
5bfa4862 389 if opts.metafromtitle is not None:
fe74d5b5 390 opts.parse_metadata.setdefault('pre_process', []).append('title:%s' % opts.metafromtitle)
391 opts.parse_metadata = {
392 k: list(itertools.chain(*map(metadataparser_actions, v)))
393 for k, v in opts.parse_metadata.items()
394 }
5bfa4862 395
d1b5f70b 396 # Other options
7e88d7d7 397 if opts.playlist_items is not None:
398 try:
399 tuple(PlaylistEntries.parse_playlist_items(opts.playlist_items))
400 except Exception as err:
401 raise ValueError(f'Invalid playlist-items {opts.playlist_items!r}: {err}')
402
d1b5f70b 403 geo_bypass_code = opts.geo_bypass_ip_block or opts.geo_bypass_country
404 if geo_bypass_code is not None:
405 try:
406 GeoUtils.random_ipv4(geo_bypass_code)
407 except Exception:
408 raise ValueError('unsupported geo-bypass country or ip-block')
ca30f449 409
d1b5f70b 410 opts.match_filter = match_filter_func(opts.match_filter)
525ef922 411
d1b5f70b 412 if opts.download_archive is not None:
413 opts.download_archive = expand_path(opts.download_archive)
414
2b24afa6 415 if opts.ffmpeg_location is not None:
416 opts.ffmpeg_location = expand_path(opts.ffmpeg_location)
417
d1b5f70b 418 if opts.user_agent is not None:
419 opts.headers.setdefault('User-Agent', opts.user_agent)
420 if opts.referer is not None:
421 opts.headers.setdefault('Referer', opts.referer)
f0884c8b 422
7a340e0d 423 if opts.no_sponsorblock:
d1b5f70b 424 opts.sponsorblock_mark = opts.sponsorblock_remove = set()
425
6d1b3489 426 default_downloader = None
7b2c3f47 427 for proto, path in opts.external_downloader.items():
28163422 428 if path == 'native':
429 continue
6d1b3489 430 ed = get_external_downloader(path)
431 if ed is None:
7b2c3f47 432 raise ValueError(
433 f'No such {format_field(proto, None, "%s ", ignore="default")}external downloader "{path}"')
6d1b3489 434 elif ed and proto == 'default':
435 default_downloader = ed.get_basename()
436
d1b5f70b 437 warnings, deprecation_warnings = [], []
7a340e0d 438
d1b5f70b 439 # Common mistake: -f best
440 if opts.format == 'best':
441 warnings.append('.\n '.join((
442 '"-f best" selects the best pre-merged format which is often not the best option',
443 'To let yt-dlp download and merge the best available formats, simply do not pass any format selection',
444 'If you know what you are doing and want only the best pre-merged format, use "-f b" instead to suppress this warning')))
445
a44ca5a4 446 # --(postprocessor/downloader)-args without name
6d1b3489 447 def report_args_compat(name, value, key1, key2=None, where=None):
d1b5f70b 448 if key1 in value and key2 not in value:
6d1b3489 449 warnings.append(f'{name.title()} arguments given without specifying name. '
450 f'The arguments will be given to {where or f"all {name}s"}')
d1b5f70b 451 return True
452 return False
453
6d1b3489 454 if report_args_compat('external downloader', opts.external_downloader_args,
455 'default', where=default_downloader) and default_downloader:
456 # Compat with youtube-dl's behavior. See https://github.com/ytdl-org/youtube-dl/commit/49c5293014bc11ec8c009856cd63cffa6296c1e1
457 opts.external_downloader_args.setdefault(default_downloader, opts.external_downloader_args.pop('default'))
458
d1b5f70b 459 if report_args_compat('post-processor', opts.postprocessor_args, 'default-compat', 'default'):
460 opts.postprocessor_args['default'] = opts.postprocessor_args.pop('default-compat')
461 opts.postprocessor_args.setdefault('sponskrub', [])
462
463 def report_conflict(arg1, opt1, arg2='--allow-unplayable-formats', opt2='allow_unplayable_formats',
464 val1=NO_DEFAULT, val2=NO_DEFAULT, default=False):
465 if val2 is NO_DEFAULT:
466 val2 = getattr(opts, opt2)
467 if not val2:
468 return
469
470 if val1 is NO_DEFAULT:
471 val1 = getattr(opts, opt1)
472 if val1:
473 warnings.append(f'{arg1} is ignored since {arg2} was given')
474 setattr(opts, opt1, default)
475
476 # Conflicting options
7e9a6125 477 report_conflict('--playlist-reverse', 'playlist_reverse', '--playlist-random', 'playlist_random')
478 report_conflict('--playlist-reverse', 'playlist_reverse', '--lazy-playlist', 'lazy_playlist')
479 report_conflict('--playlist-random', 'playlist_random', '--lazy-playlist', 'lazy_playlist')
da1d734f 480 report_conflict('--dateafter', 'dateafter', '--date', 'date', default=None)
481 report_conflict('--datebefore', 'datebefore', '--date', 'date', default=None)
3d3bb168 482 report_conflict('--exec-before-download', 'exec_before_dl_cmd',
483 '"--exec before_dl:"', 'exec_cmd', val2=opts.exec_cmd.get('before_dl'))
d1b5f70b 484 report_conflict('--id', 'useid', '--output', 'outtmpl', val2=opts.outtmpl.get('default'))
485 report_conflict('--remux-video', 'remuxvideo', '--recode-video', 'recodevideo')
486 report_conflict('--sponskrub', 'sponskrub', '--remove-chapters', 'remove_chapters')
487 report_conflict('--sponskrub', 'sponskrub', '--sponsorblock-mark', 'sponsorblock_mark')
488 report_conflict('--sponskrub', 'sponskrub', '--sponsorblock-remove', 'sponsorblock_remove')
19a03940 489 report_conflict('--sponskrub-cut', 'sponskrub_cut', '--split-chapter', 'split_chapters',
490 val1=opts.sponskrub and opts.sponskrub_cut)
d1b5f70b 491
492 # Conflicts with --allow-unplayable-formats
2fa669f7 493 report_conflict('--embed-metadata', 'addmetadata')
d1b5f70b 494 report_conflict('--embed-chapters', 'addchapters')
495 report_conflict('--embed-info-json', 'embed_infojson')
496 report_conflict('--embed-subs', 'embedsubtitles')
497 report_conflict('--embed-thumbnail', 'embedthumbnail')
498 report_conflict('--extract-audio', 'extractaudio')
3d3bb168 499 report_conflict('--fixup', 'fixup', val1=opts.fixup not in (None, 'never', 'ignore'), default='never')
d1b5f70b 500 report_conflict('--recode-video', 'recodevideo')
501 report_conflict('--remove-chapters', 'remove_chapters', default=[])
502 report_conflict('--remux-video', 'remuxvideo')
503 report_conflict('--sponskrub', 'sponskrub')
504 report_conflict('--sponsorblock-remove', 'sponsorblock_remove', default=set())
505 report_conflict('--xattrs', 'xattrs')
506
507 # Fully deprecated options
508 def report_deprecation(val, old, new=None):
509 if not val:
510 return
511 deprecation_warnings.append(
512 f'{old} is deprecated and may be removed in a future version. Use {new} instead' if new
513 else f'{old} is deprecated and may not work as expected')
514
515 report_deprecation(opts.sponskrub, '--sponskrub', '--sponsorblock-mark or --sponsorblock-remove')
516 report_deprecation(not opts.prefer_ffmpeg, '--prefer-avconv', 'ffmpeg')
517 # report_deprecation(opts.include_ads, '--include-ads') # We may re-implement this in future
518 # report_deprecation(opts.call_home, '--call-home') # We may re-implement this in future
519 # report_deprecation(opts.writeannotations, '--write-annotations') # It's just that no website has it
520
521 # Dependent options
da1d734f 522 opts.date = DateRange.day(opts.date) if opts.date else DateRange(opts.dateafter, opts.datebefore)
523
d1b5f70b 524 if opts.exec_before_dl_cmd:
525 opts.exec_cmd['before_dl'] = opts.exec_before_dl_cmd
526
527 if opts.useid: # --id is not deprecated in youtube-dl
528 opts.outtmpl['default'] = '%(id)s.%(ext)s'
529
530 if opts.overwrites: # --force-overwrites implies --no-continue
531 opts.continue_dl = False
63ad4d43 532
9222c381 533 if (opts.addmetadata or opts.sponsorblock_mark) and opts.addchapters is None:
d1b5f70b 534 # Add chapters when adding metadata or marking sponsors
9222c381 535 opts.addchapters = True
536
d1b5f70b 537 if opts.extractaudio and not opts.keepvideo and opts.format is None:
538 # Do not unnecessarily download audio
539 opts.format = 'bestaudio/best'
540
f2df4071 541 if opts.getcomments and opts.writeinfojson is None and not opts.embed_infojson:
d1b5f70b 542 # If JSON is not printed anywhere, but comments are requested, save it to file
543 if not opts.dumpjson or opts.print_json or opts.dump_single_json:
544 opts.writeinfojson = True
545
546 if opts.allsubtitles and not (opts.embedsubtitles or opts.writeautomaticsub):
547 # --all-sub automatically sets --write-sub if --write-auto-sub is not given
548 opts.writesubtitles = True
549
550 if opts.addmetadata and opts.embed_infojson is None:
551 # If embedding metadata and infojson is present, embed it
552 opts.embed_infojson = 'if_exists'
553
554 # Ask for passwords
555 if opts.username is not None and opts.password is None:
ac668111 556 opts.password = getpass.getpass('Type account password and press [Return]: ')
d1b5f70b 557 if opts.ap_username is not None and opts.ap_password is None:
ac668111 558 opts.ap_password = getpass.getpass('Type TV provider account password and press [Return]: ')
d1b5f70b 559
560 return warnings, deprecation_warnings
561
562
563def get_postprocessors(opts):
564 yield from opts.add_postprocessors
565
fe74d5b5 566 for when, actions in opts.parse_metadata.items():
d1b5f70b 567 yield {
568 'key': 'MetadataParser',
fe74d5b5 569 'actions': actions,
570 'when': when
d1b5f70b 571 }
572 sponsorblock_query = opts.sponsorblock_mark | opts.sponsorblock_remove
7a340e0d 573 if sponsorblock_query:
d1b5f70b 574 yield {
7a340e0d
NA
575 'key': 'SponsorBlock',
576 'categories': sponsorblock_query,
577 'api': opts.sponsorblock_api,
09b49e1f 578 'when': 'after_filter'
d1b5f70b 579 }
56d868db 580 if opts.convertsubtitles:
d1b5f70b 581 yield {
56d868db 582 'key': 'FFmpegSubtitlesConvertor',
583 'format': opts.convertsubtitles,
56d868db 584 'when': 'before_dl'
d1b5f70b 585 }
8fa43c73 586 if opts.convertthumbnails:
d1b5f70b 587 yield {
8fa43c73 588 'key': 'FFmpegThumbnailsConvertor',
589 'format': opts.convertthumbnails,
8fa43c73 590 'when': 'before_dl'
d1b5f70b 591 }
4f026faf 592 if opts.extractaudio:
d1b5f70b 593 yield {
4f026faf
PH
594 'key': 'FFmpegExtractAudio',
595 'preferredcodec': opts.audioformat,
596 'preferredquality': opts.audioquality,
597 'nopostoverwrites': opts.nopostoverwrites,
d1b5f70b 598 }
efe87a10 599 if opts.remuxvideo:
d1b5f70b 600 yield {
efe87a10
FS
601 'key': 'FFmpegVideoRemuxer',
602 'preferedformat': opts.remuxvideo,
d1b5f70b 603 }
4f026faf 604 if opts.recodevideo:
d1b5f70b 605 yield {
4f026faf
PH
606 'key': 'FFmpegVideoConvertor',
607 'preferedformat': opts.recodevideo,
d1b5f70b 608 }
7a340e0d 609 # If ModifyChapters is going to remove chapters, subtitles must already be in the container.
4f026faf 610 if opts.embedsubtitles:
d1b5f70b 611 keep_subs = 'no-keep-subs' not in opts.compat_opts
612 yield {
4f026faf 613 'key': 'FFmpegEmbedSubtitle',
56d868db 614 # already_have_subtitle = True prevents the file from being deleted after embedding
d1b5f70b 615 'already_have_subtitle': opts.writesubtitles and keep_subs
616 }
617 if not opts.writeautomaticsub and keep_subs:
cffab0ee 618 opts.writesubtitles = True
d1b5f70b 619
7a340e0d 620 # ModifyChapters must run before FFmpegMetadataPP
7a340e0d 621 if opts.remove_chapters or sponsorblock_query:
d1b5f70b 622 yield {
7a340e0d 623 'key': 'ModifyChapters',
d1b5f70b 624 'remove_chapters_patterns': opts.remove_chapters,
7a340e0d 625 'remove_sponsor_segments': opts.sponsorblock_remove,
d1b5f70b 626 'remove_ranges': opts.remove_ranges,
7a340e0d
NA
627 'sponsorblock_chapter_title': opts.sponsorblock_chapter_title,
628 'force_keyframes': opts.force_keyframes_at_cuts
d1b5f70b 629 }
7a340e0d
NA
630 # FFmpegMetadataPP should be run after FFmpegVideoConvertorPP and
631 # FFmpegExtractAudioPP as containers before conversion may not support
632 # metadata (3gp, webm, etc.)
633 # By default ffmpeg preserves metadata applicable for both
634 # source and target containers. From this point the container won't change,
635 # so metadata can be added here.
dac5df5a 636 if opts.addmetadata or opts.addchapters or opts.embed_infojson:
d1b5f70b 637 yield {
7a340e0d
NA
638 'key': 'FFmpegMetadata',
639 'add_chapters': opts.addchapters,
640 'add_metadata': opts.addmetadata,
dac5df5a 641 'add_infojson': opts.embed_infojson,
d1b5f70b 642 }
ee8dd27a 643 # Deprecated
f4e4be19 644 # This should be above EmbedThumbnail since sponskrub removes the thumbnail attachment
645 # but must be below EmbedSubtitle and FFmpegMetadata
646 # See https://github.com/yt-dlp/yt-dlp/issues/204 , https://github.com/faissaloo/SponSkrub/issues/29
a9e7f546 647 # If opts.sponskrub is None, sponskrub is used, but it silently fails if the executable can't be found
648 if opts.sponskrub is not False:
d1b5f70b 649 yield {
a9e7f546 650 'key': 'SponSkrub',
651 'path': opts.sponskrub_path,
652 'args': opts.sponskrub_args,
653 'cut': opts.sponskrub_cut,
654 'force': opts.sponskrub_force,
655 'ignoreerror': opts.sponskrub is None,
ee8dd27a 656 '_from_cli': True,
d1b5f70b 657 }
f4e4be19 658 if opts.embedthumbnail:
d1b5f70b 659 yield {
f4e4be19 660 'key': 'EmbedThumbnail',
56d868db 661 # already_have_thumbnail = True prevents the file from being deleted after embedding
acc0d6a4 662 'already_have_thumbnail': opts.writethumbnail
d1b5f70b 663 }
acc0d6a4 664 if not opts.writethumbnail:
f4e4be19 665 opts.writethumbnail = True
80c03fa9 666 opts.outtmpl['pl_thumbnail'] = ''
72755351 667 if opts.split_chapters:
d1b5f70b 668 yield {
7a340e0d
NA
669 'key': 'FFmpegSplitChapters',
670 'force_keyframes': opts.force_keyframes_at_cuts,
d1b5f70b 671 }
72755351 672 # XAttrMetadataPP should be run after post-processors that may change file contents
673 if opts.xattrs:
d1b5f70b 674 yield {'key': 'XAttrMetadata'}
3b603dbd 675 if opts.concat_playlist != 'never':
d1b5f70b 676 yield {
3b603dbd 677 'key': 'FFmpegConcat',
678 'only_multi_video': opts.concat_playlist != 'always',
679 'when': 'playlist',
d1b5f70b 680 }
1e43a6f7 681 # Exec must be the last PP of each category
1e43a6f7 682 for when, exec_cmd in opts.exec_cmd.items():
d1b5f70b 683 yield {
ad3dc496 684 'key': 'Exec',
1e43a6f7 685 'exec_cmd': exec_cmd,
1e43a6f7 686 'when': when,
d1b5f70b 687 }
1b77b347 688
0d1bb027 689
f2df4071 690ParsedOptions = collections.namedtuple('ParsedOptions', ('parser', 'options', 'urls', 'ydl_opts'))
691
692
d1b5f70b 693def parse_options(argv=None):
f2df4071 694 """@returns ParsedOptions(parser, opts, urls, ydl_opts)"""
d1b5f70b 695 parser, opts, urls = parseOpts(argv)
696 urls = get_urls(urls, opts.batchfile, opts.verbose)
b8f6bbe6 697
d1b5f70b 698 set_compat_opts(opts)
699 try:
700 warnings, deprecation_warnings = validate_options(opts)
701 except ValueError as err:
702 parser.error(f'{err}\n')
1b77b347 703
d1b5f70b 704 postprocessors = list(get_postprocessors(opts))
ee8dd27a 705
193fb150 706 print_only = bool(opts.forceprint) and all(k not in opts.forceprint for k in POSTPROCESS_WHEN[3:])
62f6f1cb 707 any_getting = any(getattr(opts, k) for k in (
708 'dumpjson', 'dump_single_json', 'getdescription', 'getduration', 'getfilename',
709 'getformat', 'getid', 'getthumbnail', 'gettitle', 'geturl'
710 ))
ee8dd27a 711
134c913c 712 playlist_pps = [pp for pp in postprocessors if pp.get('when') == 'playlist']
713 write_playlist_infojson = (opts.writeinfojson and not opts.clean_infojson
714 and opts.allow_playlist_files and opts.outtmpl.get('pl_infojson') != '')
715 if not any((
716 opts.extract_flat,
717 opts.dump_single_json,
718 opts.forceprint.get('playlist'),
719 opts.print_to_file.get('playlist'),
720 write_playlist_infojson,
721 )):
722 if not playlist_pps:
723 opts.extract_flat = 'discard'
724 elif playlist_pps == [{'key': 'FFmpegConcat', 'only_multi_video': True, 'when': 'playlist'}]:
725 opts.extract_flat = 'discard_in_playlist'
726
df692c5a 727 final_ext = (
81a23040 728 opts.recodevideo if opts.recodevideo in FFmpegVideoConvertorPP.SUPPORTED_EXTS
729 else opts.remuxvideo if opts.remuxvideo in FFmpegVideoRemuxerPP.SUPPORTED_EXTS
35faefee 730 else opts.audioformat if (opts.extractaudio and opts.audioformat in FFmpegExtractAudioPP.SUPPORTED_EXTS)
81a23040 731 else None)
f6d7624f 732
f2df4071 733 return ParsedOptions(parser, opts, urls, {
59ae15a5 734 'usenetrc': opts.usenetrc,
0001fcb5 735 'netrc_location': opts.netrc_location,
59ae15a5
PH
736 'username': opts.username,
737 'password': opts.password,
83317f69 738 'twofactor': opts.twofactor,
c6c19746 739 'videopassword': opts.videopassword,
797c636b 740 'ap_mso': opts.ap_mso,
1b6712ab
RA
741 'ap_username': opts.ap_username,
742 'ap_password': opts.ap_password,
bb58c9ed 743 'client_certificate': opts.client_certificate,
744 'client_certificate_key': opts.client_certificate_key,
745 'client_certificate_password': opts.client_certificate_password,
62f6f1cb 746 'quiet': opts.quiet or any_getting or opts.print_json or bool(opts.forceprint),
ad8915b7 747 'no_warnings': opts.no_warnings,
59ae15a5
PH
748 'forceurl': opts.geturl,
749 'forcetitle': opts.gettitle,
1a2adf3f 750 'forceid': opts.getid,
59ae15a5
PH
751 'forcethumbnail': opts.getthumbnail,
752 'forcedescription': opts.getdescription,
525ef922 753 'forceduration': opts.getduration,
59ae15a5
PH
754 'forcefilename': opts.getfilename,
755 'forceformat': opts.getformat,
d2a1fad9 756 'forceprint': opts.forceprint,
bb66c247 757 'print_to_file': opts.print_to_file,
c0bdf32a 758 'forcejson': opts.dumpjson or opts.print_json,
63e0be34 759 'dump_single_json': opts.dump_single_json,
2d30509f 760 'force_write_download_archive': opts.force_write_download_archive,
62f6f1cb 761 'simulate': (print_only or any_getting or None) if opts.simulate is None else opts.simulate,
1bdeb7be 762 'skip_download': opts.skip_download,
59ae15a5 763 'format': opts.format,
63ad4d43 764 'allow_unplayable_formats': opts.allow_unplayable_formats,
b7da73eb 765 'ignore_no_formats_error': opts.ignore_no_formats_error,
eb8a4433 766 'format_sort': opts.format_sort,
767 'format_sort_force': opts.format_sort_force,
909d24dd 768 'allow_multiple_video_streams': opts.allow_multiple_video_streams,
769 'allow_multiple_audio_streams': opts.allow_multiple_audio_streams,
e8e73840 770 'check_formats': opts.check_formats,
59ae15a5 771 'listformats': opts.listformats,
76d321f6 772 'listformats_table': opts.listformats_table,
486fb179 773 'outtmpl': opts.outtmpl,
a820dc72 774 'outtmpl_na_placeholder': opts.outtmpl_na_placeholder,
0202b52a 775 'paths': opts.paths,
213c31ae 776 'autonumber_size': opts.autonumber_size,
acbb2374 777 'autonumber_start': opts.autonumber_start,
59ae15a5 778 'restrictfilenames': opts.restrictfilenames,
c2934512 779 'windowsfilenames': opts.windowsfilenames,
59ae15a5 780 'ignoreerrors': opts.ignoreerrors,
d22dec74 781 'force_generic_extractor': opts.force_generic_extractor,
fe7866d0 782 'allowed_extractors': opts.allowed_extractors or ['default'],
59ae15a5 783 'ratelimit': opts.ratelimit,
51d9739f 784 'throttledratelimit': opts.throttledratelimit,
0c3d0f51 785 'overwrites': opts.overwrites,
52bb437e 786 'retries': opts.retries,
205a0654 787 'file_access_retries': opts.file_access_retries,
52bb437e 788 'fragment_retries': opts.fragment_retries,
62bff2c1 789 'extractor_retries': opts.extractor_retries,
23326151 790 'retry_sleep_functions': opts.retry_sleep,
9603b660 791 'skip_unavailable_fragments': opts.skip_unavailable_fragments,
0eee52f3 792 'keep_fragments': opts.keep_fragments,
4cf1e5d2 793 'concurrent_fragment_downloads': opts.concurrent_fragment_downloads,
59ae15a5
PH
794 'buffersize': opts.buffersize,
795 'noresizebuffer': opts.noresizebuffer,
ba515388 796 'http_chunk_size': opts.http_chunk_size,
59ae15a5 797 'continuedl': opts.continue_dl,
819e0531 798 'noprogress': opts.quiet if opts.noprogress is None else opts.noprogress,
5717d91a 799 'progress_with_newline': opts.progress_with_newline,
819e0531 800 'progress_template': opts.progress_template,
59ae15a5
PH
801 'playliststart': opts.playliststart,
802 'playlistend': opts.playlistend,
ff815fe6 803 'playlistreverse': opts.playlist_reverse,
75822ca7 804 'playlistrandom': opts.playlist_random,
7e9a6125 805 'lazy_playlist': opts.lazy_playlist,
47192f92 806 'noplaylist': opts.noplaylist,
d1b5f70b 807 'logtostderr': opts.outtmpl.get('default') == '-',
59ae15a5
PH
808 'consoletitle': opts.consoletitle,
809 'nopart': opts.nopart,
810 'updatetime': opts.updatetime,
811 'writedescription': opts.writedescription,
1fb07d10 812 'writeannotations': opts.writeannotations,
f0884c8b 813 'writeinfojson': opts.writeinfojson,
1ea24129 814 'allow_playlist_files': opts.allow_playlist_files,
75d43ca0 815 'clean_infojson': opts.clean_infojson,
06167fbb 816 'getcomments': opts.getcomments,
acc0d6a4 817 'writethumbnail': opts.writethumbnail is True,
818 'write_all_thumbnails': opts.writethumbnail == 'all',
732044af 819 'writelink': opts.writelink,
820 'writeurllink': opts.writeurllink,
821 'writewebloclink': opts.writewebloclink,
822 'writedesktoplink': opts.writedesktoplink,
59ae15a5 823 'writesubtitles': opts.writesubtitles,
b004821f 824 'writeautomaticsub': opts.writeautomaticsub,
ae608b80 825 'allsubtitles': opts.allsubtitles,
2a4093ea 826 'listsubtitles': opts.listsubtitles,
9e62bc44 827 'subtitlesformat': opts.subtitlesformat,
d6e203b3 828 'subtitleslangs': opts.subtitleslangs,
8271226a
PH
829 'matchtitle': decodeOption(opts.matchtitle),
830 'rejecttitle': decodeOption(opts.rejecttitle),
59ae15a5
PH
831 'max_downloads': opts.max_downloads,
832 'prefer_free_formats': opts.prefer_free_formats,
bdc3fd2f 833 'trim_file_name': opts.trim_file_name,
59ae15a5 834 'verbose': opts.verbose,
855703e5 835 'dump_intermediate_pages': opts.dump_intermediate_pages,
d41e6efc 836 'write_pages': opts.write_pages,
f95b9dee 837 'load_pages': opts.load_pages,
8d5d3a5d 838 'test': opts.test,
7851b379 839 'keepvideo': opts.keepvideo,
9e982f9e 840 'min_filesize': opts.min_filesize,
bd558525 841 'max_filesize': opts.max_filesize,
5fe18bdb
PH
842 'min_views': opts.min_views,
843 'max_views': opts.max_views,
d1b5f70b 844 'daterange': opts.date,
7f747732 845 'cachedir': opts.cachedir,
f8061589 846 'youtube_print_sig_code': opts.youtube_print_sig_code,
8dbe9899 847 'age_limit': opts.age_limit,
d1b5f70b 848 'download_archive': opts.download_archive,
ea6e0c2b 849 'break_on_existing': opts.break_on_existing,
8b0d7497 850 'break_on_reject': opts.break_on_reject,
b222c271 851 'break_per_url': opts.break_per_url,
26e2805c 852 'skip_playlist_after_errors': opts.skip_playlist_after_errors,
dca08720 853 'cookiefile': opts.cookiefile,
982ee69a 854 'cookiesfrombrowser': opts.cookiesfrombrowser,
f81c62a6 855 'legacyserverconnect': opts.legacy_server_connect,
dca08720 856 'nocheckcertificate': opts.no_check_certificate,
7e8c0af0 857 'prefer_insecure': opts.prefer_insecure,
8300774c 858 'enable_file_urls': opts.enable_file_urls,
8b7539d2 859 'http_headers': opts.headers,
c2e52508 860 'proxy': opts.proxy,
6ad14cab 861 'socket_timeout': opts.socket_timeout,
0783b09b 862 'bidi_workaround': opts.bidi_workaround,
a0ddb8a2 863 'debug_printtraffic': opts.debug_printtraffic,
76b1bd67 864 'prefer_ffmpeg': opts.prefer_ffmpeg,
7b0817e8 865 'include_ads': opts.include_ads,
04b4d394 866 'default_search': opts.default_search,
78895bd3 867 'dynamic_mpd': opts.dynamic_mpd,
5d3a0e79 868 'extractor_args': opts.extractor_args,
4919603f 869 'youtube_include_dash_manifest': opts.youtube_include_dash_manifest,
78895bd3 870 'youtube_include_hls_manifest': opts.youtube_include_hls_manifest,
62fec3b2 871 'encoding': opts.encoding,
057a5206 872 'extract_flat': opts.extract_flat,
adbc4ec4 873 'live_from_start': opts.live_from_start,
f2ebc5c7 874 'wait_for_video': opts.wait_for_video,
d77ab8e2 875 'mark_watched': opts.mark_watched,
34c781a2 876 'merge_output_format': opts.merge_output_format,
df692c5a 877 'final_ext': final_ext,
4f026faf 878 'postprocessors': postprocessors,
6271f1ca 879 'fixup': opts.fixup,
be4a824d 880 'source_address': opts.source_address,
58b1f00d 881 'call_home': opts.call_home,
1cf376f5 882 'sleep_interval_requests': opts.sleep_interval_requests,
5f0d813d 883 'sleep_interval': opts.sleep_interval,
065bc354 884 'max_sleep_interval': opts.max_sleep_interval,
0c9df79e 885 'sleep_interval_subtitles': opts.sleep_interval_subtitles,
222516d9 886 'external_downloader': opts.external_downloader,
5ec1b6b7 887 'download_ranges': opts.download_ranges,
888 'force_keyframes_at_cuts': opts.force_keyframes_at_cuts,
cfb56d1a 889 'list_thumbnails': opts.list_thumbnails,
c14e88f0 890 'playlist_items': opts.playlist_items,
881e6a1f 891 'xattr_set_filesize': opts.xattr_set_filesize,
d1b5f70b 892 'match_filter': opts.match_filter,
7e5db8c9 893 'no_color': opts.no_color,
73fac4e9 894 'ffmpeg_location': opts.ffmpeg_location,
85729c51 895 'hls_prefer_native': opts.hls_prefer_native,
7d106a65 896 'hls_use_mpegts': opts.hls_use_mpegts,
310c2ed2 897 'hls_split_discontinuity': opts.hls_split_discontinuity,
46ee996e 898 'external_downloader_args': opts.external_downloader_args,
45016689 899 'postprocessor_args': opts.postprocessor_args,
91410c9b 900 'cn_verification_proxy': opts.cn_verification_proxy,
38cce791 901 'geo_verification_proxy': opts.geo_verification_proxy,
0a840f58
S
902 'geo_bypass': opts.geo_bypass,
903 'geo_bypass_country': opts.geo_bypass_country,
5f95927a 904 'geo_bypass_ip_block': opts.geo_bypass_ip_block,
49a57e70 905 '_warnings': warnings,
ee8dd27a 906 '_deprecation_warnings': deprecation_warnings,
d1b5f70b 907 'compat_opts': opts.compat_opts,
f2df4071 908 })
59ae15a5 909
d1b5f70b 910
911def _real_main(argv=None):
d1b5f70b 912 setproctitle('yt-dlp')
913
914 parser, opts, all_urls, ydl_opts = parse_options(argv)
915
916 # Dump user agent
917 if opts.dump_user_agent:
918 ua = traverse_obj(opts.headers, 'User-Agent', casesense=False, default=std_headers['User-Agent'])
919 write_string(f'{ua}\n', out=sys.stdout)
9e491463 920 return
d1b5f70b 921
922 if print_extractor_information(opts, all_urls):
9e491463 923 return
d1b5f70b 924
6a7d3a0a 925 # We may need ffmpeg_location without having access to the YoutubeDL instance
926 # See https://github.com/yt-dlp/yt-dlp/issues/2191
927 if opts.ffmpeg_location:
928 FFmpegPostProcessor._ffmpeg_location.set(opts.ffmpeg_location)
929
bdde425c 930 with YoutubeDL(ydl_opts) as ydl:
8372be74 931 pre_process = opts.update_self or opts.rm_cachedir
f304da8a 932 actual_use = all_urls or opts.load_info_filename
bdde425c 933
052421ff 934 if opts.rm_cachedir:
a0e07d31 935 ydl.cache.remove()
052421ff 936
8372be74 937 updater = Updater(ydl)
938 if opts.update_self and updater.update() and actual_use:
939 if updater.cmd:
940 return updater.restart()
941 # This code is reachable only for zip variant in py < 3.10
942 # It makes sense to exit here, but the old behavior is to continue
943 ydl.report_warning('Restart yt-dlp to use the updated version')
944 # return 100, 'ERROR: The program must exit for the update to complete'
e5813e53 945
e5813e53 946 if not actual_use:
8372be74 947 if pre_process:
e79969b2 948 return ydl._download_retcode
59ae15a5 949
7d4111ed 950 ydl.warn_if_short_id(sys.argv[1:] if argv is None else argv)
adc0ae3c
PH
951 parser.error(
952 'You must provide at least one URL.\n'
7a5c1cfe 953 'Type yt-dlp --help to see a list of all options.')
7d4111ed 954
c487cf00 955 parser.destroy()
bdde425c 956 try:
1dcc4c0c 957 if opts.load_info_filename is not None:
9e491463 958 return ydl.download_with_info_file(expand_path(opts.load_info_filename))
1dcc4c0c 959 else:
9e491463 960 return ydl.download(all_urls)
f304da8a 961 except DownloadCancelled:
8b0d7497 962 ydl.to_screen('Aborting remaining downloads')
9e491463 963 return 101
235b3ba4 964
a27b9e8b 965
b8ad4f02 966def main(argv=None):
d5d1df8a 967 global _IN_CLI
968 _IN_CLI = True
59ae15a5 969 try:
9e491463 970 _exit(*variadic(_real_main(argv)))
59ae15a5 971 except DownloadError:
9e491463 972 _exit(1)
aa9369a2 973 except SameFileError as e:
9e491463 974 _exit(f'ERROR: {e}')
59ae15a5 975 except KeyboardInterrupt:
9e491463 976 _exit('\nERROR: Interrupted by user')
aa9369a2 977 except BrokenPipeError as e:
cc3fa8d3 978 # https://docs.python.org/3/library/signal.html#note-on-sigpipe
979 devnull = os.open(os.devnull, os.O_WRONLY)
980 os.dup2(devnull, sys.stdout.fileno())
9e491463 981 _exit(f'\nERROR: {e}')
982 except optparse.OptParseError as e:
983 _exit(2, f'\n{e}')
2bad0e5d 984
582be358 985
82d02080 986from .extractor import gen_extractors, list_extractors
21633673 987
d1b5f70b 988__all__ = [
989 'main',
990 'YoutubeDL',
991 'parse_options',
992 'gen_extractors',
993 'list_extractors',
994]