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