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