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