]> jfr.im git - yt-dlp.git/blame - youtube_dl/__init__.py
[YoutubeDL] Fix PEP8 W503
[yt-dlp.git] / youtube_dl / __init__.py
CommitLineData
235b3ba4
PH
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
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
c75f0b36 12import shlex
235b3ba4 13import sys
235b3ba4 14
c496ca96 15
2daabe49
PH
16from .options import (
17 parseOpts,
18)
8c25f81b 19from .compat import (
4644ac55 20 compat_expanduser,
e68301af 21 compat_getpass,
a4fd0415 22 compat_print,
e07e9313 23 workaround_optparse_bug9161,
8c25f81b
PH
24)
25from .utils import (
a4fd0415
PH
26 DateRange,
27 decodeOption,
347de493 28 DEFAULT_OUTTMPL,
a4fd0415 29 DownloadError,
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,
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
8222d8de 44from .YoutubeDL import YoutubeDL
a4fd0415 45
235b3ba4 46
b8ad4f02 47def _real_main(argv=None):
0d94f247
PH
48 # Compatibility fixes for Windows
49 if sys.platform == 'win32':
50 # https://github.com/rg3/youtube-dl/issues/820
51 codecs.register(lambda name: codecs.lookup('utf-8') if name == 'cp65001' else None)
52
e07e9313
PH
53 workaround_optparse_bug9161()
54
a4bc4336 55 setproctitle('youtube-dl')
e3946f98 56
b8ad4f02 57 parser, opts, args = parseOpts(argv)
59ae15a5 58
59ae15a5
PH
59 # Set user agent
60 if opts.user_agent is not None:
61 std_headers['User-Agent'] = opts.user_agent
1865ed31 62
28535652
BH
63 # Set referer
64 if opts.referer is not None:
65 std_headers['Referer'] = opts.referer
59ae15a5 66
410afb20
AA
67 # Custom HTTP headers
68 if opts.headers is not None:
69 for h in opts.headers:
70 if h.find(':', 1) < 0:
8bcc8756 71 parser.error('wrong header formatting, it should be key:value, not "%s"' % h)
410afb20
AA
72 key, value = h.split(':', 2)
73 if opts.verbose:
8bcc8756 74 write_string('[debug] Adding header from command line option %s:%s\n' % (key, value))
410afb20
AA
75 std_headers[key] = value
76
59ae15a5
PH
77 # Dump user agent
78 if opts.dump_user_agent:
93eb15c5 79 compat_print(std_headers['User-Agent'])
59ae15a5
PH
80 sys.exit(0)
81
82 # Batch file verification
62e609ab 83 batch_urls = []
59ae15a5
PH
84 if opts.batchfile is not None:
85 try:
86 if opts.batchfile == '-':
87 batchfd = sys.stdin
88 else:
62e609ab
PH
89 batchfd = io.open(opts.batchfile, 'r', encoding='utf-8', errors='ignore')
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:
a4bc4336 94 sys.exit('ERROR: batch file could not be read')
62e609ab 95 all_urls = batch_urls + args
59ae15a5 96 all_urls = [url.strip() for url in all_urls]
c774b3c6 97 _enc = preferredencoding()
41292a38 98 all_urls = [url.decode(_enc, 'ignore') if isinstance(url, bytes) else url for url in all_urls]
59ae15a5 99
59ae15a5 100 if opts.list_extractors:
05900629 101 for ie in list_extractors(opts.age_limit):
93eb15c5 102 compat_print(ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie._WORKING else ''))
1a2c3c0f 103 matchedUrls = [url for url in all_urls if ie.suitable(url)]
59ae15a5 104 for mu in matchedUrls:
a4bc4336 105 compat_print(' ' + mu)
59ae15a5 106 sys.exit(0)
0f818663 107 if opts.list_extractor_descriptions:
05900629 108 for ie in list_extractors(opts.age_limit):
0f818663
PH
109 if not ie._WORKING:
110 continue
111 desc = getattr(ie, 'IE_DESC', ie.IE_NAME)
15870e90
PH
112 if desc is False:
113 continue
0f818663 114 if hasattr(ie, 'SEARCH_KEY'):
50a0f6df 115 _SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
a4bc4336
PH
116 _COUNTS = ('', '5', '10', 'all')
117 desc += ' (Example: "%s%s:%s" )' % (ie.SEARCH_KEY, random.choice(_COUNTS), random.choice(_SEARCHES))
0f818663
PH
118 compat_print(desc)
119 sys.exit(0)
120
59ae15a5
PH
121 # Conflicting, missing and erroneous options
122 if opts.usenetrc and (opts.username is not None or opts.password is not None):
a4bc4336 123 parser.error('using .netrc conflicts with giving username/password')
59ae15a5 124 if opts.password is not None and opts.username is None:
a4bc4336 125 parser.error('account username missing\n')
59ae15a5 126 if opts.outtmpl is not None and (opts.usetitle or opts.autonumber or opts.useid):
a4bc4336 127 parser.error('using output template conflicts with using title, video ID or auto number')
59ae15a5 128 if opts.usetitle and opts.useid:
a4bc4336 129 parser.error('using title conflicts with using video ID')
59ae15a5 130 if opts.username is not None and opts.password is None:
a4bc4336 131 opts.password = compat_getpass('Type account password and press [Return]: ')
59ae15a5
PH
132 if opts.ratelimit is not None:
133 numeric_limit = FileDownloader.parse_bytes(opts.ratelimit)
134 if numeric_limit is None:
a4bc4336 135 parser.error('invalid rate limit specified')
59ae15a5 136 opts.ratelimit = numeric_limit
9e982f9e
JC
137 if opts.min_filesize is not None:
138 numeric_limit = FileDownloader.parse_bytes(opts.min_filesize)
139 if numeric_limit is None:
a4bc4336 140 parser.error('invalid min_filesize specified')
9e982f9e
JC
141 opts.min_filesize = numeric_limit
142 if opts.max_filesize is not None:
143 numeric_limit = FileDownloader.parse_bytes(opts.max_filesize)
144 if numeric_limit is None:
a4bc4336 145 parser.error('invalid max_filesize specified')
9e982f9e 146 opts.max_filesize = numeric_limit
59ae15a5 147 if opts.retries is not None:
baeaeffc
PH
148 if opts.retries in ('inf', 'infinite'):
149 opts_retries = float('inf')
150 else:
151 try:
152 opts_retries = int(opts.retries)
153 except (TypeError, ValueError):
154 parser.error('invalid retry count specified')
59ae15a5
PH
155 if opts.buffersize is not None:
156 numeric_buffersize = FileDownloader.parse_bytes(opts.buffersize)
157 if numeric_buffersize is None:
a4bc4336 158 parser.error('invalid buffer size specified')
59ae15a5 159 opts.buffersize = numeric_buffersize
a19fd00c 160 if opts.playliststart <= 0:
a4bc4336 161 raise ValueError('Playlist start must be positive')
a19fd00c 162 if opts.playlistend not in (-1, None) and opts.playlistend < opts.playliststart:
a4bc4336 163 raise ValueError('Playlist end must be greater than playlist start')
59ae15a5 164 if opts.extractaudio:
510e6f6d 165 if opts.audioformat not in ['best', 'aac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav']:
a4bc4336 166 parser.error('invalid audio format specified')
59ae15a5
PH
167 if opts.audioquality:
168 opts.audioquality = opts.audioquality.strip('k').strip('K')
169 if not opts.audioquality.isdigit():
a4bc4336 170 parser.error('invalid audio quality specified')
7851b379 171 if opts.recodevideo is not None:
b7d73595 172 if opts.recodevideo not in ['mp4', 'flv', 'webm', 'ogg', 'mkv']:
a4bc4336 173 parser.error('invalid video recode format specified')
e9fade72
JMF
174 if opts.convertsubtitles is not None:
175 if opts.convertsubtitles not in ['srt', 'vtt', 'ass']:
176 parser.error('invalid subtitle format specified')
bd1a281e 177
bd558525
JMF
178 if opts.date is not None:
179 date = DateRange.day(opts.date)
180 else:
181 date = DateRange(opts.dateafter, opts.datebefore)
59ae15a5 182
de3ef3ed
PH
183 # Do not download videos when there are audio-only formats
184 if opts.extractaudio and not opts.keepvideo and opts.format is None:
185 opts.format = 'bestaudio/best'
186
0b7f3118
JMF
187 # --all-sub automatically sets --write-sub if --write-auto-sub is not given
188 # this was the old behaviour if only --all-sub was given.
b74e86f4 189 if opts.allsubtitles and not opts.writeautomaticsub:
0b7f3118
JMF
190 opts.writesubtitles = True
191
8fb3ac36
PH
192 outtmpl = ((opts.outtmpl is not None and opts.outtmpl) or
193 (opts.format == '-1' and opts.usetitle and '%(title)s-%(id)s-%(format)s.%(ext)s') or
194 (opts.format == '-1' and '%(id)s-%(format)s.%(ext)s') or
195 (opts.usetitle and opts.autonumber and '%(autonumber)s-%(title)s-%(id)s.%(ext)s') or
196 (opts.usetitle and '%(title)s-%(id)s.%(ext)s') or
197 (opts.useid and '%(id)s.%(ext)s') or
198 (opts.autonumber and '%(autonumber)s-%(id)s.%(ext)s') or
199 DEFAULT_OUTTMPL)
dca02c80 200 if not os.path.splitext(outtmpl)[1] and opts.extractaudio:
a4bc4336
PH
201 parser.error('Cannot download a video and extract audio into the same'
202 ' file! Use "{0}.%(ext)s" instead of "{0}" as the output'
203 ' template'.format(outtmpl))
29c7a63d 204
c0bdf32a
PH
205 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
206 any_printing = opts.print_json
4644ac55 207 download_archive_fn = compat_expanduser(opts.download_archive) if opts.download_archive is not None else opts.download_archive
525ef922 208
4f026faf
PH
209 # PostProcessors
210 postprocessors = []
211 # Add the metadata pp first, the other pps will copy it
e7db87f7 212 if opts.metafromtitle:
213 postprocessors.append({
214 'key': 'MetadataFromTitle',
215 'titleformat': opts.metafromtitle
216 })
4f026faf
PH
217 if opts.addmetadata:
218 postprocessors.append({'key': 'FFmpegMetadata'})
219 if opts.extractaudio:
220 postprocessors.append({
221 'key': 'FFmpegExtractAudio',
222 'preferredcodec': opts.audioformat,
223 'preferredquality': opts.audioquality,
224 'nopostoverwrites': opts.nopostoverwrites,
225 })
226 if opts.recodevideo:
227 postprocessors.append({
228 'key': 'FFmpegVideoConvertor',
229 'preferedformat': opts.recodevideo,
230 })
e9fade72
JMF
231 if opts.convertsubtitles:
232 postprocessors.append({
233 'key': 'FFmpegSubtitlesConvertor',
234 'format': opts.convertsubtitles,
235 })
4f026faf
PH
236 if opts.embedsubtitles:
237 postprocessors.append({
238 'key': 'FFmpegEmbedSubtitle',
4f026faf
PH
239 })
240 if opts.xattrs:
241 postprocessors.append({'key': 'XAttrMetadata'})
242 if opts.embedthumbnail:
ddbed364 243 postprocessors.append({'key': 'EmbedThumbnail'})
4f026faf
PH
244 # Please keep ExecAfterDownload towards the bottom as it allows the user to modify the final file in any way.
245 # So if the user is able to remove the file before your postprocessor runs it might cause a few problems.
246 if opts.exec_cmd:
247 postprocessors.append({
248 'key': 'ExecAfterDownload',
4f026faf
PH
249 'exec_cmd': opts.exec_cmd,
250 })
881e6a1f
PH
251 if opts.xattr_set_filesize:
252 try:
253 import xattr
cc1237f4 254 xattr # Confuse flake8
881e6a1f
PH
255 except ImportError:
256 parser.error('setting filesize xattr requested but python-xattr is not available')
c75f0b36
PH
257 external_downloader_args = None
258 if opts.external_downloader_args:
259 external_downloader_args = shlex.split(opts.external_downloader_args)
347de493
PH
260 match_filter = (
261 None if opts.match_filter is None
262 else match_filter_func(opts.match_filter))
4f026faf 263
bdde425c 264 ydl_opts = {
59ae15a5
PH
265 'usenetrc': opts.usenetrc,
266 'username': opts.username,
267 'password': opts.password,
83317f69 268 'twofactor': opts.twofactor,
c6c19746 269 'videopassword': opts.videopassword,
c0bdf32a 270 'quiet': (opts.quiet or any_getting or any_printing),
ad8915b7 271 'no_warnings': opts.no_warnings,
59ae15a5
PH
272 'forceurl': opts.geturl,
273 'forcetitle': opts.gettitle,
1a2adf3f 274 'forceid': opts.getid,
59ae15a5
PH
275 'forcethumbnail': opts.getthumbnail,
276 'forcedescription': opts.getdescription,
525ef922 277 'forceduration': opts.getduration,
59ae15a5
PH
278 'forcefilename': opts.getfilename,
279 'forceformat': opts.getformat,
c0bdf32a 280 'forcejson': opts.dumpjson or opts.print_json,
63e0be34 281 'dump_single_json': opts.dump_single_json,
c0bdf32a 282 'simulate': opts.simulate or any_getting,
1bdeb7be 283 'skip_download': opts.skip_download,
59ae15a5 284 'format': opts.format,
59ae15a5 285 'listformats': opts.listformats,
5cb9c312 286 'outtmpl': outtmpl,
213c31ae 287 'autonumber_size': opts.autonumber_size,
59ae15a5
PH
288 'restrictfilenames': opts.restrictfilenames,
289 'ignoreerrors': opts.ignoreerrors,
290 'ratelimit': opts.ratelimit,
291 'nooverwrites': opts.nooverwrites,
baeaeffc 292 'retries': opts_retries,
59ae15a5
PH
293 'buffersize': opts.buffersize,
294 'noresizebuffer': opts.noresizebuffer,
295 'continuedl': opts.continue_dl,
296 'noprogress': opts.noprogress,
5717d91a 297 'progress_with_newline': opts.progress_with_newline,
59ae15a5
PH
298 'playliststart': opts.playliststart,
299 'playlistend': opts.playlistend,
ff815fe6 300 'playlistreverse': opts.playlist_reverse,
47192f92 301 'noplaylist': opts.noplaylist,
59ae15a5
PH
302 'logtostderr': opts.outtmpl == '-',
303 'consoletitle': opts.consoletitle,
304 'nopart': opts.nopart,
305 'updatetime': opts.updatetime,
306 'writedescription': opts.writedescription,
1fb07d10 307 'writeannotations': opts.writeannotations,
59ae15a5 308 'writeinfojson': opts.writeinfojson,
11d9224e 309 'writethumbnail': opts.writethumbnail,
ec82d85a 310 'write_all_thumbnails': opts.write_all_thumbnails,
59ae15a5 311 'writesubtitles': opts.writesubtitles,
b004821f 312 'writeautomaticsub': opts.writeautomaticsub,
ae608b80 313 'allsubtitles': opts.allsubtitles,
2a4093ea 314 'listsubtitles': opts.listsubtitles,
9e62bc44 315 'subtitlesformat': opts.subtitlesformat,
d6e203b3 316 'subtitleslangs': opts.subtitleslangs,
8271226a
PH
317 'matchtitle': decodeOption(opts.matchtitle),
318 'rejecttitle': decodeOption(opts.rejecttitle),
59ae15a5
PH
319 'max_downloads': opts.max_downloads,
320 'prefer_free_formats': opts.prefer_free_formats,
321 'verbose': opts.verbose,
855703e5 322 'dump_intermediate_pages': opts.dump_intermediate_pages,
d41e6efc 323 'write_pages': opts.write_pages,
8d5d3a5d 324 'test': opts.test,
7851b379 325 'keepvideo': opts.keepvideo,
9e982f9e 326 'min_filesize': opts.min_filesize,
bd558525 327 'max_filesize': opts.max_filesize,
5fe18bdb
PH
328 'min_views': opts.min_views,
329 'max_views': opts.max_views,
11d9224e 330 'daterange': date,
7f747732 331 'cachedir': opts.cachedir,
f8061589 332 'youtube_print_sig_code': opts.youtube_print_sig_code,
8dbe9899 333 'age_limit': opts.age_limit,
17093b83 334 'download_archive': download_archive_fn,
dca08720
PH
335 'cookiefile': opts.cookiefile,
336 'nocheckcertificate': opts.no_check_certificate,
7e8c0af0 337 'prefer_insecure': opts.prefer_insecure,
c2e52508 338 'proxy': opts.proxy,
6ad14cab 339 'socket_timeout': opts.socket_timeout,
0783b09b 340 'bidi_workaround': opts.bidi_workaround,
a0ddb8a2 341 'debug_printtraffic': opts.debug_printtraffic,
76b1bd67 342 'prefer_ffmpeg': opts.prefer_ffmpeg,
7b0817e8 343 'include_ads': opts.include_ads,
04b4d394 344 'default_search': opts.default_search,
4919603f 345 'youtube_include_dash_manifest': opts.youtube_include_dash_manifest,
62fec3b2 346 'encoding': opts.encoding,
057a5206 347 'extract_flat': opts.extract_flat,
34c781a2 348 'merge_output_format': opts.merge_output_format,
4f026faf 349 'postprocessors': postprocessors,
6271f1ca 350 'fixup': opts.fixup,
be4a824d 351 'source_address': opts.source_address,
58b1f00d 352 'call_home': opts.call_home,
5f0d813d 353 'sleep_interval': opts.sleep_interval,
222516d9 354 'external_downloader': opts.external_downloader,
cfb56d1a 355 'list_thumbnails': opts.list_thumbnails,
c14e88f0 356 'playlist_items': opts.playlist_items,
881e6a1f 357 'xattr_set_filesize': opts.xattr_set_filesize,
347de493 358 'match_filter': match_filter,
7e5db8c9 359 'no_color': opts.no_color,
73fac4e9 360 'ffmpeg_location': opts.ffmpeg_location,
85729c51 361 'hls_prefer_native': opts.hls_prefer_native,
c75f0b36 362 'external_downloader_args': external_downloader_args,
91410c9b 363 'cn_verification_proxy': opts.cn_verification_proxy,
bdde425c 364 }
59ae15a5 365
bdde425c 366 with YoutubeDL(ydl_opts) as ydl:
bdde425c
PH
367 # Update version
368 if opts.update_self:
369 update_self(ydl.to_screen, opts.verbose)
370
052421ff
PH
371 # Remove cache dir
372 if opts.rm_cachedir:
a0e07d31 373 ydl.cache.remove()
052421ff 374
bdde425c 375 # Maybe do nothing
1dcc4c0c 376 if (len(all_urls) < 1) and (opts.load_info_filename is None):
7d4111ed 377 if opts.update_self or opts.rm_cachedir:
bdde425c 378 sys.exit()
59ae15a5 379
7d4111ed 380 ydl.warn_if_short_id(sys.argv[1:] if argv is None else argv)
adc0ae3c
PH
381 parser.error(
382 'You must provide at least one URL.\n'
383 'Type youtube-dl --help to see a list of all options.')
7d4111ed 384
bdde425c 385 try:
1dcc4c0c
JMF
386 if opts.load_info_filename is not None:
387 retcode = ydl.download_with_info_file(opts.load_info_filename)
388 else:
389 retcode = ydl.download(all_urls)
bdde425c 390 except MaxDownloadsReached:
a4bc4336 391 ydl.to_screen('--max-download limit reached, aborting.')
bdde425c 392 retcode = 101
59ae15a5 393
59ae15a5 394 sys.exit(retcode)
235b3ba4 395
a27b9e8b 396
b8ad4f02 397def main(argv=None):
59ae15a5 398 try:
b8ad4f02 399 _real_main(argv)
59ae15a5
PH
400 except DownloadError:
401 sys.exit(1)
402 except SameFileError:
a4bc4336 403 sys.exit('ERROR: fixed output name but more than one file to download')
59ae15a5 404 except KeyboardInterrupt:
a4bc4336 405 sys.exit('\nERROR: Interrupted by user')
2bad0e5d
PH
406
407__all__ = ['main', 'YoutubeDL', 'gen_extractors', 'list_extractors']