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