f519fae3e4311f4871130c899300d24033fd9119
[youtube-dl] / youtube_dl / __init__.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 from __future__ import unicode_literals
5
6 __license__ = 'Public Domain'
7
8 import codecs
9 import io
10 import os
11 import random
12 import sys
13
14
15 from .options import (
16     parseOpts,
17 )
18 from .compat import (
19     compat_expanduser,
20     compat_getpass,
21     compat_print,
22     workaround_optparse_bug9161,
23 )
24 from .utils import (
25     DateRange,
26     DEFAULT_OUTTMPL,
27     decodeOption,
28     DownloadError,
29     MaxDownloadsReached,
30     preferredencoding,
31     read_batch_urls,
32     SameFileError,
33     setproctitle,
34     std_headers,
35     write_string,
36 )
37 from .update import update_self
38 from .downloader import (
39     FileDownloader,
40 )
41 from .extractor import gen_extractors
42 from .YoutubeDL import YoutubeDL
43 from .postprocessor import (
44     AtomicParsleyPP,
45     FFmpegAudioFixPP,
46     FFmpegMetadataPP,
47     FFmpegVideoConvertor,
48     FFmpegExtractAudioPP,
49     FFmpegEmbedSubtitlePP,
50     XAttrMetadataPP,
51     ExecAfterDownloadPP,
52 )
53
54
55 def _real_main(argv=None):
56     # Compatibility fixes for Windows
57     if sys.platform == 'win32':
58         # https://github.com/rg3/youtube-dl/issues/820
59         codecs.register(lambda name: codecs.lookup('utf-8') if name == 'cp65001' else None)
60
61     workaround_optparse_bug9161()
62
63     setproctitle('youtube-dl')
64
65     parser, opts, args = parseOpts(argv)
66
67     # Set user agent
68     if opts.user_agent is not None:
69         std_headers['User-Agent'] = opts.user_agent
70
71     # Set referer
72     if opts.referer is not None:
73         std_headers['Referer'] = opts.referer
74
75     # Custom HTTP headers
76     if opts.headers is not None:
77         for h in opts.headers:
78             if h.find(':', 1) < 0:
79                 parser.error('wrong header formatting, it should be key:value, not "%s"'%h)
80             key, value = h.split(':', 2)
81             if opts.verbose:
82                 write_string('[debug] Adding header from command line option %s:%s\n'%(key, value))
83             std_headers[key] = value
84
85     # Dump user agent
86     if opts.dump_user_agent:
87         compat_print(std_headers['User-Agent'])
88         sys.exit(0)
89
90     # Batch file verification
91     batch_urls = []
92     if opts.batchfile is not None:
93         try:
94             if opts.batchfile == '-':
95                 batchfd = sys.stdin
96             else:
97                 batchfd = io.open(opts.batchfile, 'r', encoding='utf-8', errors='ignore')
98             batch_urls = read_batch_urls(batchfd)
99             if opts.verbose:
100                 write_string('[debug] Batch file urls: ' + repr(batch_urls) + '\n')
101         except IOError:
102             sys.exit('ERROR: batch file could not be read')
103     all_urls = batch_urls + args
104     all_urls = [url.strip() for url in all_urls]
105     _enc = preferredencoding()
106     all_urls = [url.decode(_enc, 'ignore') if isinstance(url, bytes) else url for url in all_urls]
107
108     extractors = gen_extractors()
109
110     if opts.list_extractors:
111         for ie in sorted(extractors, key=lambda ie: ie.IE_NAME.lower()):
112             compat_print(ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie._WORKING else ''))
113             matchedUrls = [url for url in all_urls if ie.suitable(url)]
114             for mu in matchedUrls:
115                 compat_print('  ' + mu)
116         sys.exit(0)
117     if opts.list_extractor_descriptions:
118         for ie in sorted(extractors, key=lambda ie: ie.IE_NAME.lower()):
119             if not ie._WORKING:
120                 continue
121             desc = getattr(ie, 'IE_DESC', ie.IE_NAME)
122             if desc is False:
123                 continue
124             if hasattr(ie, 'SEARCH_KEY'):
125                 _SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny')
126                 _COUNTS = ('', '5', '10', 'all')
127                 desc += ' (Example: "%s%s:%s" )' % (ie.SEARCH_KEY, random.choice(_COUNTS), random.choice(_SEARCHES))
128             compat_print(desc)
129         sys.exit(0)
130
131
132     # Conflicting, missing and erroneous options
133     if opts.usenetrc and (opts.username is not None or opts.password is not None):
134         parser.error('using .netrc conflicts with giving username/password')
135     if opts.password is not None and opts.username is None:
136         parser.error('account username missing\n')
137     if opts.outtmpl is not None and (opts.usetitle or opts.autonumber or opts.useid):
138         parser.error('using output template conflicts with using title, video ID or auto number')
139     if opts.usetitle and opts.useid:
140         parser.error('using title conflicts with using video ID')
141     if opts.username is not None and opts.password is None:
142         opts.password = compat_getpass('Type account password and press [Return]: ')
143     if opts.ratelimit is not None:
144         numeric_limit = FileDownloader.parse_bytes(opts.ratelimit)
145         if numeric_limit is None:
146             parser.error('invalid rate limit specified')
147         opts.ratelimit = numeric_limit
148     if opts.min_filesize is not None:
149         numeric_limit = FileDownloader.parse_bytes(opts.min_filesize)
150         if numeric_limit is None:
151             parser.error('invalid min_filesize specified')
152         opts.min_filesize = numeric_limit
153     if opts.max_filesize is not None:
154         numeric_limit = FileDownloader.parse_bytes(opts.max_filesize)
155         if numeric_limit is None:
156             parser.error('invalid max_filesize specified')
157         opts.max_filesize = numeric_limit
158     if opts.retries is not None:
159         try:
160             opts.retries = int(opts.retries)
161         except (TypeError, ValueError):
162             parser.error('invalid retry count specified')
163     if opts.buffersize is not None:
164         numeric_buffersize = FileDownloader.parse_bytes(opts.buffersize)
165         if numeric_buffersize is None:
166             parser.error('invalid buffer size specified')
167         opts.buffersize = numeric_buffersize
168     if opts.playliststart <= 0:
169         raise ValueError('Playlist start must be positive')
170     if opts.playlistend not in (-1, None) and opts.playlistend < opts.playliststart:
171         raise ValueError('Playlist end must be greater than playlist start')
172     if opts.extractaudio:
173         if opts.audioformat not in ['best', 'aac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav']:
174             parser.error('invalid audio format specified')
175     if opts.audioquality:
176         opts.audioquality = opts.audioquality.strip('k').strip('K')
177         if not opts.audioquality.isdigit():
178             parser.error('invalid audio quality specified')
179     if opts.recodevideo is not None:
180         if opts.recodevideo not in ['mp4', 'flv', 'webm', 'ogg', 'mkv']:
181             parser.error('invalid video recode format specified')
182     if opts.date is not None:
183         date = DateRange.day(opts.date)
184     else:
185         date = DateRange(opts.dateafter, opts.datebefore)
186
187     # Do not download videos when there are audio-only formats
188     if opts.extractaudio and not opts.keepvideo and opts.format is None:
189         opts.format = 'bestaudio/best'
190
191     # --all-sub automatically sets --write-sub if --write-auto-sub is not given
192     # this was the old behaviour if only --all-sub was given.
193     if opts.allsubtitles and (opts.writeautomaticsub == False):
194         opts.writesubtitles = True
195
196     if sys.version_info < (3,):
197         # In Python 2, sys.argv is a bytestring (also note http://bugs.python.org/issue2128 for Windows systems)
198         if opts.outtmpl is not None:
199             opts.outtmpl = opts.outtmpl.decode(preferredencoding())
200     outtmpl =((opts.outtmpl is not None and opts.outtmpl)
201             or (opts.format == '-1' and opts.usetitle and '%(title)s-%(id)s-%(format)s.%(ext)s')
202             or (opts.format == '-1' and '%(id)s-%(format)s.%(ext)s')
203             or (opts.usetitle and opts.autonumber and '%(autonumber)s-%(title)s-%(id)s.%(ext)s')
204             or (opts.usetitle and '%(title)s-%(id)s.%(ext)s')
205             or (opts.useid and '%(id)s.%(ext)s')
206             or (opts.autonumber and '%(autonumber)s-%(id)s.%(ext)s')
207             or DEFAULT_OUTTMPL)
208     if not os.path.splitext(outtmpl)[1] and opts.extractaudio:
209         parser.error('Cannot download a video and extract audio into the same'
210                      ' file! Use "{0}.%(ext)s" instead of "{0}" as the output'
211                      ' template'.format(outtmpl))
212
213     any_printing = 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
214     download_archive_fn = compat_expanduser(opts.download_archive) if opts.download_archive is not None else opts.download_archive
215
216     ydl_opts = {
217         'usenetrc': opts.usenetrc,
218         'username': opts.username,
219         'password': opts.password,
220         'twofactor': opts.twofactor,
221         'videopassword': opts.videopassword,
222         'quiet': (opts.quiet or any_printing),
223         'no_warnings': opts.no_warnings,
224         'forceurl': opts.geturl,
225         'forcetitle': opts.gettitle,
226         'forceid': opts.getid,
227         'forcethumbnail': opts.getthumbnail,
228         'forcedescription': opts.getdescription,
229         'forceduration': opts.getduration,
230         'forcefilename': opts.getfilename,
231         'forceformat': opts.getformat,
232         'forcejson': opts.dumpjson,
233         'dump_single_json': opts.dump_single_json,
234         'simulate': opts.simulate or any_printing,
235         'skip_download': opts.skip_download,
236         'format': opts.format,
237         'format_limit': opts.format_limit,
238         'listformats': opts.listformats,
239         'outtmpl': outtmpl,
240         'autonumber_size': opts.autonumber_size,
241         'restrictfilenames': opts.restrictfilenames,
242         'ignoreerrors': opts.ignoreerrors,
243         'ratelimit': opts.ratelimit,
244         'nooverwrites': opts.nooverwrites,
245         'retries': opts.retries,
246         'buffersize': opts.buffersize,
247         'noresizebuffer': opts.noresizebuffer,
248         'continuedl': opts.continue_dl,
249         'noprogress': opts.noprogress,
250         'progress_with_newline': opts.progress_with_newline,
251         'playliststart': opts.playliststart,
252         'playlistend': opts.playlistend,
253         'noplaylist': opts.noplaylist,
254         'logtostderr': opts.outtmpl == '-',
255         'consoletitle': opts.consoletitle,
256         'nopart': opts.nopart,
257         'updatetime': opts.updatetime,
258         'writedescription': opts.writedescription,
259         'writeannotations': opts.writeannotations,
260         'writeinfojson': opts.writeinfojson,
261         'writethumbnail': opts.writethumbnail,
262         'writesubtitles': opts.writesubtitles,
263         'writeautomaticsub': opts.writeautomaticsub,
264         'allsubtitles': opts.allsubtitles,
265         'listsubtitles': opts.listsubtitles,
266         'subtitlesformat': opts.subtitlesformat,
267         'subtitleslangs': opts.subtitleslangs,
268         'matchtitle': decodeOption(opts.matchtitle),
269         'rejecttitle': decodeOption(opts.rejecttitle),
270         'max_downloads': opts.max_downloads,
271         'prefer_free_formats': opts.prefer_free_formats,
272         'verbose': opts.verbose,
273         'dump_intermediate_pages': opts.dump_intermediate_pages,
274         'write_pages': opts.write_pages,
275         'test': opts.test,
276         'keepvideo': opts.keepvideo,
277         'min_filesize': opts.min_filesize,
278         'max_filesize': opts.max_filesize,
279         'min_views': opts.min_views,
280         'max_views': opts.max_views,
281         'daterange': date,
282         'cachedir': opts.cachedir,
283         'youtube_print_sig_code': opts.youtube_print_sig_code,
284         'age_limit': opts.age_limit,
285         'download_archive': download_archive_fn,
286         'cookiefile': opts.cookiefile,
287         'nocheckcertificate': opts.no_check_certificate,
288         'prefer_insecure': opts.prefer_insecure,
289         'proxy': opts.proxy,
290         'socket_timeout': opts.socket_timeout,
291         'bidi_workaround': opts.bidi_workaround,
292         'debug_printtraffic': opts.debug_printtraffic,
293         'prefer_ffmpeg': opts.prefer_ffmpeg,
294         'include_ads': opts.include_ads,
295         'default_search': opts.default_search,
296         'youtube_include_dash_manifest': opts.youtube_include_dash_manifest,
297         'encoding': opts.encoding,
298         'exec_cmd': opts.exec_cmd,
299         'extract_flat': opts.extract_flat,
300     }
301
302     with YoutubeDL(ydl_opts) as ydl:
303         # PostProcessors
304         # Add the metadata pp first, the other pps will copy it
305         if opts.addmetadata:
306             ydl.add_post_processor(FFmpegMetadataPP())
307         if opts.extractaudio:
308             ydl.add_post_processor(FFmpegExtractAudioPP(preferredcodec=opts.audioformat, preferredquality=opts.audioquality, nopostoverwrites=opts.nopostoverwrites))
309         if opts.recodevideo:
310             ydl.add_post_processor(FFmpegVideoConvertor(preferedformat=opts.recodevideo))
311         if opts.embedsubtitles:
312             ydl.add_post_processor(FFmpegEmbedSubtitlePP(subtitlesformat=opts.subtitlesformat))
313         if opts.xattrs:
314             ydl.add_post_processor(XAttrMetadataPP())
315         if opts.embedthumbnail:
316             if not opts.addmetadata:
317                 ydl.add_post_processor(FFmpegAudioFixPP())
318             ydl.add_post_processor(AtomicParsleyPP())
319
320
321         # Please keep ExecAfterDownload towards the bottom as it allows the user to modify the final file in any way.
322         # So if the user is able to remove the file before your postprocessor runs it might cause a few problems.
323         if opts.exec_cmd:
324             ydl.add_post_processor(ExecAfterDownloadPP(
325                 verboseOutput=opts.verbose, exec_cmd=opts.exec_cmd))
326
327         # Update version
328         if opts.update_self:
329             update_self(ydl.to_screen, opts.verbose)
330
331         # Remove cache dir
332         if opts.rm_cachedir:
333             ydl.cache.remove()
334
335         # Maybe do nothing
336         if (len(all_urls) < 1) and (opts.load_info_filename is None):
337             if opts.update_self or opts.rm_cachedir:
338                 sys.exit()
339
340             ydl.warn_if_short_id(sys.argv[1:] if argv is None else argv)
341             parser.error('you must provide at least one URL')
342
343         try:
344             if opts.load_info_filename is not None:
345                 retcode = ydl.download_with_info_file(opts.load_info_filename)
346             else:
347                 retcode = ydl.download(all_urls)
348         except MaxDownloadsReached:
349             ydl.to_screen('--max-download limit reached, aborting.')
350             retcode = 101
351
352     sys.exit(retcode)
353
354
355 def main(argv=None):
356     try:
357         _real_main(argv)
358     except DownloadError:
359         sys.exit(1)
360     except SameFileError:
361         sys.exit('ERROR: fixed output name but more than one file to download')
362     except KeyboardInterrupt:
363         sys.exit('\nERROR: Interrupted by user')