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