You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

522 lines
24 KiB

13 years ago
12 years ago
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from __future__ import with_statement
  4. from __future__ import absolute_import
  5. __authors__ = (
  6. 'Ricardo Garcia Gonzalez',
  7. 'Danny Colligan',
  8. 'Benjamin Johnson',
  9. 'Vasyl\' Vavrychuk',
  10. 'Witold Baryluk',
  11. 'Paweł Paprota',
  12. 'Gergely Imreh',
  13. 'Rogério Brito',
  14. 'Philipp Hagemeister',
  15. 'Sören Schulze',
  16. 'Kevin Ngo',
  17. 'Ori Avtalion',
  18. 'shizeeg',
  19. 'Filippo Valsorda',
  20. 'Christian Albrecht',
  21. 'Dave Vasilevsky',
  22. 'Jaime Marquínez Ferrándiz',
  23. 'Jeff Crouse',
  24. 'Osama Khalid',
  25. )
  26. __license__ = 'Public Domain'
  27. import getpass
  28. import optparse
  29. import os
  30. import re
  31. import shlex
  32. import socket
  33. import subprocess
  34. import sys
  35. import warnings
  36. import platform
  37. from .utils import *
  38. from .update import update_self
  39. from .version import __version__
  40. from .FileDownloader import *
  41. from .InfoExtractors import gen_extractors
  42. from .PostProcessor import *
  43. def parseOpts():
  44. def _readOptions(filename_bytes):
  45. try:
  46. optionf = open(filename_bytes)
  47. except IOError:
  48. return [] # silently skip if file is not present
  49. try:
  50. res = []
  51. for l in optionf:
  52. res += shlex.split(l, comments=True)
  53. finally:
  54. optionf.close()
  55. return res
  56. def _format_option_string(option):
  57. ''' ('-o', '--option') -> -o, --format METAVAR'''
  58. opts = []
  59. if option._short_opts:
  60. opts.append(option._short_opts[0])
  61. if option._long_opts:
  62. opts.append(option._long_opts[0])
  63. if len(opts) > 1:
  64. opts.insert(1, ', ')
  65. if option.takes_value(): opts.append(' %s' % option.metavar)
  66. return "".join(opts)
  67. def _find_term_columns():
  68. columns = os.environ.get('COLUMNS', None)
  69. if columns:
  70. return int(columns)
  71. try:
  72. sp = subprocess.Popen(['stty', 'size'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  73. out,err = sp.communicate()
  74. return int(out.split()[1])
  75. except:
  76. pass
  77. return None
  78. max_width = 80
  79. max_help_position = 80
  80. # No need to wrap help messages if we're on a wide console
  81. columns = _find_term_columns()
  82. if columns: max_width = columns
  83. fmt = optparse.IndentedHelpFormatter(width=max_width, max_help_position=max_help_position)
  84. fmt.format_option_strings = _format_option_string
  85. kw = {
  86. 'version' : __version__,
  87. 'formatter' : fmt,
  88. 'usage' : '%prog [options] url [url...]',
  89. 'conflict_handler' : 'resolve',
  90. }
  91. parser = optparse.OptionParser(**kw)
  92. # option groups
  93. general = optparse.OptionGroup(parser, 'General Options')
  94. selection = optparse.OptionGroup(parser, 'Video Selection')
  95. authentication = optparse.OptionGroup(parser, 'Authentication Options')
  96. video_format = optparse.OptionGroup(parser, 'Video Format Options')
  97. postproc = optparse.OptionGroup(parser, 'Post-processing Options')
  98. filesystem = optparse.OptionGroup(parser, 'Filesystem Options')
  99. verbosity = optparse.OptionGroup(parser, 'Verbosity / Simulation Options')
  100. general.add_option('-h', '--help',
  101. action='help', help='print this help text and exit')
  102. general.add_option('-v', '--version',
  103. action='version', help='print program version and exit')
  104. general.add_option('-U', '--update',
  105. action='store_true', dest='update_self', help='update this program to latest version')
  106. general.add_option('-i', '--ignore-errors',
  107. action='store_true', dest='ignoreerrors', help='continue on download errors', default=False)
  108. general.add_option('-r', '--rate-limit',
  109. dest='ratelimit', metavar='LIMIT', help='download rate limit (e.g. 50k or 44.6m)')
  110. general.add_option('-R', '--retries',
  111. dest='retries', metavar='RETRIES', help='number of retries (default is %default)', default=10)
  112. general.add_option('--buffer-size',
  113. dest='buffersize', metavar='SIZE', help='size of download buffer (e.g. 1024 or 16k) (default is %default)', default="1024")
  114. general.add_option('--no-resize-buffer',
  115. action='store_true', dest='noresizebuffer',
  116. help='do not automatically adjust the buffer size. By default, the buffer size is automatically resized from an initial value of SIZE.', default=False)
  117. general.add_option('--dump-user-agent',
  118. action='store_true', dest='dump_user_agent',
  119. help='display the current browser identification', default=False)
  120. general.add_option('--user-agent',
  121. dest='user_agent', help='specify a custom user agent', metavar='UA')
  122. general.add_option('--list-extractors',
  123. action='store_true', dest='list_extractors',
  124. help='List all supported extractors and the URLs they would handle', default=False)
  125. general.add_option('--test', action='store_true', dest='test', default=False, help=optparse.SUPPRESS_HELP)
  126. selection.add_option('--playlist-start',
  127. dest='playliststart', metavar='NUMBER', help='playlist video to start at (default is %default)', default=1)
  128. selection.add_option('--playlist-end',
  129. dest='playlistend', metavar='NUMBER', help='playlist video to end at (default is last)', default=-1)
  130. selection.add_option('--match-title', dest='matchtitle', metavar='REGEX',help='download only matching titles (regex or caseless sub-string)')
  131. selection.add_option('--reject-title', dest='rejecttitle', metavar='REGEX',help='skip download for matching titles (regex or caseless sub-string)')
  132. selection.add_option('--max-downloads', metavar='NUMBER', dest='max_downloads', help='Abort after downloading NUMBER files', default=None)
  133. selection.add_option('--min-filesize', metavar='SIZE', dest='min_filesize', help="Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)", default=None)
  134. selection.add_option('--max-filesize', metavar='SIZE', dest='max_filesize', help="Do not download any videos larger than SIZE (e.g. 50k or 44.6m)", default=None)
  135. authentication.add_option('-u', '--username',
  136. dest='username', metavar='USERNAME', help='account username')
  137. authentication.add_option('-p', '--password',
  138. dest='password', metavar='PASSWORD', help='account password')
  139. authentication.add_option('-n', '--netrc',
  140. action='store_true', dest='usenetrc', help='use .netrc authentication data', default=False)
  141. video_format.add_option('-f', '--format',
  142. action='store', dest='format', metavar='FORMAT', help='video format code')
  143. video_format.add_option('--all-formats',
  144. action='store_const', dest='format', help='download all available video formats', const='all')
  145. video_format.add_option('--prefer-free-formats',
  146. action='store_true', dest='prefer_free_formats', default=False, help='prefer free video formats unless a specific one is requested')
  147. video_format.add_option('--max-quality',
  148. action='store', dest='format_limit', metavar='FORMAT', help='highest quality format to download')
  149. video_format.add_option('-F', '--list-formats',
  150. action='store_true', dest='listformats', help='list all available formats (currently youtube only)')
  151. video_format.add_option('--write-srt',
  152. action='store_true', dest='writesubtitles',
  153. help='write video closed captions to a .srt file (currently youtube only)', default=False)
  154. video_format.add_option('--srt-lang',
  155. action='store', dest='subtitleslang', metavar='LANG',
  156. help='language of the closed captions to download (optional) use IETF language tags like \'en\'')
  157. verbosity.add_option('-q', '--quiet',
  158. action='store_true', dest='quiet', help='activates quiet mode', default=False)
  159. verbosity.add_option('-s', '--simulate',
  160. action='store_true', dest='simulate', help='do not download the video and do not write anything to disk', default=False)
  161. verbosity.add_option('--skip-download',
  162. action='store_true', dest='skip_download', help='do not download the video', default=False)
  163. verbosity.add_option('-g', '--get-url',
  164. action='store_true', dest='geturl', help='simulate, quiet but print URL', default=False)
  165. verbosity.add_option('-e', '--get-title',
  166. action='store_true', dest='gettitle', help='simulate, quiet but print title', default=False)
  167. verbosity.add_option('--get-thumbnail',
  168. action='store_true', dest='getthumbnail',
  169. help='simulate, quiet but print thumbnail URL', default=False)
  170. verbosity.add_option('--get-description',
  171. action='store_true', dest='getdescription',
  172. help='simulate, quiet but print video description', default=False)
  173. verbosity.add_option('--get-filename',
  174. action='store_true', dest='getfilename',
  175. help='simulate, quiet but print output filename', default=False)
  176. verbosity.add_option('--get-format',
  177. action='store_true', dest='getformat',
  178. help='simulate, quiet but print output format', default=False)
  179. verbosity.add_option('--newline',
  180. action='store_true', dest='progress_with_newline', help='output progress bar as new lines', default=False)
  181. verbosity.add_option('--no-progress',
  182. action='store_true', dest='noprogress', help='do not print progress bar', default=False)
  183. verbosity.add_option('--console-title',
  184. action='store_true', dest='consoletitle',
  185. help='display progress in console titlebar', default=False)
  186. verbosity.add_option('-v', '--verbose',
  187. action='store_true', dest='verbose', help='print various debugging information', default=False)
  188. filesystem.add_option('-t', '--title',
  189. action='store_true', dest='usetitle', help='use title in file name', default=False)
  190. filesystem.add_option('--id',
  191. action='store_true', dest='useid', help='use video ID in file name', default=False)
  192. filesystem.add_option('-l', '--literal',
  193. action='store_true', dest='usetitle', help='[deprecated] alias of --title', default=False)
  194. filesystem.add_option('-A', '--auto-number',
  195. action='store_true', dest='autonumber',
  196. help='number downloaded files starting from 00000', default=False)
  197. filesystem.add_option('-o', '--output',
  198. dest='outtmpl', metavar='TEMPLATE', help='output filename template. Use %(title)s to get the title, %(uploader)s for the uploader name, %(uploader_id)s for the uploader nickname if different, %(autonumber)s to get an automatically incremented number, %(ext)s for the filename extension, %(upload_date)s for the upload date (YYYYMMDD), %(extractor)s for the provider (youtube, metacafe, etc), %(id)s for the video id and %% for a literal percent. Use - to output to stdout. Can also be used to download to a different directory, for example with -o \'/my/downloads/%(uploader)s/%(title)s-%(id)s.%(ext)s\' .')
  199. filesystem.add_option('--restrict-filenames',
  200. action='store_true', dest='restrictfilenames',
  201. help='Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames', default=False)
  202. filesystem.add_option('-a', '--batch-file',
  203. dest='batchfile', metavar='FILE', help='file containing URLs to download (\'-\' for stdin)')
  204. filesystem.add_option('-w', '--no-overwrites',
  205. action='store_true', dest='nooverwrites', help='do not overwrite files', default=False)
  206. filesystem.add_option('-c', '--continue',
  207. action='store_true', dest='continue_dl', help='resume partially downloaded files', default=True)
  208. filesystem.add_option('--no-continue',
  209. action='store_false', dest='continue_dl',
  210. help='do not resume partially downloaded files (restart from beginning)')
  211. filesystem.add_option('--cookies',
  212. dest='cookiefile', metavar='FILE', help='file to read cookies from and dump cookie jar in')
  213. filesystem.add_option('--no-part',
  214. action='store_true', dest='nopart', help='do not use .part files', default=False)
  215. filesystem.add_option('--no-mtime',
  216. action='store_false', dest='updatetime',
  217. help='do not use the Last-modified header to set the file modification time', default=True)
  218. filesystem.add_option('--write-description',
  219. action='store_true', dest='writedescription',
  220. help='write video description to a .description file', default=False)
  221. filesystem.add_option('--write-info-json',
  222. action='store_true', dest='writeinfojson',
  223. help='write video metadata to a .info.json file', default=False)
  224. postproc.add_option('-x', '--extract-audio', action='store_true', dest='extractaudio', default=False,
  225. help='convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)')
  226. postproc.add_option('--audio-format', metavar='FORMAT', dest='audioformat', default='best',
  227. help='"best", "aac", "vorbis", "mp3", "m4a", "opus", or "wav"; best by default')
  228. postproc.add_option('--audio-quality', metavar='QUALITY', dest='audioquality', default='5',
  229. help='ffmpeg/avconv audio quality specification, insert a value between 0 (better) and 9 (worse) for VBR or a specific bitrate like 128K (default 5)')
  230. postproc.add_option('--recode-video', metavar='FORMAT', dest='recodevideo', default=None,
  231. help='Encode the video to another format if necessary (currently supported: mp4|flv|ogg|webm)')
  232. postproc.add_option('-k', '--keep-video', action='store_true', dest='keepvideo', default=False,
  233. help='keeps the video file on disk after the post-processing; the video is erased by default')
  234. postproc.add_option('--no-post-overwrites', action='store_true', dest='nopostoverwrites', default=False,
  235. help='do not overwrite post-processed files; the post-processed files are overwritten by default')
  236. parser.add_option_group(general)
  237. parser.add_option_group(selection)
  238. parser.add_option_group(filesystem)
  239. parser.add_option_group(verbosity)
  240. parser.add_option_group(video_format)
  241. parser.add_option_group(authentication)
  242. parser.add_option_group(postproc)
  243. xdg_config_home = os.environ.get('XDG_CONFIG_HOME')
  244. if xdg_config_home:
  245. userConf = os.path.join(xdg_config_home, 'youtube-dl.conf')
  246. else:
  247. userConf = os.path.join(os.path.expanduser('~'), '.config', 'youtube-dl.conf')
  248. argv = _readOptions('/etc/youtube-dl.conf') + _readOptions(userConf) + sys.argv[1:]
  249. opts, args = parser.parse_args(argv)
  250. return parser, opts, args
  251. def _real_main():
  252. parser, opts, args = parseOpts()
  253. # Open appropriate CookieJar
  254. if opts.cookiefile is None:
  255. jar = compat_cookiejar.CookieJar()
  256. else:
  257. try:
  258. jar = compat_cookiejar.MozillaCookieJar(opts.cookiefile)
  259. if os.access(opts.cookiefile, os.R_OK):
  260. jar.load()
  261. except (IOError, OSError) as err:
  262. if opts.verbose:
  263. traceback.print_exc()
  264. sys.stderr.write(u'ERROR: unable to open cookie file\n')
  265. sys.exit(101)
  266. # Set user agent
  267. if opts.user_agent is not None:
  268. std_headers['User-Agent'] = opts.user_agent
  269. # Dump user agent
  270. if opts.dump_user_agent:
  271. print(std_headers['User-Agent'])
  272. sys.exit(0)
  273. # Batch file verification
  274. batchurls = []
  275. if opts.batchfile is not None:
  276. try:
  277. if opts.batchfile == '-':
  278. batchfd = sys.stdin
  279. else:
  280. batchfd = open(opts.batchfile, 'r')
  281. batchurls = batchfd.readlines()
  282. batchurls = [x.strip() for x in batchurls]
  283. batchurls = [x for x in batchurls if len(x) > 0 and not re.search(r'^[#/;]', x)]
  284. except IOError:
  285. sys.exit(u'ERROR: batch file could not be read')
  286. all_urls = batchurls + args
  287. all_urls = [url.strip() for url in all_urls]
  288. # General configuration
  289. cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar)
  290. proxy_handler = compat_urllib_request.ProxyHandler()
  291. opener = compat_urllib_request.build_opener(proxy_handler, cookie_processor, YoutubeDLHandler())
  292. compat_urllib_request.install_opener(opener)
  293. socket.setdefaulttimeout(300) # 5 minutes should be enough (famous last words)
  294. extractors = gen_extractors()
  295. if opts.list_extractors:
  296. for ie in extractors:
  297. print(ie.IE_NAME + (' (CURRENTLY BROKEN)' if not ie._WORKING else ''))
  298. matchedUrls = [url for url in all_urls if ie.suitable(url)]
  299. all_urls = [url for url in all_urls if url not in matchedUrls]
  300. for mu in matchedUrls:
  301. print(u' ' + mu)
  302. sys.exit(0)
  303. # Conflicting, missing and erroneous options
  304. if opts.usenetrc and (opts.username is not None or opts.password is not None):
  305. parser.error(u'using .netrc conflicts with giving username/password')
  306. if opts.password is not None and opts.username is None:
  307. parser.error(u'account username missing')
  308. if opts.outtmpl is not None and (opts.usetitle or opts.autonumber or opts.useid):
  309. parser.error(u'using output template conflicts with using title, video ID or auto number')
  310. if opts.usetitle and opts.useid:
  311. parser.error(u'using title conflicts with using video ID')
  312. if opts.username is not None and opts.password is None:
  313. opts.password = getpass.getpass(u'Type account password and press return:')
  314. if opts.ratelimit is not None:
  315. numeric_limit = FileDownloader.parse_bytes(opts.ratelimit)
  316. if numeric_limit is None:
  317. parser.error(u'invalid rate limit specified')
  318. opts.ratelimit = numeric_limit
  319. if opts.min_filesize is not None:
  320. numeric_limit = FileDownloader.parse_bytes(opts.min_filesize)
  321. if numeric_limit is None:
  322. parser.error(u'invalid min_filesize specified')
  323. opts.min_filesize = numeric_limit
  324. if opts.max_filesize is not None:
  325. numeric_limit = FileDownloader.parse_bytes(opts.max_filesize)
  326. if numeric_limit is None:
  327. parser.error(u'invalid max_filesize specified')
  328. opts.max_filesize = numeric_limit
  329. if opts.retries is not None:
  330. try:
  331. opts.retries = int(opts.retries)
  332. except (TypeError, ValueError) as err:
  333. parser.error(u'invalid retry count specified')
  334. if opts.buffersize is not None:
  335. numeric_buffersize = FileDownloader.parse_bytes(opts.buffersize)
  336. if numeric_buffersize is None:
  337. parser.error(u'invalid buffer size specified')
  338. opts.buffersize = numeric_buffersize
  339. try:
  340. opts.playliststart = int(opts.playliststart)
  341. if opts.playliststart <= 0:
  342. raise ValueError(u'Playlist start must be positive')
  343. except (TypeError, ValueError) as err:
  344. parser.error(u'invalid playlist start number specified')
  345. try:
  346. opts.playlistend = int(opts.playlistend)
  347. if opts.playlistend != -1 and (opts.playlistend <= 0 or opts.playlistend < opts.playliststart):
  348. raise ValueError(u'Playlist end must be greater than playlist start')
  349. except (TypeError, ValueError) as err:
  350. parser.error(u'invalid playlist end number specified')
  351. if opts.extractaudio:
  352. if opts.audioformat not in ['best', 'aac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav']:
  353. parser.error(u'invalid audio format specified')
  354. if opts.audioquality:
  355. opts.audioquality = opts.audioquality.strip('k').strip('K')
  356. if not opts.audioquality.isdigit():
  357. parser.error(u'invalid audio quality specified')
  358. if opts.recodevideo is not None:
  359. if opts.recodevideo not in ['mp4', 'flv', 'webm', 'ogg']:
  360. parser.error(u'invalid video recode format specified')
  361. if sys.version_info < (3,):
  362. # In Python 2, sys.argv is a bytestring (also note http://bugs.python.org/issue2128 for Windows systems)
  363. if opts.outtmpl is not None:
  364. opts.outtmpl = opts.outtmpl.decode(preferredencoding())
  365. outtmpl =((opts.outtmpl is not None and opts.outtmpl)
  366. or (opts.format == '-1' and opts.usetitle and u'%(title)s-%(id)s-%(format)s.%(ext)s')
  367. or (opts.format == '-1' and u'%(id)s-%(format)s.%(ext)s')
  368. or (opts.usetitle and opts.autonumber and u'%(autonumber)s-%(title)s-%(id)s.%(ext)s')
  369. or (opts.usetitle and u'%(title)s-%(id)s.%(ext)s')
  370. or (opts.useid and u'%(id)s.%(ext)s')
  371. or (opts.autonumber and u'%(autonumber)s-%(id)s.%(ext)s')
  372. or u'%(id)s.%(ext)s')
  373. # File downloader
  374. fd = FileDownloader({
  375. 'usenetrc': opts.usenetrc,
  376. 'username': opts.username,
  377. 'password': opts.password,
  378. 'quiet': (opts.quiet or opts.geturl or opts.gettitle or opts.getthumbnail or opts.getdescription or opts.getfilename or opts.getformat),
  379. 'forceurl': opts.geturl,
  380. 'forcetitle': opts.gettitle,
  381. 'forcethumbnail': opts.getthumbnail,
  382. 'forcedescription': opts.getdescription,
  383. 'forcefilename': opts.getfilename,
  384. 'forceformat': opts.getformat,
  385. 'simulate': opts.simulate,
  386. 'skip_download': (opts.skip_download or opts.simulate or opts.geturl or opts.gettitle or opts.getthumbnail or opts.getdescription or opts.getfilename or opts.getformat),
  387. 'format': opts.format,
  388. 'format_limit': opts.format_limit,
  389. 'listformats': opts.listformats,
  390. 'outtmpl': outtmpl,
  391. 'restrictfilenames': opts.restrictfilenames,
  392. 'ignoreerrors': opts.ignoreerrors,
  393. 'ratelimit': opts.ratelimit,
  394. 'nooverwrites': opts.nooverwrites,
  395. 'retries': opts.retries,
  396. 'buffersize': opts.buffersize,
  397. 'noresizebuffer': opts.noresizebuffer,
  398. 'continuedl': opts.continue_dl,
  399. 'noprogress': opts.noprogress,
  400. 'progress_with_newline': opts.progress_with_newline,
  401. 'playliststart': opts.playliststart,
  402. 'playlistend': opts.playlistend,
  403. 'logtostderr': opts.outtmpl == '-',
  404. 'consoletitle': opts.consoletitle,
  405. 'nopart': opts.nopart,
  406. 'updatetime': opts.updatetime,
  407. 'writedescription': opts.writedescription,
  408. 'writeinfojson': opts.writeinfojson,
  409. 'writesubtitles': opts.writesubtitles,
  410. 'subtitleslang': opts.subtitleslang,
  411. 'matchtitle': decodeOption(opts.matchtitle),
  412. 'rejecttitle': decodeOption(opts.rejecttitle),
  413. 'max_downloads': opts.max_downloads,
  414. 'prefer_free_formats': opts.prefer_free_formats,
  415. 'verbose': opts.verbose,
  416. 'test': opts.test,
  417. 'keepvideo': opts.keepvideo,
  418. 'min_filesize': opts.min_filesize,
  419. 'max_filesize': opts.max_filesize
  420. })
  421. if opts.verbose:
  422. fd.to_screen(u'[debug] youtube-dl version ' + __version__)
  423. try:
  424. sp = subprocess.Popen(['git', 'rev-parse', '--short', 'HEAD'], stdout=subprocess.PIPE, stderr=subprocess.PIPE,
  425. cwd=os.path.dirname(os.path.abspath(__file__)))
  426. out, err = sp.communicate()
  427. out = out.decode().strip()
  428. if re.match('[0-9a-f]+', out):
  429. fd.to_screen(u'[debug] Git HEAD: ' + out)
  430. except:
  431. pass
  432. fd.to_screen(u'[debug] Python version %s - %s' %(platform.python_version(), platform.platform()))
  433. fd.to_screen(u'[debug] Proxy map: ' + str(proxy_handler.proxies))
  434. for extractor in extractors:
  435. fd.add_info_extractor(extractor)
  436. # PostProcessors
  437. if opts.extractaudio:
  438. fd.add_post_processor(FFmpegExtractAudioPP(preferredcodec=opts.audioformat, preferredquality=opts.audioquality, nopostoverwrites=opts.nopostoverwrites))
  439. if opts.recodevideo:
  440. fd.add_post_processor(FFmpegVideoConvertor(preferedformat=opts.recodevideo))
  441. # Update version
  442. if opts.update_self:
  443. update_self(fd.to_screen, opts.verbose, sys.argv[0])
  444. # Maybe do nothing
  445. if len(all_urls) < 1:
  446. if not opts.update_self:
  447. parser.error(u'you must provide at least one URL')
  448. else:
  449. sys.exit()
  450. try:
  451. retcode = fd.download(all_urls)
  452. except MaxDownloadsReached:
  453. fd.to_screen(u'--max-download limit reached, aborting.')
  454. retcode = 101
  455. # Dump cookie jar if requested
  456. if opts.cookiefile is not None:
  457. try:
  458. jar.save()
  459. except (IOError, OSError) as err:
  460. sys.exit(u'ERROR: unable to save cookie jar')
  461. sys.exit(retcode)
  462. def main():
  463. try:
  464. _real_main()
  465. except DownloadError:
  466. sys.exit(1)
  467. except SameFileError:
  468. sys.exit(u'ERROR: fixed output name but more than one file to download')
  469. except KeyboardInterrupt:
  470. sys.exit(u'\nERROR: Interrupted by user')