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