f84b866df8695739731e3179f67152cf0eacf475
[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_shlex_split,
22     workaround_optparse_bug9161,
23 )
24 from .utils import (
25     DateRange,
26     decodeOption,
27     DEFAULT_OUTTMPL,
28     DownloadError,
29     match_filter_func,
30     MaxDownloadsReached,
31     preferredencoding,
32     read_batch_urls,
33     SameFileError,
34     setproctitle,
35     std_headers,
36     write_string,
37     render_table,
38 )
39 from .update import update_self
40 from .downloader import (
41     FileDownloader,
42 )
43 from .extractor import gen_extractors, list_extractors
44 from .extractor.adobepass import MSO_INFO
45 from .YoutubeDL import YoutubeDL
46
47
48 def _real_main(argv=None):
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
54     workaround_optparse_bug9161()
55
56     setproctitle('youtube-dl')
57
58     parser, opts, args = parseOpts(argv)
59
60     # Set user agent
61     if opts.user_agent is not None:
62         std_headers['User-Agent'] = opts.user_agent
63
64     # Set referer
65     if opts.referer is not None:
66         std_headers['Referer'] = opts.referer
67
68     # Custom HTTP headers
69     if opts.headers is not None:
70         for h in opts.headers:
71             if ':' not in h:
72                 parser.error('wrong header formatting, it should be key:value, not "%s"' % h)
73             key, value = h.split(':', 1)
74             if opts.verbose:
75                 write_string('[debug] Adding header from command line option %s:%s\n' % (key, value))
76             std_headers[key] = value
77
78     # Dump user agent
79     if opts.dump_user_agent:
80         write_string(std_headers['User-Agent'] + '\n', out=sys.stdout)
81         sys.exit(0)
82
83     # Batch file verification
84     batch_urls = []
85     if opts.batchfile is not None:
86         try:
87             if opts.batchfile == '-':
88                 batchfd = sys.stdin
89             else:
90                 batchfd = io.open(
91                     compat_expanduser(opts.batchfile),
92                     'r', encoding='utf-8', errors='ignore')
93             batch_urls = read_batch_urls(batchfd)
94             if opts.verbose:
95                 write_string('[debug] Batch file urls: ' + repr(batch_urls) + '\n')
96         except IOError:
97             sys.exit('ERROR: batch file could not be read')
98     all_urls = batch_urls + args
99     all_urls = [url.strip() for url in all_urls]
100     _enc = preferredencoding()
101     all_urls = [url.decode(_enc, 'ignore') if isinstance(url, bytes) else url for url in all_urls]
102
103     if opts.list_extractors:
104         for ie in list_extractors(opts.age_limit):
105             write_string(ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie._WORKING else '') + '\n', out=sys.stdout)
106             matchedUrls = [url for url in all_urls if ie.suitable(url)]
107             for mu in matchedUrls:
108                 write_string('  ' + mu + '\n', out=sys.stdout)
109         sys.exit(0)
110     if opts.list_extractor_descriptions:
111         for ie in list_extractors(opts.age_limit):
112             if not ie._WORKING:
113                 continue
114             desc = getattr(ie, 'IE_DESC', ie.IE_NAME)
115             if desc is False:
116                 continue
117             if hasattr(ie, 'SEARCH_KEY'):
118                 _SEARCHES = ('cute kittens', 'slithering pythons', 'falling cat', 'angry poodle', 'purple fish', 'running tortoise', 'sleeping bunny', 'burping cow')
119                 _COUNTS = ('', '5', '10', 'all')
120                 desc += ' (Example: "%s%s:%s" )' % (ie.SEARCH_KEY, random.choice(_COUNTS), random.choice(_SEARCHES))
121             write_string(desc + '\n', out=sys.stdout)
122         sys.exit(0)
123     if opts.ap_list_mso:
124         table = [[mso_id, mso_info['name']] for mso_id, mso_info in MSO_INFO.items()]
125         write_string('Supported TV Providers:\n' + render_table(['mso', 'mso name'], table) + '\n', out=sys.stdout)
126         sys.exit(0)
127
128     # Conflicting, missing and erroneous options
129     if opts.usenetrc and (opts.username is not None or opts.password is not None):
130         parser.error('using .netrc conflicts with giving username/password')
131     if opts.password is not None and opts.username is None:
132         parser.error('account username missing\n')
133     if opts.ap_password is not None and opts.ap_username is None:
134         parser.error('TV Provider account username missing\n')
135     if opts.outtmpl is not None and (opts.usetitle or opts.autonumber or opts.useid):
136         parser.error('using output template conflicts with using title, video ID or auto number')
137     if opts.usetitle and opts.useid:
138         parser.error('using title conflicts with using video ID')
139     if opts.username is not None and opts.password is None:
140         opts.password = compat_getpass('Type account password and press [Return]: ')
141     if opts.ap_username is not None and opts.ap_password is None:
142         opts.ap_password = compat_getpass('Type TV provider 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.sleep_interval is not None:
159         if opts.sleep_interval < 0:
160             parser.error('sleep interval must be positive or 0')
161     if opts.max_sleep_interval is not None:
162         if opts.max_sleep_interval < 0:
163             parser.error('max sleep interval must be positive or 0')
164         if opts.max_sleep_interval < opts.sleep_interval:
165             parser.error('max sleep interval must be greater than or equal to min sleep interval')
166     else:
167         opts.max_sleep_interval = opts.sleep_interval
168     if opts.ap_mso and opts.ap_mso not in MSO_INFO:
169         parser.error('Unsupported TV Provider, use --ap-list-mso to get a list of supported TV Providers')
170
171     def parse_retries(retries):
172         if retries in ('inf', 'infinite'):
173             parsed_retries = float('inf')
174         else:
175             try:
176                 parsed_retries = int(retries)
177             except (TypeError, ValueError):
178                 parser.error('invalid retry count specified')
179         return parsed_retries
180     if opts.retries is not None:
181         opts.retries = parse_retries(opts.retries)
182     if opts.fragment_retries is not None:
183         opts.fragment_retries = parse_retries(opts.fragment_retries)
184     if opts.buffersize is not None:
185         numeric_buffersize = FileDownloader.parse_bytes(opts.buffersize)
186         if numeric_buffersize is None:
187             parser.error('invalid buffer size specified')
188         opts.buffersize = numeric_buffersize
189     if opts.playliststart <= 0:
190         raise ValueError('Playlist start must be positive')
191     if opts.playlistend not in (-1, None) and opts.playlistend < opts.playliststart:
192         raise ValueError('Playlist end must be greater than playlist start')
193     if opts.extractaudio:
194         if opts.audioformat not in ['best', 'aac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav']:
195             parser.error('invalid audio format specified')
196     if opts.audioquality:
197         opts.audioquality = opts.audioquality.strip('k').strip('K')
198         if not opts.audioquality.isdigit():
199             parser.error('invalid audio quality specified')
200     if opts.recodevideo is not None:
201         if opts.recodevideo not in ['mp4', 'flv', 'webm', 'ogg', 'mkv', 'avi']:
202             parser.error('invalid video recode format specified')
203     if opts.convertsubtitles is not None:
204         if opts.convertsubtitles not in ['srt', 'vtt', 'ass']:
205             parser.error('invalid subtitle format specified')
206
207     if opts.date is not None:
208         date = DateRange.day(opts.date)
209     else:
210         date = DateRange(opts.dateafter, opts.datebefore)
211
212     # Do not download videos when there are audio-only formats
213     if opts.extractaudio and not opts.keepvideo and opts.format is None:
214         opts.format = 'bestaudio/best'
215
216     # --all-sub automatically sets --write-sub if --write-auto-sub is not given
217     # this was the old behaviour if only --all-sub was given.
218     if opts.allsubtitles and not opts.writeautomaticsub:
219         opts.writesubtitles = True
220
221     outtmpl = ((opts.outtmpl is not None and opts.outtmpl) or
222                (opts.format == '-1' and opts.usetitle and '%(title)s-%(id)s-%(format)s.%(ext)s') or
223                (opts.format == '-1' and '%(id)s-%(format)s.%(ext)s') or
224                (opts.usetitle and opts.autonumber and '%(autonumber)s-%(title)s-%(id)s.%(ext)s') or
225                (opts.usetitle and '%(title)s-%(id)s.%(ext)s') or
226                (opts.useid and '%(id)s.%(ext)s') or
227                (opts.autonumber and '%(autonumber)s-%(id)s.%(ext)s') or
228                DEFAULT_OUTTMPL)
229     if not os.path.splitext(outtmpl)[1] and opts.extractaudio:
230         parser.error('Cannot download a video and extract audio into the same'
231                      ' file! Use "{0}.%(ext)s" instead of "{0}" as the output'
232                      ' template'.format(outtmpl))
233
234     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
235     any_printing = opts.print_json
236     download_archive_fn = compat_expanduser(opts.download_archive) if opts.download_archive is not None else opts.download_archive
237
238     # PostProcessors
239     postprocessors = []
240     # Add the metadata pp first, the other pps will copy it
241     if opts.metafromtitle:
242         postprocessors.append({
243             'key': 'MetadataFromTitle',
244             'titleformat': opts.metafromtitle
245         })
246     if opts.addmetadata:
247         postprocessors.append({'key': 'FFmpegMetadata'})
248     if opts.extractaudio:
249         postprocessors.append({
250             'key': 'FFmpegExtractAudio',
251             'preferredcodec': opts.audioformat,
252             'preferredquality': opts.audioquality,
253             'nopostoverwrites': opts.nopostoverwrites,
254         })
255     if opts.recodevideo:
256         postprocessors.append({
257             'key': 'FFmpegVideoConvertor',
258             'preferedformat': opts.recodevideo,
259         })
260     if opts.convertsubtitles:
261         postprocessors.append({
262             'key': 'FFmpegSubtitlesConvertor',
263             'format': opts.convertsubtitles,
264         })
265     if opts.embedsubtitles:
266         postprocessors.append({
267             'key': 'FFmpegEmbedSubtitle',
268         })
269     if opts.embedthumbnail:
270         already_have_thumbnail = opts.writethumbnail or opts.write_all_thumbnails
271         postprocessors.append({
272             'key': 'EmbedThumbnail',
273             'already_have_thumbnail': already_have_thumbnail
274         })
275         if not already_have_thumbnail:
276             opts.writethumbnail = True
277     # XAttrMetadataPP should be run after post-processors that may change file
278     # contents
279     if opts.xattrs:
280         postprocessors.append({'key': 'XAttrMetadata'})
281     # Please keep ExecAfterDownload towards the bottom as it allows the user to modify the final file in any way.
282     # So if the user is able to remove the file before your postprocessor runs it might cause a few problems.
283     if opts.exec_cmd:
284         postprocessors.append({
285             'key': 'ExecAfterDownload',
286             'exec_cmd': opts.exec_cmd,
287         })
288     external_downloader_args = None
289     if opts.external_downloader_args:
290         external_downloader_args = compat_shlex_split(opts.external_downloader_args)
291     postprocessor_args = None
292     if opts.postprocessor_args:
293         postprocessor_args = compat_shlex_split(opts.postprocessor_args)
294     match_filter = (
295         None if opts.match_filter is None
296         else match_filter_func(opts.match_filter))
297
298     ydl_opts = {
299         'usenetrc': opts.usenetrc,
300         'username': opts.username,
301         'password': opts.password,
302         'twofactor': opts.twofactor,
303         'videopassword': opts.videopassword,
304         'ap_mso': opts.ap_mso,
305         'ap_username': opts.ap_username,
306         'ap_password': opts.ap_password,
307         'quiet': (opts.quiet or any_getting or any_printing),
308         'no_warnings': opts.no_warnings,
309         'forceurl': opts.geturl,
310         'forcetitle': opts.gettitle,
311         'forceid': opts.getid,
312         'forcethumbnail': opts.getthumbnail,
313         'forcedescription': opts.getdescription,
314         'forceduration': opts.getduration,
315         'forcefilename': opts.getfilename,
316         'forceformat': opts.getformat,
317         'forcejson': opts.dumpjson or opts.print_json,
318         'dump_single_json': opts.dump_single_json,
319         'simulate': opts.simulate or any_getting,
320         'skip_download': opts.skip_download,
321         'format': opts.format,
322         'listformats': opts.listformats,
323         'outtmpl': outtmpl,
324         'autonumber_size': opts.autonumber_size,
325         'restrictfilenames': opts.restrictfilenames,
326         'ignoreerrors': opts.ignoreerrors,
327         'force_generic_extractor': opts.force_generic_extractor,
328         'ratelimit': opts.ratelimit,
329         'nooverwrites': opts.nooverwrites,
330         'retries': opts.retries,
331         'fragment_retries': opts.fragment_retries,
332         'skip_unavailable_fragments': opts.skip_unavailable_fragments,
333         'buffersize': opts.buffersize,
334         'noresizebuffer': opts.noresizebuffer,
335         'continuedl': opts.continue_dl,
336         'noprogress': opts.noprogress,
337         'progress_with_newline': opts.progress_with_newline,
338         'playliststart': opts.playliststart,
339         'playlistend': opts.playlistend,
340         'playlistreverse': opts.playlist_reverse,
341         'noplaylist': opts.noplaylist,
342         'logtostderr': opts.outtmpl == '-',
343         'consoletitle': opts.consoletitle,
344         'nopart': opts.nopart,
345         'updatetime': opts.updatetime,
346         'writedescription': opts.writedescription,
347         'writeannotations': opts.writeannotations,
348         'writeinfojson': opts.writeinfojson,
349         'writethumbnail': opts.writethumbnail,
350         'write_all_thumbnails': opts.write_all_thumbnails,
351         'writesubtitles': opts.writesubtitles,
352         'writeautomaticsub': opts.writeautomaticsub,
353         'allsubtitles': opts.allsubtitles,
354         'listsubtitles': opts.listsubtitles,
355         'subtitlesformat': opts.subtitlesformat,
356         'subtitleslangs': opts.subtitleslangs,
357         'matchtitle': decodeOption(opts.matchtitle),
358         'rejecttitle': decodeOption(opts.rejecttitle),
359         'max_downloads': opts.max_downloads,
360         'prefer_free_formats': opts.prefer_free_formats,
361         'verbose': opts.verbose,
362         'dump_intermediate_pages': opts.dump_intermediate_pages,
363         'write_pages': opts.write_pages,
364         'test': opts.test,
365         'keepvideo': opts.keepvideo,
366         'min_filesize': opts.min_filesize,
367         'max_filesize': opts.max_filesize,
368         'min_views': opts.min_views,
369         'max_views': opts.max_views,
370         'daterange': date,
371         'cachedir': opts.cachedir,
372         'youtube_print_sig_code': opts.youtube_print_sig_code,
373         'age_limit': opts.age_limit,
374         'download_archive': download_archive_fn,
375         'cookiefile': opts.cookiefile,
376         'nocheckcertificate': opts.no_check_certificate,
377         'prefer_insecure': opts.prefer_insecure,
378         'proxy': opts.proxy,
379         'socket_timeout': opts.socket_timeout,
380         'bidi_workaround': opts.bidi_workaround,
381         'debug_printtraffic': opts.debug_printtraffic,
382         'prefer_ffmpeg': opts.prefer_ffmpeg,
383         'include_ads': opts.include_ads,
384         'default_search': opts.default_search,
385         'youtube_include_dash_manifest': opts.youtube_include_dash_manifest,
386         'encoding': opts.encoding,
387         'extract_flat': opts.extract_flat,
388         'mark_watched': opts.mark_watched,
389         'merge_output_format': opts.merge_output_format,
390         'postprocessors': postprocessors,
391         'fixup': opts.fixup,
392         'source_address': opts.source_address,
393         'call_home': opts.call_home,
394         'sleep_interval': opts.sleep_interval,
395         'max_sleep_interval': opts.max_sleep_interval,
396         'external_downloader': opts.external_downloader,
397         'list_thumbnails': opts.list_thumbnails,
398         'playlist_items': opts.playlist_items,
399         'xattr_set_filesize': opts.xattr_set_filesize,
400         'match_filter': match_filter,
401         'no_color': opts.no_color,
402         'ffmpeg_location': opts.ffmpeg_location,
403         'hls_prefer_native': opts.hls_prefer_native,
404         'hls_use_mpegts': opts.hls_use_mpegts,
405         'external_downloader_args': external_downloader_args,
406         'postprocessor_args': postprocessor_args,
407         'cn_verification_proxy': opts.cn_verification_proxy,
408         'geo_verification_proxy': opts.geo_verification_proxy,
409
410     }
411
412     with YoutubeDL(ydl_opts) as ydl:
413         # Update version
414         if opts.update_self:
415             update_self(ydl.to_screen, opts.verbose, ydl._opener)
416
417         # Remove cache dir
418         if opts.rm_cachedir:
419             ydl.cache.remove()
420
421         # Maybe do nothing
422         if (len(all_urls) < 1) and (opts.load_info_filename is None):
423             if opts.update_self or opts.rm_cachedir:
424                 sys.exit()
425
426             ydl.warn_if_short_id(sys.argv[1:] if argv is None else argv)
427             parser.error(
428                 'You must provide at least one URL.\n'
429                 'Type youtube-dl --help to see a list of all options.')
430
431         try:
432             if opts.load_info_filename is not None:
433                 retcode = ydl.download_with_info_file(compat_expanduser(opts.load_info_filename))
434             else:
435                 retcode = ydl.download(all_urls)
436         except MaxDownloadsReached:
437             ydl.to_screen('--max-download limit reached, aborting.')
438             retcode = 101
439
440     sys.exit(retcode)
441
442
443 def main(argv=None):
444     try:
445         _real_main(argv)
446     except DownloadError:
447         sys.exit(1)
448     except SameFileError:
449         sys.exit('ERROR: fixed output name but more than one file to download')
450     except KeyboardInterrupt:
451         sys.exit('\nERROR: Interrupted by user')
452
453 __all__ = ['main', 'YoutubeDL', 'gen_extractors', 'list_extractors']