]> jfr.im git - yt-dlp.git/blame - yt_dlp/__init__.py
Native concurrent downloading of fragments (#166)
[yt-dlp.git] / yt_dlp / __init__.py
CommitLineData
235b3ba4 1#!/usr/bin/env python
dcdb292f 2# coding: utf-8
235b3ba4 3
a4bc4336
PH
4from __future__ import unicode_literals
5
235b3ba4 6__license__ = 'Public Domain'
235b3ba4 7
0d94f247 8import codecs
8f563f32 9import io
235b3ba4 10import os
0f818663 11import random
43820c03 12import re
235b3ba4 13import sys
235b3ba4 14
c496ca96 15
2daabe49
PH
16from .options import (
17 parseOpts,
18)
8c25f81b 19from .compat import (
e68301af 20 compat_getpass,
e07e9313 21 workaround_optparse_bug9161,
8c25f81b
PH
22)
23from .utils import (
a4fd0415
PH
24 DateRange,
25 decodeOption,
a4fd0415 26 DownloadError,
8b0d7497 27 ExistingVideoReached,
590bc6f6 28 expand_path,
347de493 29 match_filter_func,
a4fd0415 30 MaxDownloadsReached,
a4fd0415 31 preferredencoding,
62e609ab 32 read_batch_urls,
8b0d7497 33 RejectedVideoReached,
df692c5a 34 REMUX_EXTENSIONS,
35 render_table,
a4fd0415 36 SameFileError,
e3946f98 37 setproctitle,
a4fd0415
PH
38 std_headers,
39 write_string,
a4fd0415 40)
d5ed35b6 41from .update import update_self
92a86f4c 42from .downloader import (
a4fd0415
PH
43 FileDownloader,
44)
2bad0e5d 45from .extractor import gen_extractors, list_extractors
eb8a4433 46from .extractor.common import InfoExtractor
1b6712ab 47from .extractor.adobepass import MSO_INFO
5bfa4862 48from .postprocessor.metadatafromfield import MetadataFromFieldPP
8222d8de 49from .YoutubeDL import YoutubeDL
a4fd0415 50
235b3ba4 51
b8ad4f02 52def _real_main(argv=None):
0d94f247
PH
53 # Compatibility fixes for Windows
54 if sys.platform == 'win32':
067aa17e 55 # https://github.com/ytdl-org/youtube-dl/issues/820
0d94f247
PH
56 codecs.register(lambda name: codecs.lookup('utf-8') if name == 'cp65001' else None)
57
e07e9313
PH
58 workaround_optparse_bug9161()
59
7a5c1cfe 60 setproctitle('yt-dlp')
e3946f98 61
b8ad4f02 62 parser, opts, args = parseOpts(argv)
59ae15a5 63
59ae15a5
PH
64 # Set user agent
65 if opts.user_agent is not None:
66 std_headers['User-Agent'] = opts.user_agent
1865ed31 67
28535652
BH
68 # Set referer
69 if opts.referer is not None:
70 std_headers['Referer'] = opts.referer
59ae15a5 71
410afb20 72 # Custom HTTP headers
45016689 73 std_headers.update(opts.headers)
410afb20 74
59ae15a5
PH
75 # Dump user agent
76 if opts.dump_user_agent:
7b0d1c28 77 write_string(std_headers['User-Agent'] + '\n', out=sys.stdout)
59ae15a5
PH
78 sys.exit(0)
79
80 # Batch file verification
62e609ab 81 batch_urls = []
59ae15a5
PH
82 if opts.batchfile is not None:
83 try:
84 if opts.batchfile == '-':
85 batchfd = sys.stdin
86 else:
e2eca6f6 87 batchfd = io.open(
590bc6f6 88 expand_path(opts.batchfile),
e2eca6f6 89 'r', encoding='utf-8', errors='ignore')
62e609ab 90 batch_urls = read_batch_urls(batchfd)
05afc96b 91 if opts.verbose:
a4bc4336 92 write_string('[debug] Batch file urls: ' + repr(batch_urls) + '\n')
59ae15a5 93 except IOError:
826dcff9 94 sys.exit('ERROR: batch file %s could not be read' % opts.batchfile)
b2fc1c4f 95 all_urls = batch_urls + [url.strip() for url in args] # batch_urls are already striped in read_batch_urls
c774b3c6 96 _enc = preferredencoding()
41292a38 97 all_urls = [url.decode(_enc, 'ignore') if isinstance(url, bytes) else url for url in all_urls]
59ae15a5 98
59ae15a5 99 if opts.list_extractors:
05900629 100 for ie in list_extractors(opts.age_limit):
7b0d1c28 101 write_string(ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie._WORKING else '') + '\n', out=sys.stdout)
1a2c3c0f 102 matchedUrls = [url for url in all_urls if ie.suitable(url)]
59ae15a5 103 for mu in matchedUrls:
7b0d1c28 104 write_string(' ' + mu + '\n', out=sys.stdout)
59ae15a5 105 sys.exit(0)
0f818663 106 if opts.list_extractor_descriptions:
05900629 107 for ie in list_extractors(opts.age_limit):
0f818663
PH
108 if not ie._WORKING:
109 continue
110 desc = getattr(ie, 'IE_DESC', ie.IE_NAME)
15870e90
PH
111 if desc is False:
112 continue
0f818663 113 if hasattr(ie, 'SEARCH_KEY'):
50a0f6df 114 _SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
a4bc4336
PH
115 _COUNTS = ('', '5', '10', 'all')
116 desc += ' (Example: "%s%s:%s" )' % (ie.SEARCH_KEY, random.choice(_COUNTS), random.choice(_SEARCHES))
7b0d1c28 117 write_string(desc + '\n', out=sys.stdout)
0f818663 118 sys.exit(0)
87148bb7 119 if opts.ap_list_mso:
1b6712ab 120 table = [[mso_id, mso_info['name']] for mso_id, mso_info in MSO_INFO.items()]
797c636b 121 write_string('Supported TV Providers:\n' + render_table(['mso', 'mso name'], table) + '\n', out=sys.stdout)
1b6712ab 122 sys.exit(0)
0f818663 123
59ae15a5
PH
124 # Conflicting, missing and erroneous options
125 if opts.usenetrc and (opts.username is not None or opts.password is not None):
a4bc4336 126 parser.error('using .netrc conflicts with giving username/password')
59ae15a5 127 if opts.password is not None and opts.username is None:
a4bc4336 128 parser.error('account username missing\n')
1b6712ab
RA
129 if opts.ap_password is not None and opts.ap_username is None:
130 parser.error('TV Provider account username missing\n')
59ae15a5 131 if opts.outtmpl is not None and (opts.usetitle or opts.autonumber or opts.useid):
a4bc4336 132 parser.error('using output template conflicts with using title, video ID or auto number')
1a241a2d
S
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')
59ae15a5 139 if opts.usetitle and opts.useid:
a4bc4336 140 parser.error('using title conflicts with using video ID')
59ae15a5 141 if opts.username is not None and opts.password is None:
a4bc4336 142 opts.password = compat_getpass('Type account password and press [Return]: ')
1b6712ab
RA
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]: ')
59ae15a5
PH
145 if opts.ratelimit is not None:
146 numeric_limit = FileDownloader.parse_bytes(opts.ratelimit)
147 if numeric_limit is None:
a4bc4336 148 parser.error('invalid rate limit specified')
59ae15a5 149 opts.ratelimit = numeric_limit
9e982f9e
JC
150 if opts.min_filesize is not None:
151 numeric_limit = FileDownloader.parse_bytes(opts.min_filesize)
152 if numeric_limit is None:
a4bc4336 153 parser.error('invalid min_filesize specified')
9e982f9e
JC
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:
a4bc4336 158 parser.error('invalid max_filesize specified')
9e982f9e 159 opts.max_filesize = numeric_limit
065bc354 160 if opts.sleep_interval is not None:
161 if opts.sleep_interval < 0:
1ad6b891
S
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')
050afa60
JZ
166 if opts.sleep_interval is None:
167 parser.error('min sleep interval must be specified, use --min-sleep-interval')
1ad6b891
S
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
1cf376f5 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')
797c636b 178 if opts.ap_mso and opts.ap_mso not in MSO_INFO:
87148bb7 179 parser.error('Unsupported TV Provider, use --ap-list-mso to get a list of supported TV Providers')
0c3d0f51 180 if opts.overwrites:
181 # --yes-overwrites implies --no-continue
182 opts.continue_dl = False
4cf1e5d2 183 if opts.concurrent_fragment_downloads <= 0:
184 raise ValueError('Concurrent fragments must be positive')
52bb437e 185
62bff2c1 186 def parse_retries(retries, name=''):
52bb437e
S
187 if retries in ('inf', 'infinite'):
188 parsed_retries = float('inf')
baeaeffc
PH
189 else:
190 try:
52bb437e 191 parsed_retries = int(retries)
baeaeffc 192 except (TypeError, ValueError):
62bff2c1 193 parser.error('invalid %sretry count specified' % name)
52bb437e
S
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:
62bff2c1 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 ')
59ae15a5
PH
201 if opts.buffersize is not None:
202 numeric_buffersize = FileDownloader.parse_bytes(opts.buffersize)
203 if numeric_buffersize is None:
a4bc4336 204 parser.error('invalid buffer size specified')
59ae15a5 205 opts.buffersize = numeric_buffersize
ba515388
S
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
a19fd00c 211 if opts.playliststart <= 0:
a4bc4336 212 raise ValueError('Playlist start must be positive')
a19fd00c 213 if opts.playlistend not in (-1, None) and opts.playlistend < opts.playliststart:
a4bc4336 214 raise ValueError('Playlist end must be greater than playlist start')
59ae15a5 215 if opts.extractaudio:
21bfcd3d 216 if opts.audioformat not in ['best', 'aac', 'flac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav']:
a4bc4336 217 parser.error('invalid audio format specified')
59ae15a5
PH
218 if opts.audioquality:
219 opts.audioquality = opts.audioquality.strip('k').strip('K')
220 if not opts.audioquality.isdigit():
a4bc4336 221 parser.error('invalid audio quality specified')
7851b379 222 if opts.recodevideo is not None:
df692c5a 223 if opts.recodevideo not in REMUX_EXTENSIONS:
a4bc4336 224 parser.error('invalid video recode format specified')
17912249 225 if opts.remuxvideo is not None:
df692c5a 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):
17912249 229 parser.error('invalid video remux format specified')
e9fade72 230 if opts.convertsubtitles is not None:
8c289530 231 if opts.convertsubtitles not in ['srt', 'vtt', 'ass', 'lrc']:
e9fade72 232 parser.error('invalid subtitle format specified')
bd1a281e 233
bd558525
JMF
234 if opts.date is not None:
235 date = DateRange.day(opts.date)
236 else:
237 date = DateRange(opts.dateafter, opts.datebefore)
59ae15a5 238
de3ef3ed
PH
239 # Do not download videos when there are audio-only formats
240 if opts.extractaudio and not opts.keepvideo and opts.format is None:
241 opts.format = 'bestaudio/best'
242
de6000d9 243 outtmpl = opts.outtmpl
244 if not outtmpl:
245 outtmpl = {'default': (
246 '%(title)s-%(id)s-%(format)s.%(ext)s' if opts.format == '-1' and opts.usetitle
247 else '%(id)s-%(format)s.%(ext)s' if opts.format == '-1'
248 else '%(autonumber)s-%(title)s-%(id)s.%(ext)s' if opts.usetitle and opts.autonumber
249 else '%(title)s-%(id)s.%(ext)s' if opts.usetitle
250 else '%(id)s.%(ext)s' if opts.useid
251 else '%(autonumber)s-%(id)s.%(ext)s' if opts.autonumber
252 else None)}
253 outtmpl_default = outtmpl.get('default')
254 if outtmpl_default is not None and not os.path.splitext(outtmpl_default)[1] and opts.extractaudio:
a4bc4336
PH
255 parser.error('Cannot download a video and extract audio into the same'
256 ' file! Use "{0}.%(ext)s" instead of "{0}" as the output'
de6000d9 257 ' template'.format(outtmpl_default))
0202b52a 258
eb8a4433 259 for f in opts.format_sort:
260 if re.match(InfoExtractor.FormatSort.regex, f) is None:
261 parser.error('invalid format sort string "%s" specified' % f)
29c7a63d 262
5bfa4862 263 if opts.metafromfield is None:
264 opts.metafromfield = []
265 if opts.metafromtitle is not None:
266 opts.metafromfield.append('title:%s' % opts.metafromtitle)
267 for f in opts.metafromfield:
268 if re.match(MetadataFromFieldPP.regex, f) is None:
269 parser.error('invalid format string "%s" specified for --parse-metadata' % f)
270
c0bdf32a
PH
271 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
272 any_printing = opts.print_json
590bc6f6 273 download_archive_fn = expand_path(opts.download_archive) if opts.download_archive is not None else opts.download_archive
525ef922 274
f0884c8b 275 # If JSON is not printed anywhere, but comments are requested, save it to file
276 printing_json = opts.dumpjson or opts.print_json or opts.dump_single_json
277 if opts.getcomments and not printing_json:
278 opts.writeinfojson = True
279
63ad4d43 280 def report_conflict(arg1, arg2):
281 write_string('WARNING: %s is ignored since %s was given\n' % (arg2, arg1), out=sys.stderr)
282 if opts.remuxvideo and opts.recodevideo:
283 report_conflict('--recode-video', '--remux-video')
284 opts.remuxvideo = False
285 if opts.allow_unplayable_formats:
286 if opts.extractaudio:
287 report_conflict('--allow-unplayable-formats', '--extract-audio')
288 opts.extractaudio = False
289 if opts.remuxvideo:
290 report_conflict('--allow-unplayable-formats', '--remux-video')
291 opts.remuxvideo = False
292 if opts.recodevideo:
293 report_conflict('--allow-unplayable-formats', '--recode-video')
294 opts.recodevideo = False
295 if opts.addmetadata:
296 report_conflict('--allow-unplayable-formats', '--add-metadata')
297 opts.addmetadata = False
298 if opts.embedsubtitles:
299 report_conflict('--allow-unplayable-formats', '--embed-subs')
300 opts.embedsubtitles = False
301 if opts.embedthumbnail:
302 report_conflict('--allow-unplayable-formats', '--embed-thumbnail')
303 opts.embedthumbnail = False
304 if opts.xattrs:
305 report_conflict('--allow-unplayable-formats', '--xattrs')
306 opts.xattrs = False
307 if opts.fixup and opts.fixup.lower() not in ('never', 'ignore'):
308 report_conflict('--allow-unplayable-formats', '--fixup')
309 opts.fixup = 'never'
310 if opts.sponskrub:
311 report_conflict('--allow-unplayable-formats', '--sponskrub')
312 opts.sponskrub = False
313
4f026faf
PH
314 # PostProcessors
315 postprocessors = []
5bfa4862 316 if opts.metafromfield:
e7db87f7 317 postprocessors.append({
5bfa4862 318 'key': 'MetadataFromField',
319 'formats': opts.metafromfield,
320 'when': 'beforedl'
e7db87f7 321 })
4f026faf
PH
322 if opts.extractaudio:
323 postprocessors.append({
324 'key': 'FFmpegExtractAudio',
325 'preferredcodec': opts.audioformat,
326 'preferredquality': opts.audioquality,
327 'nopostoverwrites': opts.nopostoverwrites,
328 })
efe87a10
FS
329 if opts.remuxvideo:
330 postprocessors.append({
331 'key': 'FFmpegVideoRemuxer',
332 'preferedformat': opts.remuxvideo,
333 })
4f026faf
PH
334 if opts.recodevideo:
335 postprocessors.append({
336 'key': 'FFmpegVideoConvertor',
337 'preferedformat': opts.recodevideo,
338 })
4605c94d
YCH
339 # FFmpegMetadataPP should be run after FFmpegVideoConvertorPP and
340 # FFmpegExtractAudioPP as containers before conversion may not support
341 # metadata (3gp, webm, etc.)
342 # And this post-processor should be placed before other metadata
343 # manipulating post-processors (FFmpegEmbedSubtitle) to prevent loss of
344 # extra metadata. By default ffmpeg preserves metadata applicable for both
345 # source and target containers. From this point the container won't change,
346 # so metadata can be added here.
347 if opts.addmetadata:
348 postprocessors.append({'key': 'FFmpegMetadata'})
e9fade72
JMF
349 if opts.convertsubtitles:
350 postprocessors.append({
351 'key': 'FFmpegSubtitlesConvertor',
352 'format': opts.convertsubtitles,
353 })
4f026faf 354 if opts.embedsubtitles:
cffab0ee 355 already_have_subtitle = opts.writesubtitles
4f026faf
PH
356 postprocessors.append({
357 'key': 'FFmpegEmbedSubtitle',
cffab0ee 358 'already_have_subtitle': already_have_subtitle
4f026faf 359 })
cffab0ee 360 if not already_have_subtitle:
361 opts.writesubtitles = True
362 # --all-sub automatically sets --write-sub if --write-auto-sub is not given
363 # this was the old behaviour if only --all-sub was given.
364 if opts.allsubtitles and not opts.writeautomaticsub:
365 opts.writesubtitles = True
4f026faf 366 if opts.embedthumbnail:
8e595397
YCH
367 already_have_thumbnail = opts.writethumbnail or opts.write_all_thumbnails
368 postprocessors.append({
369 'key': 'EmbedThumbnail',
370 'already_have_thumbnail': already_have_thumbnail
371 })
372 if not already_have_thumbnail:
373 opts.writethumbnail = True
b19e275d
YCH
374 # XAttrMetadataPP should be run after post-processors that may change file
375 # contents
376 if opts.xattrs:
377 postprocessors.append({'key': 'XAttrMetadata'})
a9e7f546 378 # This should be below all ffmpeg PP because it may cut parts out from the video
379 # If opts.sponskrub is None, sponskrub is used, but it silently fails if the executable can't be found
380 if opts.sponskrub is not False:
381 postprocessors.append({
382 'key': 'SponSkrub',
383 'path': opts.sponskrub_path,
384 'args': opts.sponskrub_args,
385 'cut': opts.sponskrub_cut,
386 'force': opts.sponskrub_force,
387 'ignoreerror': opts.sponskrub is None,
388 })
0202b52a 389 # ExecAfterDownload must be the last PP
4f026faf
PH
390 if opts.exec_cmd:
391 postprocessors.append({
392 'key': 'ExecAfterDownload',
4f026faf 393 'exec_cmd': opts.exec_cmd,
5bfa4862 394 'when': 'aftermove'
4f026faf 395 })
1b77b347 396
06869367 397 def report_args_compat(arg, name):
398 write_string(
399 'WARNING: %s given without specifying name. The arguments will be given to all %s\n' % (arg, name),
400 out=sys.stderr)
b8f6bbe6 401 if 'default' in opts.external_downloader_args:
06869367 402 report_args_compat('--external-downloader-args', 'external downloaders')
b8f6bbe6 403
45016689 404 if 'default-compat' in opts.postprocessor_args and 'default' not in opts.postprocessor_args:
06869367 405 report_args_compat('--post-processor-args', 'post-processors')
45016689 406 opts.postprocessor_args.setdefault('sponskrub', [])
407 opts.postprocessor_args['default'] = opts.postprocessor_args['default-compat']
1b77b347 408
df692c5a 409 final_ext = (
410 opts.recodevideo
411 or (opts.remuxvideo in REMUX_EXTENSIONS) and opts.remuxvideo
412 or (opts.extractaudio and opts.audioformat != 'best') and opts.audioformat
413 or None)
f6d7624f 414
347de493
PH
415 match_filter = (
416 None if opts.match_filter is None
417 else match_filter_func(opts.match_filter))
4f026faf 418
bdde425c 419 ydl_opts = {
57df9f53 420 'convertsubtitles': opts.convertsubtitles,
59ae15a5
PH
421 'usenetrc': opts.usenetrc,
422 'username': opts.username,
423 'password': opts.password,
83317f69 424 'twofactor': opts.twofactor,
c6c19746 425 'videopassword': opts.videopassword,
797c636b 426 'ap_mso': opts.ap_mso,
1b6712ab
RA
427 'ap_username': opts.ap_username,
428 'ap_password': opts.ap_password,
c0bdf32a 429 'quiet': (opts.quiet or any_getting or any_printing),
ad8915b7 430 'no_warnings': opts.no_warnings,
59ae15a5
PH
431 'forceurl': opts.geturl,
432 'forcetitle': opts.gettitle,
1a2adf3f 433 'forceid': opts.getid,
59ae15a5
PH
434 'forcethumbnail': opts.getthumbnail,
435 'forcedescription': opts.getdescription,
525ef922 436 'forceduration': opts.getduration,
59ae15a5
PH
437 'forcefilename': opts.getfilename,
438 'forceformat': opts.getformat,
c0bdf32a 439 'forcejson': opts.dumpjson or opts.print_json,
63e0be34 440 'dump_single_json': opts.dump_single_json,
2d30509f 441 'force_write_download_archive': opts.force_write_download_archive,
c0bdf32a 442 'simulate': opts.simulate or any_getting,
1bdeb7be 443 'skip_download': opts.skip_download,
59ae15a5 444 'format': opts.format,
63ad4d43 445 'allow_unplayable_formats': opts.allow_unplayable_formats,
eb8a4433 446 'format_sort': opts.format_sort,
447 'format_sort_force': opts.format_sort_force,
909d24dd 448 'allow_multiple_video_streams': opts.allow_multiple_video_streams,
449 'allow_multiple_audio_streams': opts.allow_multiple_audio_streams,
59ae15a5 450 'listformats': opts.listformats,
76d321f6 451 'listformats_table': opts.listformats_table,
5cb9c312 452 'outtmpl': outtmpl,
a820dc72 453 'outtmpl_na_placeholder': opts.outtmpl_na_placeholder,
0202b52a 454 'paths': opts.paths,
213c31ae 455 'autonumber_size': opts.autonumber_size,
acbb2374 456 'autonumber_start': opts.autonumber_start,
59ae15a5 457 'restrictfilenames': opts.restrictfilenames,
c2934512 458 'windowsfilenames': opts.windowsfilenames,
59ae15a5 459 'ignoreerrors': opts.ignoreerrors,
d22dec74 460 'force_generic_extractor': opts.force_generic_extractor,
59ae15a5 461 'ratelimit': opts.ratelimit,
0c3d0f51 462 'overwrites': opts.overwrites,
52bb437e
S
463 'retries': opts.retries,
464 'fragment_retries': opts.fragment_retries,
62bff2c1 465 'extractor_retries': opts.extractor_retries,
9603b660 466 'skip_unavailable_fragments': opts.skip_unavailable_fragments,
0eee52f3 467 'keep_fragments': opts.keep_fragments,
4cf1e5d2 468 'concurrent_fragment_downloads': opts.concurrent_fragment_downloads,
59ae15a5
PH
469 'buffersize': opts.buffersize,
470 'noresizebuffer': opts.noresizebuffer,
ba515388 471 'http_chunk_size': opts.http_chunk_size,
59ae15a5
PH
472 'continuedl': opts.continue_dl,
473 'noprogress': opts.noprogress,
5717d91a 474 'progress_with_newline': opts.progress_with_newline,
59ae15a5
PH
475 'playliststart': opts.playliststart,
476 'playlistend': opts.playlistend,
ff815fe6 477 'playlistreverse': opts.playlist_reverse,
75822ca7 478 'playlistrandom': opts.playlist_random,
47192f92 479 'noplaylist': opts.noplaylist,
de6000d9 480 'logtostderr': outtmpl_default == '-',
59ae15a5
PH
481 'consoletitle': opts.consoletitle,
482 'nopart': opts.nopart,
483 'updatetime': opts.updatetime,
484 'writedescription': opts.writedescription,
1fb07d10 485 'writeannotations': opts.writeannotations,
f0884c8b 486 'writeinfojson': opts.writeinfojson,
1ea24129 487 'allow_playlist_files': opts.allow_playlist_files,
06167fbb 488 'getcomments': opts.getcomments,
11d9224e 489 'writethumbnail': opts.writethumbnail,
ec82d85a 490 'write_all_thumbnails': opts.write_all_thumbnails,
732044af 491 'writelink': opts.writelink,
492 'writeurllink': opts.writeurllink,
493 'writewebloclink': opts.writewebloclink,
494 'writedesktoplink': opts.writedesktoplink,
59ae15a5 495 'writesubtitles': opts.writesubtitles,
b004821f 496 'writeautomaticsub': opts.writeautomaticsub,
ae608b80 497 'allsubtitles': opts.allsubtitles,
2a4093ea 498 'listsubtitles': opts.listsubtitles,
9e62bc44 499 'subtitlesformat': opts.subtitlesformat,
d6e203b3 500 'subtitleslangs': opts.subtitleslangs,
8271226a
PH
501 'matchtitle': decodeOption(opts.matchtitle),
502 'rejecttitle': decodeOption(opts.rejecttitle),
59ae15a5
PH
503 'max_downloads': opts.max_downloads,
504 'prefer_free_formats': opts.prefer_free_formats,
bdc3fd2f 505 'trim_file_name': opts.trim_file_name,
59ae15a5 506 'verbose': opts.verbose,
855703e5 507 'dump_intermediate_pages': opts.dump_intermediate_pages,
d41e6efc 508 'write_pages': opts.write_pages,
8d5d3a5d 509 'test': opts.test,
7851b379 510 'keepvideo': opts.keepvideo,
9e982f9e 511 'min_filesize': opts.min_filesize,
bd558525 512 'max_filesize': opts.max_filesize,
5fe18bdb
PH
513 'min_views': opts.min_views,
514 'max_views': opts.max_views,
11d9224e 515 'daterange': date,
7f747732 516 'cachedir': opts.cachedir,
f8061589 517 'youtube_print_sig_code': opts.youtube_print_sig_code,
8dbe9899 518 'age_limit': opts.age_limit,
17093b83 519 'download_archive': download_archive_fn,
ea6e0c2b 520 'break_on_existing': opts.break_on_existing,
8b0d7497 521 'break_on_reject': opts.break_on_reject,
dca08720
PH
522 'cookiefile': opts.cookiefile,
523 'nocheckcertificate': opts.no_check_certificate,
7e8c0af0 524 'prefer_insecure': opts.prefer_insecure,
c2e52508 525 'proxy': opts.proxy,
6ad14cab 526 'socket_timeout': opts.socket_timeout,
0783b09b 527 'bidi_workaround': opts.bidi_workaround,
a0ddb8a2 528 'debug_printtraffic': opts.debug_printtraffic,
76b1bd67 529 'prefer_ffmpeg': opts.prefer_ffmpeg,
7b0817e8 530 'include_ads': opts.include_ads,
04b4d394 531 'default_search': opts.default_search,
78895bd3 532 'dynamic_mpd': opts.dynamic_mpd,
4919603f 533 'youtube_include_dash_manifest': opts.youtube_include_dash_manifest,
78895bd3 534 'youtube_include_hls_manifest': opts.youtube_include_hls_manifest,
62fec3b2 535 'encoding': opts.encoding,
057a5206 536 'extract_flat': opts.extract_flat,
d77ab8e2 537 'mark_watched': opts.mark_watched,
34c781a2 538 'merge_output_format': opts.merge_output_format,
df692c5a 539 'final_ext': final_ext,
4f026faf 540 'postprocessors': postprocessors,
6271f1ca 541 'fixup': opts.fixup,
be4a824d 542 'source_address': opts.source_address,
58b1f00d 543 'call_home': opts.call_home,
1cf376f5 544 'sleep_interval_requests': opts.sleep_interval_requests,
5f0d813d 545 'sleep_interval': opts.sleep_interval,
065bc354 546 'max_sleep_interval': opts.max_sleep_interval,
0c9df79e 547 'sleep_interval_subtitles': opts.sleep_interval_subtitles,
222516d9 548 'external_downloader': opts.external_downloader,
cfb56d1a 549 'list_thumbnails': opts.list_thumbnails,
c14e88f0 550 'playlist_items': opts.playlist_items,
881e6a1f 551 'xattr_set_filesize': opts.xattr_set_filesize,
347de493 552 'match_filter': match_filter,
7e5db8c9 553 'no_color': opts.no_color,
73fac4e9 554 'ffmpeg_location': opts.ffmpeg_location,
85729c51 555 'hls_prefer_native': opts.hls_prefer_native,
7d106a65 556 'hls_use_mpegts': opts.hls_use_mpegts,
310c2ed2 557 'hls_split_discontinuity': opts.hls_split_discontinuity,
46ee996e 558 'external_downloader_args': opts.external_downloader_args,
45016689 559 'postprocessor_args': opts.postprocessor_args,
91410c9b 560 'cn_verification_proxy': opts.cn_verification_proxy,
38cce791 561 'geo_verification_proxy': opts.geo_verification_proxy,
0a840f58
S
562 'geo_bypass': opts.geo_bypass,
563 'geo_bypass_country': opts.geo_bypass_country,
5f95927a 564 'geo_bypass_ip_block': opts.geo_bypass_ip_block,
be5df5ee
S
565 # just for deprecation check
566 'autonumber': opts.autonumber if opts.autonumber is True else None,
567 'usetitle': opts.usetitle if opts.usetitle is True else None,
bdde425c 568 }
59ae15a5 569
bdde425c 570 with YoutubeDL(ydl_opts) as ydl:
e5813e53 571 actual_use = len(all_urls) or opts.load_info_filename
bdde425c 572
052421ff
PH
573 # Remove cache dir
574 if opts.rm_cachedir:
a0e07d31 575 ydl.cache.remove()
052421ff 576
e5813e53 577 # Update version
578 if opts.update_self:
579 # If updater returns True, exit. Required for windows
580 if update_self(ydl.to_screen, opts.verbose, ydl._opener):
581 if actual_use:
6b027907 582 sys.exit('ERROR: The program must exit for the update to complete')
e5813e53 583 sys.exit()
584
bdde425c 585 # Maybe do nothing
e5813e53 586 if not actual_use:
7d4111ed 587 if opts.update_self or opts.rm_cachedir:
bdde425c 588 sys.exit()
59ae15a5 589
7d4111ed 590 ydl.warn_if_short_id(sys.argv[1:] if argv is None else argv)
adc0ae3c
PH
591 parser.error(
592 'You must provide at least one URL.\n'
7a5c1cfe 593 'Type yt-dlp --help to see a list of all options.')
7d4111ed 594
bdde425c 595 try:
1dcc4c0c 596 if opts.load_info_filename is not None:
590bc6f6 597 retcode = ydl.download_with_info_file(expand_path(opts.load_info_filename))
1dcc4c0c
JMF
598 else:
599 retcode = ydl.download(all_urls)
8b0d7497 600 except (MaxDownloadsReached, ExistingVideoReached, RejectedVideoReached):
601 ydl.to_screen('Aborting remaining downloads')
bdde425c 602 retcode = 101
59ae15a5 603
59ae15a5 604 sys.exit(retcode)
235b3ba4 605
a27b9e8b 606
b8ad4f02 607def main(argv=None):
59ae15a5 608 try:
b8ad4f02 609 _real_main(argv)
59ae15a5
PH
610 except DownloadError:
611 sys.exit(1)
612 except SameFileError:
a4bc4336 613 sys.exit('ERROR: fixed output name but more than one file to download')
59ae15a5 614 except KeyboardInterrupt:
a4bc4336 615 sys.exit('\nERROR: Interrupted by user')
2bad0e5d 616
582be358 617
2bad0e5d 618__all__ = ['main', 'YoutubeDL', 'gen_extractors', 'list_extractors']