4 f
'You are using an unsupported version of Python. Only Python versions 3.6 and above are supported by yt-dlp' # noqa: F541
6 __license__
= 'Public Domain'
16 from .options
import parseOpts
21 workaround_optparse_bug9161
,
23 from .cookies
import SUPPORTED_BROWSERS
, SUPPORTED_KEYRINGS
45 from .update
import run_update
46 from .downloader
import FileDownloader
47 from .extractor
import gen_extractors
, list_extractors
48 from .extractor
.common
import InfoExtractor
49 from .extractor
.adobepass
import MSO_INFO
50 from .postprocessor
import (
52 FFmpegSubtitlesConvertorPP
,
53 FFmpegThumbnailsConvertorPP
,
54 FFmpegVideoConvertorPP
,
59 from .YoutubeDL
import YoutubeDL
62 def get_urls(urls
, batchfile
, verbose
):
63 # Batch file verification
65 if batchfile
is not None:
68 write_string('Reading URLs from stdin - EOF (%s) to end:\n' % (
69 'Ctrl+Z' if compat_os_name
== 'nt' else 'Ctrl+D'))
73 expand_path(batchfile
),
74 'r', encoding
='utf-8', errors
='ignore')
75 batch_urls
= read_batch_urls(batchfd
)
77 write_string('[debug] Batch file urls: ' + repr(batch_urls
) + '\n')
79 sys
.exit('ERROR: batch file %s could not be read' % batchfile
)
80 _enc
= preferredencoding()
82 url
.strip().decode(_enc
, 'ignore') if isinstance(url
, bytes
) else url
.strip()
83 for url
in batch_urls
+ urls
]
86 def print_extractor_information(opts
, urls
):
87 if opts
.list_extractors
:
88 for ie
in list_extractors(opts
.age_limit
):
89 write_string(ie
.IE_NAME
+ (' (CURRENTLY BROKEN)' if not ie
.working() else '') + '\n', out
=sys
.stdout
)
90 matchedUrls
= [url
for url
in urls
if ie
.suitable(url
)]
91 for mu
in matchedUrls
:
92 write_string(' ' + mu
+ '\n', out
=sys
.stdout
)
93 elif opts
.list_extractor_descriptions
:
94 for ie
in list_extractors(opts
.age_limit
):
97 desc
= getattr(ie
, 'IE_DESC', ie
.IE_NAME
)
100 if getattr(ie
, 'SEARCH_KEY', None) is not None:
101 _SEARCHES
= ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
102 _COUNTS
= ('', '5', '10', 'all')
103 desc
+= f
'; "{ie.SEARCH_KEY}:" prefix (Example: "{ie.SEARCH_KEY}{random.choice(_COUNTS)}:{random.choice(_SEARCHES)}")'
104 write_string(desc
+ '\n', out
=sys
.stdout
)
105 elif opts
.ap_list_mso
:
106 table
= [[mso_id
, mso_info
['name']] for mso_id
, mso_info
in MSO_INFO
.items()]
107 write_string('Supported TV Providers:\n' + render_table(['mso', 'mso name'], table
) + '\n', out
=sys
.stdout
)
113 def set_compat_opts(opts
):
114 def _unused_compat_opt(name
):
115 if name
not in opts
.compat_opts
:
117 opts
.compat_opts
.discard(name
)
118 opts
.compat_opts
.update(['*%s' % name
])
121 def set_default_compat(compat_name
, opt_name
, default
=True, remove_compat
=True):
122 attr
= getattr(opts
, opt_name
)
123 if compat_name
in opts
.compat_opts
:
125 setattr(opts
, opt_name
, not default
)
129 _unused_compat_opt(compat_name
)
132 setattr(opts
, opt_name
, default
)
135 set_default_compat('abort-on-error', 'ignoreerrors', 'only_download')
136 set_default_compat('no-playlist-metafiles', 'allow_playlist_files')
137 set_default_compat('no-clean-infojson', 'clean_infojson')
138 if 'no-attach-info-json' in opts
.compat_opts
:
139 if opts
.embed_infojson
:
140 _unused_compat_opt('no-attach-info-json')
142 opts
.embed_infojson
= False
143 if 'format-sort' in opts
.compat_opts
:
144 opts
.format_sort
.extend(InfoExtractor
.FormatSort
.ytdl_default
)
145 _video_multistreams_set
= set_default_compat('multistreams', 'allow_multiple_video_streams', False, remove_compat
=False)
146 _audio_multistreams_set
= set_default_compat('multistreams', 'allow_multiple_audio_streams', False, remove_compat
=False)
147 if _video_multistreams_set
is False and _audio_multistreams_set
is False:
148 _unused_compat_opt('multistreams')
149 if 'filename' in opts
.compat_opts
:
150 if opts
.outtmpl
.get('default') is None:
151 opts
.outtmpl
.update({'default': '%(title)s-%(id)s.%(ext)s'})
153 _unused_compat_opt('filename')
156 def validate_options(opts
):
157 def validate(cndn
, name
, value
=None, msg
=None):
160 raise ValueError((msg
or 'invalid {name} "{value}" given').format(name
=name
, value
=value
))
162 def validate_in(name
, value
, items
, msg
=None):
163 return validate(value
is None or value
in items
, name
, value
, msg
)
165 def validate_regex(name
, value
, regex
):
166 return validate(value
is None or re
.match(regex
, value
), name
, value
)
168 def validate_positive(name
, value
, strict
=False):
169 return validate(value
is None or value
> 0 or (not strict
and value
== 0),
170 name
, value
, '{name} "{value}" must be positive' + ('' if strict
else ' or 0'))
172 def validate_minmax(min_val
, max_val
, min_name
, max_name
=None):
173 if max_val
is None or min_val
is None or max_val
>= min_val
:
176 min_name
, max_name
= f
'min {min_name}', f
'max {min_name}'
177 raise ValueError(f
'{max_name} "{max_val}" must be must be greater than or equal to {min_name} "{min_val}"')
179 # Usernames and passwords
180 validate(not opts
.usenetrc
or (opts
.username
is None and opts
.password
is None),
181 '.netrc', msg
='using {name} conflicts with giving username/password')
182 validate(opts
.password
is None or opts
.username
is not None, 'account username', msg
='{name} missing')
183 validate(opts
.ap_password
is None or opts
.ap_username
is not None,
184 'TV Provider account username', msg
='{name} missing')
185 validate_in('TV Provider', opts
.ap_mso
, MSO_INFO
,
186 'Unsupported {name} "{value}", use --ap-list-mso to get a list of supported TV Providers')
189 validate_positive('autonumber start', opts
.autonumber_start
)
190 validate_positive('autonumber size', opts
.autonumber_size
, True)
191 validate_positive('concurrent fragments', opts
.concurrent_fragment_downloads
, True)
192 validate_positive('playlist start', opts
.playliststart
, True)
193 if opts
.playlistend
!= -1:
194 validate_minmax(opts
.playliststart
, opts
.playlistend
, 'playlist start', 'playlist end')
197 validate_positive('subtitles sleep interval', opts
.sleep_interval_subtitles
)
198 validate_positive('requests sleep interval', opts
.sleep_interval_requests
)
199 validate_positive('sleep interval', opts
.sleep_interval
)
200 validate_positive('max sleep interval', opts
.max_sleep_interval
)
201 if opts
.sleep_interval
is None:
203 opts
.max_sleep_interval
is None, 'min sleep interval',
204 msg
='{name} must be specified; use --min-sleep-interval')
205 elif opts
.max_sleep_interval
is None:
206 opts
.max_sleep_interval
= opts
.sleep_interval
208 validate_minmax(opts
.sleep_interval
, opts
.max_sleep_interval
, 'sleep interval')
210 if opts
.wait_for_video
is not None:
211 min_wait
, max_wait
, *_
= map(parse_duration
, opts
.wait_for_video
.split('-', 1) + [None])
212 validate(min_wait
is not None and not (max_wait
is None and '-' in opts
.wait_for_video
),
213 'time range to wait for video', opts
.wait_for_video
)
214 validate_minmax(min_wait
, max_wait
, 'time range to wait for video')
215 opts
.wait_for_video
= (min_wait
, max_wait
)
218 for f
in opts
.format_sort
:
219 validate_regex('format sorting', f
, InfoExtractor
.FormatSort
.regex
)
221 # Postprocessor formats
222 validate_in('audio format', opts
.audioformat
, ['best'] + list(FFmpegExtractAudioPP
.SUPPORTED_EXTS
))
223 validate_in('subtitle format', opts
.convertsubtitles
, FFmpegSubtitlesConvertorPP
.SUPPORTED_EXTS
)
224 validate_in('thumbnail format', opts
.convertthumbnails
, FFmpegThumbnailsConvertorPP
.SUPPORTED_EXTS
)
225 if opts
.recodevideo
is not None:
226 opts
.recodevideo
= opts
.recodevideo
.replace(' ', '')
227 validate_regex('video recode format', opts
.recodevideo
, FFmpegVideoConvertorPP
.FORMAT_RE
)
228 if opts
.remuxvideo
is not None:
229 opts
.remuxvideo
= opts
.remuxvideo
.replace(' ', '')
230 validate_regex('video remux format', opts
.remuxvideo
, FFmpegVideoRemuxerPP
.FORMAT_RE
)
231 if opts
.audioquality
:
232 opts
.audioquality
= opts
.audioquality
.strip('k').strip('K')
233 # int_or_none prevents inf, nan
234 validate_positive('audio quality', int_or_none(float_or_none(opts
.audioquality
), default
=0))
237 def parse_retries(name
, value
):
240 elif value
in ('inf', 'infinite'):
244 except (TypeError, ValueError):
245 validate(False, f
'{name} retry count', value
)
247 opts
.retries
= parse_retries('download', opts
.retries
)
248 opts
.fragment_retries
= parse_retries('fragment', opts
.fragment_retries
)
249 opts
.extractor_retries
= parse_retries('extractor', opts
.extractor_retries
)
250 opts
.file_access_retries
= parse_retries('file access', opts
.file_access_retries
)
253 def parse_bytes(name
, value
):
256 numeric_limit
= FileDownloader
.parse_bytes(value
)
257 validate(numeric_limit
is not None, 'rate limit', value
)
260 opts
.ratelimit
= parse_bytes('rate limit', opts
.ratelimit
)
261 opts
.throttledratelimit
= parse_bytes('throttled rate limit', opts
.throttledratelimit
)
262 opts
.min_filesize
= parse_bytes('min filesize', opts
.min_filesize
)
263 opts
.max_filesize
= parse_bytes('max filesize', opts
.max_filesize
)
264 opts
.buffersize
= parse_bytes('buffer size', opts
.buffersize
)
265 opts
.http_chunk_size
= parse_bytes('http chunk size', opts
.http_chunk_size
)
268 def validate_outtmpl(tmpl
, msg
):
269 err
= YoutubeDL
.validate_outtmpl(tmpl
)
271 raise ValueError(f
'invalid {msg} "{tmpl}": {err}')
273 for k
, tmpl
in opts
.outtmpl
.items():
274 validate_outtmpl(tmpl
, f
'{k} output template')
275 for type_
, tmpl_list
in opts
.forceprint
.items():
276 for tmpl
in tmpl_list
:
277 validate_outtmpl(tmpl
, f
'{type_} print template')
278 for type_
, tmpl_list
in opts
.print_to_file
.items():
279 for tmpl
, file in tmpl_list
:
280 validate_outtmpl(tmpl
, f
'{type_} print to file template')
281 validate_outtmpl(file, f
'{type_} print to file filename')
282 validate_outtmpl(opts
.sponsorblock_chapter_title
, 'SponsorBlock chapter title')
283 for k
, tmpl
in opts
.progress_template
.items():
284 k
= f
'{k[:-6]} console title' if '-title' in k
else f
'{k} progress'
285 validate_outtmpl(tmpl
, f
'{k} template')
287 outtmpl_default
= opts
.outtmpl
.get('default')
288 if outtmpl_default
== '':
289 opts
.skip_download
= None
290 del opts
.outtmpl
['default']
291 if outtmpl_default
and not os
.path
.splitext(outtmpl_default
)[1] and opts
.extractaudio
:
293 'Cannot download a video and extract audio into the same file! '
294 f
'Use "{outtmpl_default}.%(ext)s" instead of "{outtmpl_default}" as the output template')
297 remove_chapters_patterns
, opts
.remove_ranges
= [], []
298 for regex
in opts
.remove_chapters
or []:
299 if regex
.startswith('*'):
300 dur
= list(map(parse_duration
, regex
[1:].split('-')))
301 if len(dur
) == 2 and all(t
is not None for t
in dur
):
302 opts
.remove_ranges
.append(tuple(dur
))
304 raise ValueError(f
'invalid --remove-chapters time range "{regex}". Must be of the form *start-end')
306 remove_chapters_patterns
.append(re
.compile(regex
))
307 except re
.error
as err
:
308 raise ValueError(f
'invalid --remove-chapters regex "{regex}" - {err}')
309 opts
.remove_chapters
= remove_chapters_patterns
311 # Cookies from browser
312 if opts
.cookiesfrombrowser
:
313 mobj
= re
.match(r
'(?P<name>[^+:]+)(\s*\+\s*(?P<keyring>[^:]+))?(\s*:(?P<profile>.+))?', opts
.cookiesfrombrowser
)
315 raise ValueError(f
'invalid cookies from browser arguments: {opts.cookiesfrombrowser}')
316 browser_name
, keyring
, profile
= mobj
.group('name', 'keyring', 'profile')
317 browser_name
= browser_name
.lower()
318 if browser_name
not in SUPPORTED_BROWSERS
:
319 raise ValueError(f
'unsupported browser specified for cookies: "{browser_name}". '
320 f
'Supported browsers are: {", ".join(sorted(SUPPORTED_BROWSERS))}')
321 if keyring
is not None:
322 keyring
= keyring
.upper()
323 if keyring
not in SUPPORTED_KEYRINGS
:
324 raise ValueError(f
'unsupported keyring specified for cookies: "{keyring}". '
325 f
'Supported keyrings are: {", ".join(sorted(SUPPORTED_KEYRINGS))}')
326 opts
.cookiesfrombrowser
= (browser_name
, profile
, keyring
)
329 def metadataparser_actions(f
):
330 if isinstance(f
, str):
331 cmd
= '--parse-metadata %s' % compat_shlex_quote(f
)
333 actions
= [MetadataFromFieldPP
.to_action(f
)]
334 except Exception as err
:
335 raise ValueError(f
'{cmd} is invalid; {err}')
337 cmd
= '--replace-in-metadata %s' % ' '.join(map(compat_shlex_quote
, f
))
338 actions
= ((MetadataParserPP
.Actions
.REPLACE
, x
, *f
[1:]) for x
in f
[0].split(','))
340 for action
in actions
:
342 MetadataParserPP
.validate_action(*action
)
343 except Exception as err
:
344 raise ValueError(f
'{cmd} is invalid; {err}')
347 parse_metadata
= opts
.parse_metadata
or []
348 if opts
.metafromtitle
is not None:
349 parse_metadata
.append('title:%s' % opts
.metafromtitle
)
350 opts
.parse_metadata
= list(itertools
.chain(*map(metadataparser_actions
, parse_metadata
)))
353 geo_bypass_code
= opts
.geo_bypass_ip_block
or opts
.geo_bypass_country
354 if geo_bypass_code
is not None:
356 GeoUtils
.random_ipv4(geo_bypass_code
)
358 raise ValueError('unsupported geo-bypass country or ip-block')
360 opts
.match_filter
= match_filter_func(opts
.match_filter
)
362 if opts
.download_archive
is not None:
363 opts
.download_archive
= expand_path(opts
.download_archive
)
365 if opts
.user_agent
is not None:
366 opts
.headers
.setdefault('User-Agent', opts
.user_agent
)
367 if opts
.referer
is not None:
368 opts
.headers
.setdefault('Referer', opts
.referer
)
370 if opts
.no_sponsorblock
:
371 opts
.sponsorblock_mark
= opts
.sponsorblock_remove
= set()
373 warnings
, deprecation_warnings
= [], []
375 # Common mistake: -f best
376 if opts
.format
== 'best':
377 warnings
.append('.\n '.join((
378 '"-f best" selects the best pre-merged format which is often not the best option',
379 'To let yt-dlp download and merge the best available formats, simply do not pass any format selection',
380 'If you know what you are doing and want only the best pre-merged format, use "-f b" instead to suppress this warning')))
382 # --(post-processor/downloader)-args without name
383 def report_args_compat(name
, value
, key1
, key2
=None):
384 if key1
in value
and key2
not in value
:
385 warnings
.append(f
'{name} arguments given without specifying name. The arguments will be given to all {name}s')
389 report_args_compat('external downloader', opts
.external_downloader_args
, 'default')
390 if report_args_compat('post-processor', opts
.postprocessor_args
, 'default-compat', 'default'):
391 opts
.postprocessor_args
['default'] = opts
.postprocessor_args
.pop('default-compat')
392 opts
.postprocessor_args
.setdefault('sponskrub', [])
394 def report_conflict(arg1
, opt1
, arg2
='--allow-unplayable-formats', opt2
='allow_unplayable_formats',
395 val1
=NO_DEFAULT
, val2
=NO_DEFAULT
, default
=False):
396 if val2
is NO_DEFAULT
:
397 val2
= getattr(opts
, opt2
)
401 if val1
is NO_DEFAULT
:
402 val1
= getattr(opts
, opt1
)
404 warnings
.append(f
'{arg1} is ignored since {arg2} was given')
405 setattr(opts
, opt1
, default
)
407 # Conflicting options
408 report_conflict('--dateafter', 'dateafter', '--date', 'date', default
=None)
409 report_conflict('--datebefore', 'datebefore', '--date', 'date', default
=None)
410 report_conflict('--exec-before-download', 'exec_before_dl_cmd', '"--exec before_dl:"', 'exec_cmd', opts
.exec_cmd
.get('before_dl'))
411 report_conflict('--id', 'useid', '--output', 'outtmpl', val2
=opts
.outtmpl
.get('default'))
412 report_conflict('--remux-video', 'remuxvideo', '--recode-video', 'recodevideo')
413 report_conflict('--sponskrub', 'sponskrub', '--remove-chapters', 'remove_chapters')
414 report_conflict('--sponskrub', 'sponskrub', '--sponsorblock-mark', 'sponsorblock_mark')
415 report_conflict('--sponskrub', 'sponskrub', '--sponsorblock-remove', 'sponsorblock_remove')
416 report_conflict('--sponskrub-cut', 'sponskrub_cut', '--split-chapter', 'split_chapters', val1
=opts
.sponskrub
and opts
.sponskrub_cut
)
418 # Conflicts with --allow-unplayable-formats
419 report_conflict('--add-metadata', 'addmetadata')
420 report_conflict('--embed-chapters', 'addchapters')
421 report_conflict('--embed-info-json', 'embed_infojson')
422 report_conflict('--embed-subs', 'embedsubtitles')
423 report_conflict('--embed-thumbnail', 'embedthumbnail')
424 report_conflict('--extract-audio', 'extractaudio')
425 report_conflict('--fixup', 'fixup', val1
=(opts
.fixup
or '').lower() in ('', 'never', 'ignore'), default
='never')
426 report_conflict('--recode-video', 'recodevideo')
427 report_conflict('--remove-chapters', 'remove_chapters', default
=[])
428 report_conflict('--remux-video', 'remuxvideo')
429 report_conflict('--sponskrub', 'sponskrub')
430 report_conflict('--sponsorblock-remove', 'sponsorblock_remove', default
=set())
431 report_conflict('--xattrs', 'xattrs')
433 # Fully deprecated options
434 def report_deprecation(val
, old
, new
=None):
437 deprecation_warnings
.append(
438 f
'{old} is deprecated and may be removed in a future version. Use {new} instead' if new
439 else f
'{old} is deprecated and may not work as expected')
441 report_deprecation(opts
.sponskrub
, '--sponskrub', '--sponsorblock-mark or --sponsorblock-remove')
442 report_deprecation(not opts
.prefer_ffmpeg
, '--prefer-avconv', 'ffmpeg')
443 # report_deprecation(opts.include_ads, '--include-ads') # We may re-implement this in future
444 # report_deprecation(opts.call_home, '--call-home') # We may re-implement this in future
445 # report_deprecation(opts.writeannotations, '--write-annotations') # It's just that no website has it
448 opts
.date
= DateRange
.day(opts
.date
) if opts
.date
else DateRange(opts
.dateafter
, opts
.datebefore
)
450 if opts
.exec_before_dl_cmd
:
451 opts
.exec_cmd
['before_dl'] = opts
.exec_before_dl_cmd
453 if opts
.useid
: # --id is not deprecated in youtube-dl
454 opts
.outtmpl
['default'] = '%(id)s.%(ext)s'
456 if opts
.overwrites
: # --force-overwrites implies --no-continue
457 opts
.continue_dl
= False
459 if (opts
.addmetadata
or opts
.sponsorblock_mark
) and opts
.addchapters
is None:
460 # Add chapters when adding metadata or marking sponsors
461 opts
.addchapters
= True
463 if opts
.extractaudio
and not opts
.keepvideo
and opts
.format
is None:
464 # Do not unnecessarily download audio
465 opts
.format
= 'bestaudio/best'
467 if opts
.getcomments
and opts
.writeinfojson
is None:
468 # If JSON is not printed anywhere, but comments are requested, save it to file
469 if not opts
.dumpjson
or opts
.print_json
or opts
.dump_single_json
:
470 opts
.writeinfojson
= True
472 if opts
.allsubtitles
and not (opts
.embedsubtitles
or opts
.writeautomaticsub
):
473 # --all-sub automatically sets --write-sub if --write-auto-sub is not given
474 opts
.writesubtitles
= True
476 if opts
.addmetadata
and opts
.embed_infojson
is None:
477 # If embedding metadata and infojson is present, embed it
478 opts
.embed_infojson
= 'if_exists'
481 if opts
.username
is not None and opts
.password
is None:
482 opts
.password
= compat_getpass('Type account password and press [Return]: ')
483 if opts
.ap_username
is not None and opts
.ap_password
is None:
484 opts
.ap_password
= compat_getpass('Type TV provider account password and press [Return]: ')
486 return warnings
, deprecation_warnings
489 def get_postprocessors(opts
):
490 yield from opts
.add_postprocessors
492 if opts
.parse_metadata
:
494 'key': 'MetadataParser',
495 'actions': opts
.parse_metadata
,
496 'when': 'pre_process'
498 sponsorblock_query
= opts
.sponsorblock_mark | opts
.sponsorblock_remove
499 if sponsorblock_query
:
501 'key': 'SponsorBlock',
502 'categories': sponsorblock_query
,
503 'api': opts
.sponsorblock_api
,
504 'when': 'after_filter'
506 if opts
.convertsubtitles
:
508 'key': 'FFmpegSubtitlesConvertor',
509 'format': opts
.convertsubtitles
,
512 if opts
.convertthumbnails
:
514 'key': 'FFmpegThumbnailsConvertor',
515 'format': opts
.convertthumbnails
,
518 if opts
.extractaudio
:
520 'key': 'FFmpegExtractAudio',
521 'preferredcodec': opts
.audioformat
,
522 'preferredquality': opts
.audioquality
,
523 'nopostoverwrites': opts
.nopostoverwrites
,
527 'key': 'FFmpegVideoRemuxer',
528 'preferedformat': opts
.remuxvideo
,
532 'key': 'FFmpegVideoConvertor',
533 'preferedformat': opts
.recodevideo
,
535 # If ModifyChapters is going to remove chapters, subtitles must already be in the container.
536 if opts
.embedsubtitles
:
537 keep_subs
= 'no-keep-subs' not in opts
.compat_opts
539 'key': 'FFmpegEmbedSubtitle',
540 # already_have_subtitle = True prevents the file from being deleted after embedding
541 'already_have_subtitle': opts
.writesubtitles
and keep_subs
543 if not opts
.writeautomaticsub
and keep_subs
:
544 opts
.writesubtitles
= True
546 # ModifyChapters must run before FFmpegMetadataPP
547 if opts
.remove_chapters
or sponsorblock_query
:
549 'key': 'ModifyChapters',
550 'remove_chapters_patterns': opts
.remove_chapters
,
551 'remove_sponsor_segments': opts
.sponsorblock_remove
,
552 'remove_ranges': opts
.remove_ranges
,
553 'sponsorblock_chapter_title': opts
.sponsorblock_chapter_title
,
554 'force_keyframes': opts
.force_keyframes_at_cuts
556 # FFmpegMetadataPP should be run after FFmpegVideoConvertorPP and
557 # FFmpegExtractAudioPP as containers before conversion may not support
558 # metadata (3gp, webm, etc.)
559 # By default ffmpeg preserves metadata applicable for both
560 # source and target containers. From this point the container won't change,
561 # so metadata can be added here.
562 if opts
.addmetadata
or opts
.addchapters
or opts
.embed_infojson
:
564 'key': 'FFmpegMetadata',
565 'add_chapters': opts
.addchapters
,
566 'add_metadata': opts
.addmetadata
,
567 'add_infojson': opts
.embed_infojson
,
570 # This should be above EmbedThumbnail since sponskrub removes the thumbnail attachment
571 # but must be below EmbedSubtitle and FFmpegMetadata
572 # See https://github.com/yt-dlp/yt-dlp/issues/204 , https://github.com/faissaloo/SponSkrub/issues/29
573 # If opts.sponskrub is None, sponskrub is used, but it silently fails if the executable can't be found
574 if opts
.sponskrub
is not False:
577 'path': opts
.sponskrub_path
,
578 'args': opts
.sponskrub_args
,
579 'cut': opts
.sponskrub_cut
,
580 'force': opts
.sponskrub_force
,
581 'ignoreerror': opts
.sponskrub
is None,
584 if opts
.embedthumbnail
:
586 'key': 'EmbedThumbnail',
587 # already_have_thumbnail = True prevents the file from being deleted after embedding
588 'already_have_thumbnail': opts
.writethumbnail
590 if not opts
.writethumbnail
:
591 opts
.writethumbnail
= True
592 opts
.outtmpl
['pl_thumbnail'] = ''
593 if opts
.split_chapters
:
595 'key': 'FFmpegSplitChapters',
596 'force_keyframes': opts
.force_keyframes_at_cuts
,
598 # XAttrMetadataPP should be run after post-processors that may change file contents
600 yield {'key': 'XAttrMetadata'}
601 if opts
.concat_playlist
!= 'never':
603 'key': 'FFmpegConcat',
604 'only_multi_video': opts
.concat_playlist
!= 'always',
607 # Exec must be the last PP of each category
608 for when
, exec_cmd
in opts
.exec_cmd
.items():
611 'exec_cmd': exec_cmd
,
616 def parse_options(argv
=None):
617 """ @returns (parser, opts, urls, ydl_opts) """
618 parser
, opts
, urls
= parseOpts(argv
)
619 urls
= get_urls(urls
, opts
.batchfile
, opts
.verbose
)
621 set_compat_opts(opts
)
623 warnings
, deprecation_warnings
= validate_options(opts
)
624 except ValueError as err
:
625 parser
.error(f
'{err}\n')
627 postprocessors
= list(get_postprocessors(opts
))
629 any_getting
= (any(opts
.forceprint
.values()) or opts
.dumpjson
or opts
.dump_single_json
630 or opts
.geturl
or opts
.gettitle
or opts
.getid
or opts
.getthumbnail
631 or opts
.getdescription
or opts
.getfilename
or opts
.getformat
or opts
.getduration
)
633 any_printing
= opts
.print_json
636 opts
.recodevideo
if opts
.recodevideo
in FFmpegVideoConvertorPP
.SUPPORTED_EXTS
637 else opts
.remuxvideo
if opts
.remuxvideo
in FFmpegVideoRemuxerPP
.SUPPORTED_EXTS
638 else opts
.audioformat
if (opts
.extractaudio
and opts
.audioformat
!= 'best')
641 return parser
, opts
, urls
, {
642 'usenetrc': opts
.usenetrc
,
643 'netrc_location': opts
.netrc_location
,
644 'username': opts
.username
,
645 'password': opts
.password
,
646 'twofactor': opts
.twofactor
,
647 'videopassword': opts
.videopassword
,
648 'ap_mso': opts
.ap_mso
,
649 'ap_username': opts
.ap_username
,
650 'ap_password': opts
.ap_password
,
651 'quiet': (opts
.quiet
or any_getting
or any_printing
),
652 'no_warnings': opts
.no_warnings
,
653 'forceurl': opts
.geturl
,
654 'forcetitle': opts
.gettitle
,
655 'forceid': opts
.getid
,
656 'forcethumbnail': opts
.getthumbnail
,
657 'forcedescription': opts
.getdescription
,
658 'forceduration': opts
.getduration
,
659 'forcefilename': opts
.getfilename
,
660 'forceformat': opts
.getformat
,
661 'forceprint': opts
.forceprint
,
662 'print_to_file': opts
.print_to_file
,
663 'forcejson': opts
.dumpjson
or opts
.print_json
,
664 'dump_single_json': opts
.dump_single_json
,
665 'force_write_download_archive': opts
.force_write_download_archive
,
666 'simulate': (any_getting
or None) if opts
.simulate
is None else opts
.simulate
,
667 'skip_download': opts
.skip_download
,
668 'format': opts
.format
,
669 'allow_unplayable_formats': opts
.allow_unplayable_formats
,
670 'ignore_no_formats_error': opts
.ignore_no_formats_error
,
671 'format_sort': opts
.format_sort
,
672 'format_sort_force': opts
.format_sort_force
,
673 'allow_multiple_video_streams': opts
.allow_multiple_video_streams
,
674 'allow_multiple_audio_streams': opts
.allow_multiple_audio_streams
,
675 'check_formats': opts
.check_formats
,
676 'listformats': opts
.listformats
,
677 'listformats_table': opts
.listformats_table
,
678 'outtmpl': opts
.outtmpl
,
679 'outtmpl_na_placeholder': opts
.outtmpl_na_placeholder
,
681 'autonumber_size': opts
.autonumber_size
,
682 'autonumber_start': opts
.autonumber_start
,
683 'restrictfilenames': opts
.restrictfilenames
,
684 'windowsfilenames': opts
.windowsfilenames
,
685 'ignoreerrors': opts
.ignoreerrors
,
686 'force_generic_extractor': opts
.force_generic_extractor
,
687 'ratelimit': opts
.ratelimit
,
688 'throttledratelimit': opts
.throttledratelimit
,
689 'overwrites': opts
.overwrites
,
690 'retries': opts
.retries
,
691 'file_access_retries': opts
.file_access_retries
,
692 'fragment_retries': opts
.fragment_retries
,
693 'extractor_retries': opts
.extractor_retries
,
694 'skip_unavailable_fragments': opts
.skip_unavailable_fragments
,
695 'keep_fragments': opts
.keep_fragments
,
696 'concurrent_fragment_downloads': opts
.concurrent_fragment_downloads
,
697 'buffersize': opts
.buffersize
,
698 'noresizebuffer': opts
.noresizebuffer
,
699 'http_chunk_size': opts
.http_chunk_size
,
700 'continuedl': opts
.continue_dl
,
701 'noprogress': opts
.quiet
if opts
.noprogress
is None else opts
.noprogress
,
702 'progress_with_newline': opts
.progress_with_newline
,
703 'progress_template': opts
.progress_template
,
704 'playliststart': opts
.playliststart
,
705 'playlistend': opts
.playlistend
,
706 'playlistreverse': opts
.playlist_reverse
,
707 'playlistrandom': opts
.playlist_random
,
708 'noplaylist': opts
.noplaylist
,
709 'logtostderr': opts
.outtmpl
.get('default') == '-',
710 'consoletitle': opts
.consoletitle
,
711 'nopart': opts
.nopart
,
712 'updatetime': opts
.updatetime
,
713 'writedescription': opts
.writedescription
,
714 'writeannotations': opts
.writeannotations
,
715 'writeinfojson': opts
.writeinfojson
,
716 'allow_playlist_files': opts
.allow_playlist_files
,
717 'clean_infojson': opts
.clean_infojson
,
718 'getcomments': opts
.getcomments
,
719 'writethumbnail': opts
.writethumbnail
is True,
720 'write_all_thumbnails': opts
.writethumbnail
== 'all',
721 'writelink': opts
.writelink
,
722 'writeurllink': opts
.writeurllink
,
723 'writewebloclink': opts
.writewebloclink
,
724 'writedesktoplink': opts
.writedesktoplink
,
725 'writesubtitles': opts
.writesubtitles
,
726 'writeautomaticsub': opts
.writeautomaticsub
,
727 'allsubtitles': opts
.allsubtitles
,
728 'listsubtitles': opts
.listsubtitles
,
729 'subtitlesformat': opts
.subtitlesformat
,
730 'subtitleslangs': opts
.subtitleslangs
,
731 'matchtitle': decodeOption(opts
.matchtitle
),
732 'rejecttitle': decodeOption(opts
.rejecttitle
),
733 'max_downloads': opts
.max_downloads
,
734 'prefer_free_formats': opts
.prefer_free_formats
,
735 'trim_file_name': opts
.trim_file_name
,
736 'verbose': opts
.verbose
,
737 'dump_intermediate_pages': opts
.dump_intermediate_pages
,
738 'write_pages': opts
.write_pages
,
740 'keepvideo': opts
.keepvideo
,
741 'min_filesize': opts
.min_filesize
,
742 'max_filesize': opts
.max_filesize
,
743 'min_views': opts
.min_views
,
744 'max_views': opts
.max_views
,
745 'daterange': opts
.date
,
746 'cachedir': opts
.cachedir
,
747 'youtube_print_sig_code': opts
.youtube_print_sig_code
,
748 'age_limit': opts
.age_limit
,
749 'download_archive': opts
.download_archive
,
750 'break_on_existing': opts
.break_on_existing
,
751 'break_on_reject': opts
.break_on_reject
,
752 'break_per_url': opts
.break_per_url
,
753 'skip_playlist_after_errors': opts
.skip_playlist_after_errors
,
754 'cookiefile': opts
.cookiefile
,
755 'cookiesfrombrowser': opts
.cookiesfrombrowser
,
756 'legacyserverconnect': opts
.legacy_server_connect
,
757 'nocheckcertificate': opts
.no_check_certificate
,
758 'prefer_insecure': opts
.prefer_insecure
,
759 'http_headers': opts
.headers
,
761 'socket_timeout': opts
.socket_timeout
,
762 'bidi_workaround': opts
.bidi_workaround
,
763 'debug_printtraffic': opts
.debug_printtraffic
,
764 'prefer_ffmpeg': opts
.prefer_ffmpeg
,
765 'include_ads': opts
.include_ads
,
766 'default_search': opts
.default_search
,
767 'dynamic_mpd': opts
.dynamic_mpd
,
768 'extractor_args': opts
.extractor_args
,
769 'youtube_include_dash_manifest': opts
.youtube_include_dash_manifest
,
770 'youtube_include_hls_manifest': opts
.youtube_include_hls_manifest
,
771 'encoding': opts
.encoding
,
772 'extract_flat': opts
.extract_flat
,
773 'live_from_start': opts
.live_from_start
,
774 'wait_for_video': opts
.wait_for_video
,
775 'mark_watched': opts
.mark_watched
,
776 'merge_output_format': opts
.merge_output_format
,
777 'final_ext': final_ext
,
778 'postprocessors': postprocessors
,
780 'source_address': opts
.source_address
,
781 'call_home': opts
.call_home
,
782 'sleep_interval_requests': opts
.sleep_interval_requests
,
783 'sleep_interval': opts
.sleep_interval
,
784 'max_sleep_interval': opts
.max_sleep_interval
,
785 'sleep_interval_subtitles': opts
.sleep_interval_subtitles
,
786 'external_downloader': opts
.external_downloader
,
787 'list_thumbnails': opts
.list_thumbnails
,
788 'playlist_items': opts
.playlist_items
,
789 'xattr_set_filesize': opts
.xattr_set_filesize
,
790 'match_filter': opts
.match_filter
,
791 'no_color': opts
.no_color
,
792 'ffmpeg_location': opts
.ffmpeg_location
,
793 'hls_prefer_native': opts
.hls_prefer_native
,
794 'hls_use_mpegts': opts
.hls_use_mpegts
,
795 'hls_split_discontinuity': opts
.hls_split_discontinuity
,
796 'external_downloader_args': opts
.external_downloader_args
,
797 'postprocessor_args': opts
.postprocessor_args
,
798 'cn_verification_proxy': opts
.cn_verification_proxy
,
799 'geo_verification_proxy': opts
.geo_verification_proxy
,
800 'geo_bypass': opts
.geo_bypass
,
801 'geo_bypass_country': opts
.geo_bypass_country
,
802 'geo_bypass_ip_block': opts
.geo_bypass_ip_block
,
803 '_warnings': warnings
,
804 '_deprecation_warnings': deprecation_warnings
,
805 'compat_opts': opts
.compat_opts
,
809 def _real_main(argv
=None):
810 # Compatibility fixes for Windows
811 if sys
.platform
== 'win32':
812 # https://github.com/ytdl-org/youtube-dl/issues/820
813 codecs
.register(lambda name
: codecs
.lookup('utf-8') if name
== 'cp65001' else None)
815 workaround_optparse_bug9161()
817 setproctitle('yt-dlp')
819 parser
, opts
, all_urls
, ydl_opts
= parse_options(argv
)
822 if opts
.dump_user_agent
:
823 ua
= traverse_obj(opts
.headers
, 'User-Agent', casesense
=False, default
=std_headers
['User-Agent'])
824 write_string(f
'{ua}\n', out
=sys
.stdout
)
827 if print_extractor_information(opts
, all_urls
):
830 with
YoutubeDL(ydl_opts
) as ydl
:
831 actual_use
= all_urls
or opts
.load_info_filename
839 # If updater returns True, exit. Required for windows
842 sys
.exit('ERROR: The program must exit for the update to complete')
847 if opts
.update_self
or opts
.rm_cachedir
:
850 ydl
.warn_if_short_id(sys
.argv
[1:] if argv
is None else argv
)
852 'You must provide at least one URL.\n'
853 'Type yt-dlp --help to see a list of all options.')
856 if opts
.load_info_filename
is not None:
857 retcode
= ydl
.download_with_info_file(expand_path(opts
.load_info_filename
))
859 retcode
= ydl
.download(all_urls
)
860 except DownloadCancelled
:
861 ydl
.to_screen('Aborting remaining downloads')
870 except DownloadError
:
872 except SameFileError
as e
:
873 sys
.exit(f
'ERROR: {e}')
874 except KeyboardInterrupt:
875 sys
.exit('\nERROR: Interrupted by user')
876 except BrokenPipeError
as e
:
877 # https://docs.python.org/3/library/signal.html#note-on-sigpipe
878 devnull
= os
.open(os
.devnull
, os
.O_WRONLY
)
879 os
.dup2(devnull
, sys
.stdout
.fileno())
880 sys
.exit(f
'\nERROR: {e}')