]> jfr.im git - yt-dlp.git/blob - yt_dlp/__init__.py
Add option `--ignore-no-formats-error`
[yt-dlp.git] / yt_dlp / __init__.py
1 #!/usr/bin/env python
2 # coding: utf-8
3
4 from __future__ import unicode_literals
5
6 __license__ = 'Public Domain'
7
8 import codecs
9 import io
10 import os
11 import random
12 import re
13 import sys
14
15
16 from .options import (
17 parseOpts,
18 )
19 from .compat import (
20 compat_getpass,
21 workaround_optparse_bug9161,
22 )
23 from .utils import (
24 DateRange,
25 decodeOption,
26 DownloadError,
27 ExistingVideoReached,
28 expand_path,
29 match_filter_func,
30 MaxDownloadsReached,
31 preferredencoding,
32 read_batch_urls,
33 RejectedVideoReached,
34 REMUX_EXTENSIONS,
35 render_table,
36 SameFileError,
37 setproctitle,
38 std_headers,
39 write_string,
40 )
41 from .update import update_self
42 from .downloader import (
43 FileDownloader,
44 )
45 from .extractor import gen_extractors, list_extractors
46 from .extractor.common import InfoExtractor
47 from .extractor.adobepass import MSO_INFO
48 from .postprocessor.metadatafromfield import MetadataFromFieldPP
49 from .YoutubeDL import YoutubeDL
50
51
52 def _real_main(argv=None):
53 # Compatibility fixes for Windows
54 if sys.platform == 'win32':
55 # https://github.com/ytdl-org/youtube-dl/issues/820
56 codecs.register(lambda name: codecs.lookup('utf-8') if name == 'cp65001' else None)
57
58 workaround_optparse_bug9161()
59
60 setproctitle('yt-dlp')
61
62 parser, opts, args = parseOpts(argv)
63
64 # Set user agent
65 if opts.user_agent is not None:
66 std_headers['User-Agent'] = opts.user_agent
67
68 # Set referer
69 if opts.referer is not None:
70 std_headers['Referer'] = opts.referer
71
72 # Custom HTTP headers
73 std_headers.update(opts.headers)
74
75 # Dump user agent
76 if opts.dump_user_agent:
77 write_string(std_headers['User-Agent'] + '\n', out=sys.stdout)
78 sys.exit(0)
79
80 # Batch file verification
81 batch_urls = []
82 if opts.batchfile is not None:
83 try:
84 if opts.batchfile == '-':
85 batchfd = sys.stdin
86 else:
87 batchfd = io.open(
88 expand_path(opts.batchfile),
89 'r', encoding='utf-8', errors='ignore')
90 batch_urls = read_batch_urls(batchfd)
91 if opts.verbose:
92 write_string('[debug] Batch file urls: ' + repr(batch_urls) + '\n')
93 except IOError:
94 sys.exit('ERROR: batch file %s could not be read' % opts.batchfile)
95 all_urls = batch_urls + [url.strip() for url in args] # batch_urls are already striped in read_batch_urls
96 _enc = preferredencoding()
97 all_urls = [url.decode(_enc, 'ignore') if isinstance(url, bytes) else url for url in all_urls]
98
99 if opts.list_extractors:
100 for ie in list_extractors(opts.age_limit):
101 write_string(ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie._WORKING else '') + '\n', out=sys.stdout)
102 matchedUrls = [url for url in all_urls if ie.suitable(url)]
103 for mu in matchedUrls:
104 write_string(' ' + mu + '\n', out=sys.stdout)
105 sys.exit(0)
106 if opts.list_extractor_descriptions:
107 for ie in list_extractors(opts.age_limit):
108 if not ie._WORKING:
109 continue
110 desc = getattr(ie, 'IE_DESC', ie.IE_NAME)
111 if desc is False:
112 continue
113 if hasattr(ie, 'SEARCH_KEY'):
114 _SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
115 _COUNTS = ('', '5', '10', 'all')
116 desc += ' (Example: "%s%s:%s" )' % (ie.SEARCH_KEY, random.choice(_COUNTS), random.choice(_SEARCHES))
117 write_string(desc + '\n', out=sys.stdout)
118 sys.exit(0)
119 if opts.ap_list_mso:
120 table = [[mso_id, mso_info['name']] for mso_id, mso_info in MSO_INFO.items()]
121 write_string('Supported TV Providers:\n' + render_table(['mso', 'mso name'], table) + '\n', out=sys.stdout)
122 sys.exit(0)
123
124 # Conflicting, missing and erroneous options
125 if opts.usenetrc and (opts.username is not None or opts.password is not None):
126 parser.error('using .netrc conflicts with giving username/password')
127 if opts.password is not None and opts.username is None:
128 parser.error('account username missing\n')
129 if opts.ap_password is not None and opts.ap_username is None:
130 parser.error('TV Provider account username missing\n')
131 if opts.outtmpl is not None and (opts.usetitle or opts.autonumber or opts.useid):
132 parser.error('using output template conflicts with using title, video ID or auto number')
133 if opts.autonumber_size is not None:
134 if opts.autonumber_size <= 0:
135 parser.error('auto number size must be positive')
136 if opts.autonumber_start is not None:
137 if opts.autonumber_start < 0:
138 parser.error('auto number start must be positive or 0')
139 if opts.usetitle and opts.useid:
140 parser.error('using title conflicts with using video ID')
141 if opts.username is not None and opts.password is None:
142 opts.password = compat_getpass('Type account password and press [Return]: ')
143 if opts.ap_username is not None and opts.ap_password is None:
144 opts.ap_password = compat_getpass('Type TV provider account password and press [Return]: ')
145 if opts.ratelimit is not None:
146 numeric_limit = FileDownloader.parse_bytes(opts.ratelimit)
147 if numeric_limit is None:
148 parser.error('invalid rate limit specified')
149 opts.ratelimit = numeric_limit
150 if opts.min_filesize is not None:
151 numeric_limit = FileDownloader.parse_bytes(opts.min_filesize)
152 if numeric_limit is None:
153 parser.error('invalid min_filesize specified')
154 opts.min_filesize = numeric_limit
155 if opts.max_filesize is not None:
156 numeric_limit = FileDownloader.parse_bytes(opts.max_filesize)
157 if numeric_limit is None:
158 parser.error('invalid max_filesize specified')
159 opts.max_filesize = numeric_limit
160 if opts.sleep_interval is not None:
161 if opts.sleep_interval < 0:
162 parser.error('sleep interval must be positive or 0')
163 if opts.max_sleep_interval is not None:
164 if opts.max_sleep_interval < 0:
165 parser.error('max sleep interval must be positive or 0')
166 if opts.sleep_interval is None:
167 parser.error('min sleep interval must be specified, use --min-sleep-interval')
168 if opts.max_sleep_interval < opts.sleep_interval:
169 parser.error('max sleep interval must be greater than or equal to min sleep interval')
170 else:
171 opts.max_sleep_interval = opts.sleep_interval
172 if opts.sleep_interval_subtitles is not None:
173 if opts.sleep_interval_subtitles < 0:
174 parser.error('subtitles sleep interval must be positive or 0')
175 if opts.sleep_interval_requests is not None:
176 if opts.sleep_interval_requests < 0:
177 parser.error('requests sleep interval must be positive or 0')
178 if opts.ap_mso and opts.ap_mso not in MSO_INFO:
179 parser.error('Unsupported TV Provider, use --ap-list-mso to get a list of supported TV Providers')
180 if opts.overwrites:
181 # --yes-overwrites implies --no-continue
182 opts.continue_dl = False
183 if opts.concurrent_fragment_downloads <= 0:
184 raise ValueError('Concurrent fragments must be positive')
185
186 def parse_retries(retries, name=''):
187 if retries in ('inf', 'infinite'):
188 parsed_retries = float('inf')
189 else:
190 try:
191 parsed_retries = int(retries)
192 except (TypeError, ValueError):
193 parser.error('invalid %sretry count specified' % name)
194 return parsed_retries
195 if opts.retries is not None:
196 opts.retries = parse_retries(opts.retries)
197 if opts.fragment_retries is not None:
198 opts.fragment_retries = parse_retries(opts.fragment_retries, 'fragment ')
199 if opts.extractor_retries is not None:
200 opts.extractor_retries = parse_retries(opts.extractor_retries, 'extractor ')
201 if opts.buffersize is not None:
202 numeric_buffersize = FileDownloader.parse_bytes(opts.buffersize)
203 if numeric_buffersize is None:
204 parser.error('invalid buffer size specified')
205 opts.buffersize = numeric_buffersize
206 if opts.http_chunk_size is not None:
207 numeric_chunksize = FileDownloader.parse_bytes(opts.http_chunk_size)
208 if not numeric_chunksize:
209 parser.error('invalid http chunk size specified')
210 opts.http_chunk_size = numeric_chunksize
211 if opts.playliststart <= 0:
212 raise ValueError('Playlist start must be positive')
213 if opts.playlistend not in (-1, None) and opts.playlistend < opts.playliststart:
214 raise ValueError('Playlist end must be greater than playlist start')
215 if opts.extractaudio:
216 if opts.audioformat not in ['best', 'aac', 'flac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav']:
217 parser.error('invalid audio format specified')
218 if opts.audioquality:
219 opts.audioquality = opts.audioquality.strip('k').strip('K')
220 if not opts.audioquality.isdigit():
221 parser.error('invalid audio quality specified')
222 if opts.recodevideo is not None:
223 if opts.recodevideo not in REMUX_EXTENSIONS:
224 parser.error('invalid video recode format specified')
225 if opts.remuxvideo is not None:
226 opts.remuxvideo = opts.remuxvideo.replace(' ', '')
227 remux_regex = r'{0}(?:/{0})*$'.format(r'(?:\w+>)?(?:%s)' % '|'.join(REMUX_EXTENSIONS))
228 if not re.match(remux_regex, opts.remuxvideo):
229 parser.error('invalid video remux format specified')
230 if opts.convertsubtitles is not None:
231 if opts.convertsubtitles not in ('srt', 'vtt', 'ass', 'lrc'):
232 parser.error('invalid subtitle format specified')
233 if opts.convertthumbnails is not None:
234 if opts.convertthumbnails not in ('jpg', ):
235 parser.error('invalid thumbnail format specified')
236
237 if opts.date is not None:
238 date = DateRange.day(opts.date)
239 else:
240 date = DateRange(opts.dateafter, opts.datebefore)
241
242 # Do not download videos when there are audio-only formats
243 if opts.extractaudio and not opts.keepvideo and opts.format is None:
244 opts.format = 'bestaudio/best'
245
246 outtmpl = opts.outtmpl
247 if not outtmpl:
248 outtmpl = {'default': (
249 '%(title)s-%(id)s-%(format)s.%(ext)s' if opts.format == '-1' and opts.usetitle
250 else '%(id)s-%(format)s.%(ext)s' if opts.format == '-1'
251 else '%(autonumber)s-%(title)s-%(id)s.%(ext)s' if opts.usetitle and opts.autonumber
252 else '%(title)s-%(id)s.%(ext)s' if opts.usetitle
253 else '%(id)s.%(ext)s' if opts.useid
254 else '%(autonumber)s-%(id)s.%(ext)s' if opts.autonumber
255 else None)}
256 outtmpl_default = outtmpl.get('default')
257 if outtmpl_default is not None and not os.path.splitext(outtmpl_default)[1] and opts.extractaudio:
258 parser.error('Cannot download a video and extract audio into the same'
259 ' file! Use "{0}.%(ext)s" instead of "{0}" as the output'
260 ' template'.format(outtmpl_default))
261
262 for f in opts.format_sort:
263 if re.match(InfoExtractor.FormatSort.regex, f) is None:
264 parser.error('invalid format sort string "%s" specified' % f)
265
266 if opts.metafromfield is None:
267 opts.metafromfield = []
268 if opts.metafromtitle is not None:
269 opts.metafromfield.append('title:%s' % opts.metafromtitle)
270 for f in opts.metafromfield:
271 if re.match(MetadataFromFieldPP.regex, f) is None:
272 parser.error('invalid format string "%s" specified for --parse-metadata' % f)
273
274 any_getting = opts.geturl or opts.gettitle or opts.getid or opts.getthumbnail or opts.getdescription or opts.getfilename or opts.getformat or opts.getduration or opts.dumpjson or opts.dump_single_json
275 any_printing = opts.print_json
276 download_archive_fn = expand_path(opts.download_archive) if opts.download_archive is not None else opts.download_archive
277
278 # If JSON is not printed anywhere, but comments are requested, save it to file
279 printing_json = opts.dumpjson or opts.print_json or opts.dump_single_json
280 if opts.getcomments and not printing_json:
281 opts.writeinfojson = True
282
283 def report_conflict(arg1, arg2):
284 write_string('WARNING: %s is ignored since %s was given\n' % (arg2, arg1), out=sys.stderr)
285
286 if opts.remuxvideo and opts.recodevideo:
287 report_conflict('--recode-video', '--remux-video')
288 opts.remuxvideo = False
289 if opts.sponskrub_cut and opts.split_chapters and opts.sponskrub is not False:
290 report_conflict('--split-chapter', '--sponskrub-cut')
291 opts.sponskrub_cut = False
292
293 if opts.allow_unplayable_formats:
294 if opts.extractaudio:
295 report_conflict('--allow-unplayable-formats', '--extract-audio')
296 opts.extractaudio = False
297 if opts.remuxvideo:
298 report_conflict('--allow-unplayable-formats', '--remux-video')
299 opts.remuxvideo = False
300 if opts.recodevideo:
301 report_conflict('--allow-unplayable-formats', '--recode-video')
302 opts.recodevideo = False
303 if opts.addmetadata:
304 report_conflict('--allow-unplayable-formats', '--add-metadata')
305 opts.addmetadata = False
306 if opts.embedsubtitles:
307 report_conflict('--allow-unplayable-formats', '--embed-subs')
308 opts.embedsubtitles = False
309 if opts.embedthumbnail:
310 report_conflict('--allow-unplayable-formats', '--embed-thumbnail')
311 opts.embedthumbnail = False
312 if opts.xattrs:
313 report_conflict('--allow-unplayable-formats', '--xattrs')
314 opts.xattrs = False
315 if opts.fixup and opts.fixup.lower() not in ('never', 'ignore'):
316 report_conflict('--allow-unplayable-formats', '--fixup')
317 opts.fixup = 'never'
318 if opts.sponskrub:
319 report_conflict('--allow-unplayable-formats', '--sponskrub')
320 opts.sponskrub = False
321
322 # PostProcessors
323 postprocessors = []
324 if opts.metafromfield:
325 postprocessors.append({
326 'key': 'MetadataFromField',
327 'formats': opts.metafromfield,
328 # Run this immediately after extraction is complete
329 'when': 'pre_process'
330 })
331 if opts.convertsubtitles:
332 postprocessors.append({
333 'key': 'FFmpegSubtitlesConvertor',
334 'format': opts.convertsubtitles,
335 # Run this before the actual video download
336 'when': 'before_dl'
337 })
338 if opts.convertthumbnails:
339 postprocessors.append({
340 'key': 'FFmpegThumbnailsConvertor',
341 'format': opts.convertthumbnails,
342 # Run this before the actual video download
343 'when': 'before_dl'
344 })
345 if opts.extractaudio:
346 postprocessors.append({
347 'key': 'FFmpegExtractAudio',
348 'preferredcodec': opts.audioformat,
349 'preferredquality': opts.audioquality,
350 'nopostoverwrites': opts.nopostoverwrites,
351 })
352 if opts.remuxvideo:
353 postprocessors.append({
354 'key': 'FFmpegVideoRemuxer',
355 'preferedformat': opts.remuxvideo,
356 })
357 if opts.recodevideo:
358 postprocessors.append({
359 'key': 'FFmpegVideoConvertor',
360 'preferedformat': opts.recodevideo,
361 })
362 # FFmpegMetadataPP should be run after FFmpegVideoConvertorPP and
363 # FFmpegExtractAudioPP as containers before conversion may not support
364 # metadata (3gp, webm, etc.)
365 # And this post-processor should be placed before other metadata
366 # manipulating post-processors (FFmpegEmbedSubtitle) to prevent loss of
367 # extra metadata. By default ffmpeg preserves metadata applicable for both
368 # source and target containers. From this point the container won't change,
369 # so metadata can be added here.
370 if opts.addmetadata:
371 postprocessors.append({'key': 'FFmpegMetadata'})
372 if opts.embedsubtitles:
373 already_have_subtitle = opts.writesubtitles
374 postprocessors.append({
375 'key': 'FFmpegEmbedSubtitle',
376 # already_have_subtitle = True prevents the file from being deleted after embedding
377 'already_have_subtitle': already_have_subtitle
378 })
379 if not already_have_subtitle:
380 opts.writesubtitles = True
381 # --all-sub automatically sets --write-sub if --write-auto-sub is not given
382 # this was the old behaviour if only --all-sub was given.
383 if opts.allsubtitles and not opts.writeautomaticsub:
384 opts.writesubtitles = True
385 # This should be above EmbedThumbnail since sponskrub removes the thumbnail attachment
386 # but must be below EmbedSubtitle and FFmpegMetadata
387 # See https://github.com/yt-dlp/yt-dlp/issues/204 , https://github.com/faissaloo/SponSkrub/issues/29
388 # If opts.sponskrub is None, sponskrub is used, but it silently fails if the executable can't be found
389 if opts.sponskrub is not False:
390 postprocessors.append({
391 'key': 'SponSkrub',
392 'path': opts.sponskrub_path,
393 'args': opts.sponskrub_args,
394 'cut': opts.sponskrub_cut,
395 'force': opts.sponskrub_force,
396 'ignoreerror': opts.sponskrub is None,
397 })
398 if opts.embedthumbnail:
399 already_have_thumbnail = opts.writethumbnail or opts.write_all_thumbnails
400 postprocessors.append({
401 'key': 'EmbedThumbnail',
402 # already_have_thumbnail = True prevents the file from being deleted after embedding
403 'already_have_thumbnail': already_have_thumbnail
404 })
405 if not already_have_thumbnail:
406 opts.writethumbnail = True
407 if opts.split_chapters:
408 postprocessors.append({'key': 'FFmpegSplitChapters'})
409 # XAttrMetadataPP should be run after post-processors that may change file contents
410 if opts.xattrs:
411 postprocessors.append({'key': 'XAttrMetadata'})
412 # ExecAfterDownload must be the last PP
413 if opts.exec_cmd:
414 postprocessors.append({
415 'key': 'ExecAfterDownload',
416 'exec_cmd': opts.exec_cmd,
417 # Run this only after the files have been moved to their final locations
418 'when': 'after_move'
419 })
420
421 def report_args_compat(arg, name):
422 write_string(
423 'WARNING: %s given without specifying name. The arguments will be given to all %s\n' % (arg, name),
424 out=sys.stderr)
425 if 'default' in opts.external_downloader_args:
426 report_args_compat('--external-downloader-args', 'external downloaders')
427
428 if 'default-compat' in opts.postprocessor_args and 'default' not in opts.postprocessor_args:
429 report_args_compat('--post-processor-args', 'post-processors')
430 opts.postprocessor_args.setdefault('sponskrub', [])
431 opts.postprocessor_args['default'] = opts.postprocessor_args['default-compat']
432
433 final_ext = (
434 opts.recodevideo
435 or (opts.remuxvideo in REMUX_EXTENSIONS) and opts.remuxvideo
436 or (opts.extractaudio and opts.audioformat != 'best') and opts.audioformat
437 or None)
438
439 match_filter = (
440 None if opts.match_filter is None
441 else match_filter_func(opts.match_filter))
442
443 ydl_opts = {
444 'usenetrc': opts.usenetrc,
445 'username': opts.username,
446 'password': opts.password,
447 'twofactor': opts.twofactor,
448 'videopassword': opts.videopassword,
449 'ap_mso': opts.ap_mso,
450 'ap_username': opts.ap_username,
451 'ap_password': opts.ap_password,
452 'quiet': (opts.quiet or any_getting or any_printing),
453 'no_warnings': opts.no_warnings,
454 'forceurl': opts.geturl,
455 'forcetitle': opts.gettitle,
456 'forceid': opts.getid,
457 'forcethumbnail': opts.getthumbnail,
458 'forcedescription': opts.getdescription,
459 'forceduration': opts.getduration,
460 'forcefilename': opts.getfilename,
461 'forceformat': opts.getformat,
462 'forcejson': opts.dumpjson or opts.print_json,
463 'dump_single_json': opts.dump_single_json,
464 'force_write_download_archive': opts.force_write_download_archive,
465 'simulate': opts.simulate or any_getting,
466 'skip_download': opts.skip_download,
467 'format': opts.format,
468 'allow_unplayable_formats': opts.allow_unplayable_formats,
469 'ignore_no_formats_error': opts.ignore_no_formats_error,
470 'format_sort': opts.format_sort,
471 'format_sort_force': opts.format_sort_force,
472 'allow_multiple_video_streams': opts.allow_multiple_video_streams,
473 'allow_multiple_audio_streams': opts.allow_multiple_audio_streams,
474 'listformats': opts.listformats,
475 'listformats_table': opts.listformats_table,
476 'outtmpl': outtmpl,
477 'outtmpl_na_placeholder': opts.outtmpl_na_placeholder,
478 'paths': opts.paths,
479 'autonumber_size': opts.autonumber_size,
480 'autonumber_start': opts.autonumber_start,
481 'restrictfilenames': opts.restrictfilenames,
482 'windowsfilenames': opts.windowsfilenames,
483 'ignoreerrors': opts.ignoreerrors,
484 'force_generic_extractor': opts.force_generic_extractor,
485 'ratelimit': opts.ratelimit,
486 'overwrites': opts.overwrites,
487 'retries': opts.retries,
488 'fragment_retries': opts.fragment_retries,
489 'extractor_retries': opts.extractor_retries,
490 'skip_unavailable_fragments': opts.skip_unavailable_fragments,
491 'keep_fragments': opts.keep_fragments,
492 'concurrent_fragment_downloads': opts.concurrent_fragment_downloads,
493 'buffersize': opts.buffersize,
494 'noresizebuffer': opts.noresizebuffer,
495 'http_chunk_size': opts.http_chunk_size,
496 'continuedl': opts.continue_dl,
497 'noprogress': opts.noprogress,
498 'progress_with_newline': opts.progress_with_newline,
499 'playliststart': opts.playliststart,
500 'playlistend': opts.playlistend,
501 'playlistreverse': opts.playlist_reverse,
502 'playlistrandom': opts.playlist_random,
503 'noplaylist': opts.noplaylist,
504 'logtostderr': outtmpl_default == '-',
505 'consoletitle': opts.consoletitle,
506 'nopart': opts.nopart,
507 'updatetime': opts.updatetime,
508 'writedescription': opts.writedescription,
509 'writeannotations': opts.writeannotations,
510 'writeinfojson': opts.writeinfojson,
511 'allow_playlist_files': opts.allow_playlist_files,
512 'clean_infojson': opts.clean_infojson,
513 'getcomments': opts.getcomments,
514 'writethumbnail': opts.writethumbnail,
515 'write_all_thumbnails': opts.write_all_thumbnails,
516 'writelink': opts.writelink,
517 'writeurllink': opts.writeurllink,
518 'writewebloclink': opts.writewebloclink,
519 'writedesktoplink': opts.writedesktoplink,
520 'writesubtitles': opts.writesubtitles,
521 'writeautomaticsub': opts.writeautomaticsub,
522 'allsubtitles': opts.allsubtitles,
523 'listsubtitles': opts.listsubtitles,
524 'subtitlesformat': opts.subtitlesformat,
525 'subtitleslangs': opts.subtitleslangs,
526 'matchtitle': decodeOption(opts.matchtitle),
527 'rejecttitle': decodeOption(opts.rejecttitle),
528 'max_downloads': opts.max_downloads,
529 'prefer_free_formats': opts.prefer_free_formats,
530 'trim_file_name': opts.trim_file_name,
531 'verbose': opts.verbose,
532 'dump_intermediate_pages': opts.dump_intermediate_pages,
533 'write_pages': opts.write_pages,
534 'test': opts.test,
535 'keepvideo': opts.keepvideo,
536 'min_filesize': opts.min_filesize,
537 'max_filesize': opts.max_filesize,
538 'min_views': opts.min_views,
539 'max_views': opts.max_views,
540 'daterange': date,
541 'cachedir': opts.cachedir,
542 'youtube_print_sig_code': opts.youtube_print_sig_code,
543 'age_limit': opts.age_limit,
544 'download_archive': download_archive_fn,
545 'break_on_existing': opts.break_on_existing,
546 'break_on_reject': opts.break_on_reject,
547 'cookiefile': opts.cookiefile,
548 'nocheckcertificate': opts.no_check_certificate,
549 'prefer_insecure': opts.prefer_insecure,
550 'proxy': opts.proxy,
551 'socket_timeout': opts.socket_timeout,
552 'bidi_workaround': opts.bidi_workaround,
553 'debug_printtraffic': opts.debug_printtraffic,
554 'prefer_ffmpeg': opts.prefer_ffmpeg,
555 'include_ads': opts.include_ads,
556 'default_search': opts.default_search,
557 'dynamic_mpd': opts.dynamic_mpd,
558 'youtube_include_dash_manifest': opts.youtube_include_dash_manifest,
559 'youtube_include_hls_manifest': opts.youtube_include_hls_manifest,
560 'encoding': opts.encoding,
561 'extract_flat': opts.extract_flat,
562 'mark_watched': opts.mark_watched,
563 'merge_output_format': opts.merge_output_format,
564 'final_ext': final_ext,
565 'postprocessors': postprocessors,
566 'fixup': opts.fixup,
567 'source_address': opts.source_address,
568 'call_home': opts.call_home,
569 'sleep_interval_requests': opts.sleep_interval_requests,
570 'sleep_interval': opts.sleep_interval,
571 'max_sleep_interval': opts.max_sleep_interval,
572 'sleep_interval_subtitles': opts.sleep_interval_subtitles,
573 'external_downloader': opts.external_downloader,
574 'list_thumbnails': opts.list_thumbnails,
575 'playlist_items': opts.playlist_items,
576 'xattr_set_filesize': opts.xattr_set_filesize,
577 'match_filter': match_filter,
578 'no_color': opts.no_color,
579 'ffmpeg_location': opts.ffmpeg_location,
580 'hls_prefer_native': opts.hls_prefer_native,
581 'hls_use_mpegts': opts.hls_use_mpegts,
582 'hls_split_discontinuity': opts.hls_split_discontinuity,
583 'external_downloader_args': opts.external_downloader_args,
584 'postprocessor_args': opts.postprocessor_args,
585 'cn_verification_proxy': opts.cn_verification_proxy,
586 'geo_verification_proxy': opts.geo_verification_proxy,
587 'geo_bypass': opts.geo_bypass,
588 'geo_bypass_country': opts.geo_bypass_country,
589 'geo_bypass_ip_block': opts.geo_bypass_ip_block,
590 # just for deprecation check
591 'autonumber': opts.autonumber if opts.autonumber is True else None,
592 'usetitle': opts.usetitle if opts.usetitle is True else None,
593 }
594
595 with YoutubeDL(ydl_opts) as ydl:
596 actual_use = len(all_urls) or opts.load_info_filename
597
598 # Remove cache dir
599 if opts.rm_cachedir:
600 ydl.cache.remove()
601
602 # Update version
603 if opts.update_self:
604 # If updater returns True, exit. Required for windows
605 if update_self(ydl.to_screen, opts.verbose, ydl._opener):
606 if actual_use:
607 sys.exit('ERROR: The program must exit for the update to complete')
608 sys.exit()
609
610 # Maybe do nothing
611 if not actual_use:
612 if opts.update_self or opts.rm_cachedir:
613 sys.exit()
614
615 ydl.warn_if_short_id(sys.argv[1:] if argv is None else argv)
616 parser.error(
617 'You must provide at least one URL.\n'
618 'Type yt-dlp --help to see a list of all options.')
619
620 try:
621 if opts.load_info_filename is not None:
622 retcode = ydl.download_with_info_file(expand_path(opts.load_info_filename))
623 else:
624 retcode = ydl.download(all_urls)
625 except (MaxDownloadsReached, ExistingVideoReached, RejectedVideoReached):
626 ydl.to_screen('Aborting remaining downloads')
627 retcode = 101
628
629 sys.exit(retcode)
630
631
632 def main(argv=None):
633 try:
634 _real_main(argv)
635 except DownloadError:
636 sys.exit(1)
637 except SameFileError:
638 sys.exit('ERROR: fixed output name but more than one file to download')
639 except KeyboardInterrupt:
640 sys.exit('\nERROR: Interrupted by user')
641
642
643 __all__ = ['main', 'YoutubeDL', 'gen_extractors', 'list_extractors']