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.

755 lines
34 KiB

10 years ago
  1. from __future__ import unicode_literals
  2. import os.path
  3. import optparse
  4. import shlex
  5. import sys
  6. from .downloader.external import list_external_downloaders
  7. from .compat import (
  8. compat_expanduser,
  9. compat_getenv,
  10. compat_kwargs,
  11. )
  12. from .utils import (
  13. get_term_width,
  14. write_string,
  15. )
  16. from .version import __version__
  17. def parseOpts(overrideArguments=None):
  18. def _readOptions(filename_bytes, default=[]):
  19. try:
  20. optionf = open(filename_bytes)
  21. except IOError:
  22. return default # silently skip if file is not present
  23. try:
  24. res = []
  25. for l in optionf:
  26. res += shlex.split(l, comments=True)
  27. finally:
  28. optionf.close()
  29. return res
  30. def _readUserConf():
  31. xdg_config_home = compat_getenv('XDG_CONFIG_HOME')
  32. if xdg_config_home:
  33. userConfFile = os.path.join(xdg_config_home, 'youtube-dl', 'config')
  34. if not os.path.isfile(userConfFile):
  35. userConfFile = os.path.join(xdg_config_home, 'youtube-dl.conf')
  36. else:
  37. userConfFile = os.path.join(compat_expanduser('~'), '.config', 'youtube-dl', 'config')
  38. if not os.path.isfile(userConfFile):
  39. userConfFile = os.path.join(compat_expanduser('~'), '.config', 'youtube-dl.conf')
  40. userConf = _readOptions(userConfFile, None)
  41. if userConf is None:
  42. appdata_dir = compat_getenv('appdata')
  43. if appdata_dir:
  44. userConf = _readOptions(
  45. os.path.join(appdata_dir, 'youtube-dl', 'config'),
  46. default=None)
  47. if userConf is None:
  48. userConf = _readOptions(
  49. os.path.join(appdata_dir, 'youtube-dl', 'config.txt'),
  50. default=None)
  51. if userConf is None:
  52. userConf = _readOptions(
  53. os.path.join(compat_expanduser('~'), 'youtube-dl.conf'),
  54. default=None)
  55. if userConf is None:
  56. userConf = _readOptions(
  57. os.path.join(compat_expanduser('~'), 'youtube-dl.conf.txt'),
  58. default=None)
  59. if userConf is None:
  60. userConf = []
  61. return userConf
  62. def _format_option_string(option):
  63. ''' ('-o', '--option') -> -o, --format METAVAR'''
  64. opts = []
  65. if option._short_opts:
  66. opts.append(option._short_opts[0])
  67. if option._long_opts:
  68. opts.append(option._long_opts[0])
  69. if len(opts) > 1:
  70. opts.insert(1, ', ')
  71. if option.takes_value():
  72. opts.append(' %s' % option.metavar)
  73. return "".join(opts)
  74. def _comma_separated_values_options_callback(option, opt_str, value, parser):
  75. setattr(parser.values, option.dest, value.split(','))
  76. def _hide_login_info(opts):
  77. opts = list(opts)
  78. for private_opt in ['-p', '--password', '-u', '--username', '--video-password']:
  79. try:
  80. i = opts.index(private_opt)
  81. opts[i + 1] = 'PRIVATE'
  82. except ValueError:
  83. pass
  84. return opts
  85. # No need to wrap help messages if we're on a wide console
  86. columns = get_term_width()
  87. max_width = columns if columns else 80
  88. max_help_position = 80
  89. fmt = optparse.IndentedHelpFormatter(width=max_width, max_help_position=max_help_position)
  90. fmt.format_option_strings = _format_option_string
  91. kw = {
  92. 'version': __version__,
  93. 'formatter': fmt,
  94. 'usage': '%prog [OPTIONS] URL [URL...]',
  95. 'conflict_handler': 'resolve',
  96. }
  97. parser = optparse.OptionParser(**compat_kwargs(kw))
  98. general = optparse.OptionGroup(parser, 'General Options')
  99. general.add_option(
  100. '-h', '--help',
  101. action='help',
  102. help='print this help text and exit')
  103. general.add_option(
  104. '-v', '--version',
  105. action='version',
  106. help='print program version and exit')
  107. general.add_option(
  108. '-U', '--update',
  109. action='store_true', dest='update_self',
  110. help='update this program to latest version. Make sure that you have sufficient permissions (run with sudo if needed)')
  111. general.add_option(
  112. '-i', '--ignore-errors',
  113. action='store_true', dest='ignoreerrors', default=False,
  114. help='continue on download errors, for example to skip unavailable videos in a playlist')
  115. general.add_option(
  116. '--abort-on-error',
  117. action='store_false', dest='ignoreerrors',
  118. help='Abort downloading of further videos (in the playlist or the command line) if an error occurs')
  119. general.add_option(
  120. '--dump-user-agent',
  121. action='store_true', dest='dump_user_agent', default=False,
  122. help='display the current browser identification')
  123. general.add_option(
  124. '--list-extractors',
  125. action='store_true', dest='list_extractors', default=False,
  126. help='List all supported extractors and the URLs they would handle')
  127. general.add_option(
  128. '--extractor-descriptions',
  129. action='store_true', dest='list_extractor_descriptions', default=False,
  130. help='Output descriptions of all supported extractors')
  131. general.add_option(
  132. '--default-search',
  133. dest='default_search', metavar='PREFIX',
  134. help='Use this prefix for unqualified URLs. For example "gvsearch2:" downloads two videos from google videos for youtube-dl "large apple". Use the value "auto" to let youtube-dl guess ("auto_warning" to emit a warning when guessing). "error" just throws an error. The default value "fixup_error" repairs broken URLs, but emits an error if this is not possible instead of searching.')
  135. general.add_option(
  136. '--ignore-config',
  137. action='store_true',
  138. help='Do not read configuration files. '
  139. 'When given in the global configuration file /etc/youtube-dl.conf: '
  140. 'Do not read the user configuration in ~/.config/youtube-dl/config '
  141. '(%APPDATA%/youtube-dl/config.txt on Windows)')
  142. general.add_option(
  143. '--flat-playlist',
  144. action='store_const', dest='extract_flat', const='in_playlist',
  145. default=False,
  146. help='Do not extract the videos of a playlist, only list them.')
  147. network = optparse.OptionGroup(parser, 'Network Options')
  148. network.add_option(
  149. '--proxy', dest='proxy',
  150. default=None, metavar='URL',
  151. help='Use the specified HTTP/HTTPS proxy. Pass in an empty string (--proxy "") for direct connection')
  152. network.add_option(
  153. '--socket-timeout',
  154. dest='socket_timeout', type=float, default=None, metavar='SECONDS',
  155. help='Time to wait before giving up, in seconds')
  156. network.add_option(
  157. '--source-address',
  158. metavar='IP', dest='source_address', default=None,
  159. help='Client-side IP address to bind to (experimental)',
  160. )
  161. network.add_option(
  162. '-4', '--force-ipv4',
  163. action='store_const', const='0.0.0.0', dest='source_address',
  164. help='Make all connections via IPv4 (experimental)',
  165. )
  166. network.add_option(
  167. '-6', '--force-ipv6',
  168. action='store_const', const='::', dest='source_address',
  169. help='Make all connections via IPv6 (experimental)',
  170. )
  171. selection = optparse.OptionGroup(parser, 'Video Selection')
  172. selection.add_option(
  173. '--playlist-start',
  174. dest='playliststart', metavar='NUMBER', default=1, type=int,
  175. help='playlist video to start at (default is %default)')
  176. selection.add_option(
  177. '--playlist-end',
  178. dest='playlistend', metavar='NUMBER', default=None, type=int,
  179. help='playlist video to end at (default is last)')
  180. selection.add_option(
  181. '--playlist-items',
  182. dest='playlist_items', metavar='ITEM_SPEC', default=None,
  183. help='playlist video items to download. Specify indices of the videos in the playlist seperated by commas like: "--playlist-items 1,2,5,8" if you want to download videos indexed 1, 2, 5, 8 in the playlist. You can specify range: "--playlist-items 1-3,7,10-13", it will download the videos at index 1, 2, 3, 7, 10, 11, 12 and 13.')
  184. selection.add_option(
  185. '--match-title',
  186. dest='matchtitle', metavar='REGEX',
  187. help='download only matching titles (regex or caseless sub-string)')
  188. selection.add_option(
  189. '--reject-title',
  190. dest='rejecttitle', metavar='REGEX',
  191. help='skip download for matching titles (regex or caseless sub-string)')
  192. selection.add_option(
  193. '--max-downloads',
  194. dest='max_downloads', metavar='NUMBER', type=int, default=None,
  195. help='Abort after downloading NUMBER files')
  196. selection.add_option(
  197. '--min-filesize',
  198. metavar='SIZE', dest='min_filesize', default=None,
  199. help='Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)')
  200. selection.add_option(
  201. '--max-filesize',
  202. metavar='SIZE', dest='max_filesize', default=None,
  203. help='Do not download any videos larger than SIZE (e.g. 50k or 44.6m)')
  204. selection.add_option(
  205. '--date',
  206. metavar='DATE', dest='date', default=None,
  207. help='download only videos uploaded in this date')
  208. selection.add_option(
  209. '--datebefore',
  210. metavar='DATE', dest='datebefore', default=None,
  211. help='download only videos uploaded on or before this date (i.e. inclusive)')
  212. selection.add_option(
  213. '--dateafter',
  214. metavar='DATE', dest='dateafter', default=None,
  215. help='download only videos uploaded on or after this date (i.e. inclusive)')
  216. selection.add_option(
  217. '--min-views',
  218. metavar='COUNT', dest='min_views', default=None, type=int,
  219. help='Do not download any videos with less than COUNT views',)
  220. selection.add_option(
  221. '--max-views',
  222. metavar='COUNT', dest='max_views', default=None, type=int,
  223. help='Do not download any videos with more than COUNT views')
  224. selection.add_option(
  225. '--no-playlist',
  226. action='store_true', dest='noplaylist', default=False,
  227. help='If the URL refers to a video and a playlist, download only the video.')
  228. selection.add_option(
  229. '--age-limit',
  230. metavar='YEARS', dest='age_limit', default=None, type=int,
  231. help='download only videos suitable for the given age')
  232. selection.add_option(
  233. '--download-archive', metavar='FILE',
  234. dest='download_archive',
  235. help='Download only videos not listed in the archive file. Record the IDs of all downloaded videos in it.')
  236. selection.add_option(
  237. '--include-ads',
  238. dest='include_ads', action='store_true',
  239. help='Download advertisements as well (experimental)')
  240. authentication = optparse.OptionGroup(parser, 'Authentication Options')
  241. authentication.add_option(
  242. '-u', '--username',
  243. dest='username', metavar='USERNAME',
  244. help='login with this account ID')
  245. authentication.add_option(
  246. '-p', '--password',
  247. dest='password', metavar='PASSWORD',
  248. help='account password. If this option is left out, youtube-dl will ask interactively.')
  249. authentication.add_option(
  250. '-2', '--twofactor',
  251. dest='twofactor', metavar='TWOFACTOR',
  252. help='two-factor auth code')
  253. authentication.add_option(
  254. '-n', '--netrc',
  255. action='store_true', dest='usenetrc', default=False,
  256. help='use .netrc authentication data')
  257. authentication.add_option(
  258. '--video-password',
  259. dest='videopassword', metavar='PASSWORD',
  260. help='video password (vimeo, smotri)')
  261. video_format = optparse.OptionGroup(parser, 'Video Format Options')
  262. video_format.add_option(
  263. '-f', '--format',
  264. action='store', dest='format', metavar='FORMAT', default=None,
  265. help=(
  266. 'video format code, specify the order of preference using'
  267. ' slashes, as in -f 22/17/18 . '
  268. ' Instead of format codes, you can select by extension for the '
  269. 'extensions aac, m4a, mp3, mp4, ogg, wav, webm. '
  270. 'You can also use the special names "best",'
  271. ' "bestvideo", "bestaudio", "worst". '
  272. ' You can filter the video results by putting a condition in'
  273. ' brackets, as in -f "best[height=720]"'
  274. ' (or -f "[filesize>10M]"). '
  275. ' This works for filesize, height, width, tbr, abr, vbr, asr, and fps'
  276. ' and the comparisons <, <=, >, >=, =, !='
  277. ' and for ext, acodec, vcodec, container, and protocol'
  278. ' and the comparisons =, != .'
  279. ' Formats for which the value is not known are excluded unless you'
  280. ' put a question mark (?) after the operator.'
  281. ' You can combine format filters, so '
  282. '-f "[height <=? 720][tbr>500]" '
  283. 'selects up to 720p videos (or videos where the height is not '
  284. 'known) with a bitrate of at least 500 KBit/s.'
  285. ' By default, youtube-dl will pick the best quality.'
  286. ' Use commas to download multiple audio formats, such as'
  287. ' -f 136/137/mp4/bestvideo,140/m4a/bestaudio.'
  288. ' You can merge the video and audio of two formats into a single'
  289. ' file using -f <video-format>+<audio-format> (requires ffmpeg or'
  290. ' avconv), for example -f bestvideo+bestaudio.'))
  291. video_format.add_option(
  292. '--all-formats',
  293. action='store_const', dest='format', const='all',
  294. help='download all available video formats')
  295. video_format.add_option(
  296. '--prefer-free-formats',
  297. action='store_true', dest='prefer_free_formats', default=False,
  298. help='prefer free video formats unless a specific one is requested')
  299. video_format.add_option(
  300. '--max-quality',
  301. action='store', dest='format_limit', metavar='FORMAT',
  302. help='highest quality format to download')
  303. video_format.add_option(
  304. '-F', '--list-formats',
  305. action='store_true', dest='listformats',
  306. help='list all available formats')
  307. video_format.add_option(
  308. '--youtube-include-dash-manifest',
  309. action='store_true', dest='youtube_include_dash_manifest', default=True,
  310. help=optparse.SUPPRESS_HELP)
  311. video_format.add_option(
  312. '--youtube-skip-dash-manifest',
  313. action='store_false', dest='youtube_include_dash_manifest',
  314. help='Do not download the DASH manifest on YouTube videos')
  315. video_format.add_option(
  316. '--merge-output-format',
  317. action='store', dest='merge_output_format', metavar='FORMAT', default=None,
  318. help=(
  319. 'If a merge is required (e.g. bestvideo+bestaudio), output to given container format. One of mkv, mp4, ogg, webm, flv.'
  320. 'Ignored if no merge is required'))
  321. subtitles = optparse.OptionGroup(parser, 'Subtitle Options')
  322. subtitles.add_option(
  323. '--write-sub', '--write-srt',
  324. action='store_true', dest='writesubtitles', default=False,
  325. help='write subtitle file')
  326. subtitles.add_option(
  327. '--write-auto-sub', '--write-automatic-sub',
  328. action='store_true', dest='writeautomaticsub', default=False,
  329. help='write automatic subtitle file (youtube only)')
  330. subtitles.add_option(
  331. '--all-subs',
  332. action='store_true', dest='allsubtitles', default=False,
  333. help='downloads all the available subtitles of the video')
  334. subtitles.add_option(
  335. '--list-subs',
  336. action='store_true', dest='listsubtitles', default=False,
  337. help='lists all available subtitles for the video')
  338. subtitles.add_option(
  339. '--sub-format',
  340. action='store', dest='subtitlesformat', metavar='FORMAT', default='srt',
  341. help='subtitle format (default=srt) ([sbv/vtt] youtube only)')
  342. subtitles.add_option(
  343. '--sub-lang', '--sub-langs', '--srt-lang',
  344. action='callback', dest='subtitleslangs', metavar='LANGS', type='str',
  345. default=[], callback=_comma_separated_values_options_callback,
  346. help='languages of the subtitles to download (optional) separated by commas, use IETF language tags like \'en,pt\'')
  347. downloader = optparse.OptionGroup(parser, 'Download Options')
  348. downloader.add_option(
  349. '-r', '--rate-limit',
  350. dest='ratelimit', metavar='LIMIT',
  351. help='maximum download rate in bytes per second (e.g. 50K or 4.2M)')
  352. downloader.add_option(
  353. '-R', '--retries',
  354. dest='retries', metavar='RETRIES', default=10,
  355. help='number of retries (default is %default), or "infinite".')
  356. downloader.add_option(
  357. '--buffer-size',
  358. dest='buffersize', metavar='SIZE', default='1024',
  359. help='size of download buffer (e.g. 1024 or 16K) (default is %default)')
  360. downloader.add_option(
  361. '--no-resize-buffer',
  362. action='store_true', dest='noresizebuffer', default=False,
  363. help='do not automatically adjust the buffer size. By default, the buffer size is automatically resized from an initial value of SIZE.')
  364. downloader.add_option(
  365. '--test',
  366. action='store_true', dest='test', default=False,
  367. help=optparse.SUPPRESS_HELP)
  368. downloader.add_option(
  369. '--playlist-reverse',
  370. action='store_true',
  371. help='Download playlist videos in reverse order')
  372. downloader.add_option(
  373. '--xattr-set-filesize',
  374. dest='xattr_set_filesize', action='store_true',
  375. help='(experimental) set file xattribute ytdl.filesize with expected filesize')
  376. downloader.add_option(
  377. '--external-downloader',
  378. dest='external_downloader', metavar='COMMAND',
  379. help='(experimental) Use the specified external downloader. '
  380. 'Currently supports %s' % ','.join(list_external_downloaders()))
  381. workarounds = optparse.OptionGroup(parser, 'Workarounds')
  382. workarounds.add_option(
  383. '--encoding',
  384. dest='encoding', metavar='ENCODING',
  385. help='Force the specified encoding (experimental)')
  386. workarounds.add_option(
  387. '--no-check-certificate',
  388. action='store_true', dest='no_check_certificate', default=False,
  389. help='Suppress HTTPS certificate validation.')
  390. workarounds.add_option(
  391. '--prefer-insecure',
  392. '--prefer-unsecure', action='store_true', dest='prefer_insecure',
  393. help='Use an unencrypted connection to retrieve information about the video. (Currently supported only for YouTube)')
  394. workarounds.add_option(
  395. '--user-agent',
  396. metavar='UA', dest='user_agent',
  397. help='specify a custom user agent')
  398. workarounds.add_option(
  399. '--referer',
  400. metavar='URL', dest='referer', default=None,
  401. help='specify a custom referer, use if the video access is restricted to one domain',
  402. )
  403. workarounds.add_option(
  404. '--add-header',
  405. metavar='FIELD:VALUE', dest='headers', action='append',
  406. help='specify a custom HTTP header and its value, separated by a colon \':\'. You can use this option multiple times',
  407. )
  408. workarounds.add_option(
  409. '--bidi-workaround',
  410. dest='bidi_workaround', action='store_true',
  411. help='Work around terminals that lack bidirectional text support. Requires bidiv or fribidi executable in PATH')
  412. workarounds.add_option(
  413. '--sleep-interval', metavar='SECONDS',
  414. dest='sleep_interval', type=float,
  415. help='Number of seconds to sleep before each download.')
  416. verbosity = optparse.OptionGroup(parser, 'Verbosity / Simulation Options')
  417. verbosity.add_option(
  418. '-q', '--quiet',
  419. action='store_true', dest='quiet', default=False,
  420. help='activates quiet mode')
  421. verbosity.add_option(
  422. '--no-warnings',
  423. dest='no_warnings', action='store_true', default=False,
  424. help='Ignore warnings')
  425. verbosity.add_option(
  426. '-s', '--simulate',
  427. action='store_true', dest='simulate', default=False,
  428. help='do not download the video and do not write anything to disk',)
  429. verbosity.add_option(
  430. '--skip-download',
  431. action='store_true', dest='skip_download', default=False,
  432. help='do not download the video',)
  433. verbosity.add_option(
  434. '-g', '--get-url',
  435. action='store_true', dest='geturl', default=False,
  436. help='simulate, quiet but print URL')
  437. verbosity.add_option(
  438. '-e', '--get-title',
  439. action='store_true', dest='gettitle', default=False,
  440. help='simulate, quiet but print title')
  441. verbosity.add_option(
  442. '--get-id',
  443. action='store_true', dest='getid', default=False,
  444. help='simulate, quiet but print id')
  445. verbosity.add_option(
  446. '--get-thumbnail',
  447. action='store_true', dest='getthumbnail', default=False,
  448. help='simulate, quiet but print thumbnail URL')
  449. verbosity.add_option(
  450. '--get-description',
  451. action='store_true', dest='getdescription', default=False,
  452. help='simulate, quiet but print video description')
  453. verbosity.add_option(
  454. '--get-duration',
  455. action='store_true', dest='getduration', default=False,
  456. help='simulate, quiet but print video length')
  457. verbosity.add_option(
  458. '--get-filename',
  459. action='store_true', dest='getfilename', default=False,
  460. help='simulate, quiet but print output filename')
  461. verbosity.add_option(
  462. '--get-format',
  463. action='store_true', dest='getformat', default=False,
  464. help='simulate, quiet but print output format')
  465. verbosity.add_option(
  466. '-j', '--dump-json',
  467. action='store_true', dest='dumpjson', default=False,
  468. help='simulate, quiet but print JSON information. See --output for a description of available keys.')
  469. verbosity.add_option(
  470. '-J', '--dump-single-json',
  471. action='store_true', dest='dump_single_json', default=False,
  472. help='simulate, quiet but print JSON information for each command-line argument. If the URL refers to a playlist, dump the whole playlist information in a single line.')
  473. verbosity.add_option(
  474. '--print-json',
  475. action='store_true', dest='print_json', default=False,
  476. help='Be quiet and print the video information as JSON (video is still being downloaded).',
  477. )
  478. verbosity.add_option(
  479. '--newline',
  480. action='store_true', dest='progress_with_newline', default=False,
  481. help='output progress bar as new lines')
  482. verbosity.add_option(
  483. '--no-progress',
  484. action='store_true', dest='noprogress', default=False,
  485. help='do not print progress bar')
  486. verbosity.add_option(
  487. '--console-title',
  488. action='store_true', dest='consoletitle', default=False,
  489. help='display progress in console titlebar')
  490. verbosity.add_option(
  491. '-v', '--verbose',
  492. action='store_true', dest='verbose', default=False,
  493. help='print various debugging information')
  494. verbosity.add_option(
  495. '--dump-intermediate-pages',
  496. action='store_true', dest='dump_intermediate_pages', default=False,
  497. help='print downloaded pages to debug problems (very verbose)')
  498. verbosity.add_option(
  499. '--write-pages',
  500. action='store_true', dest='write_pages', default=False,
  501. help='Write downloaded intermediary pages to files in the current directory to debug problems')
  502. verbosity.add_option(
  503. '--youtube-print-sig-code',
  504. action='store_true', dest='youtube_print_sig_code', default=False,
  505. help=optparse.SUPPRESS_HELP)
  506. verbosity.add_option(
  507. '--print-traffic',
  508. dest='debug_printtraffic', action='store_true', default=False,
  509. help='Display sent and read HTTP traffic')
  510. verbosity.add_option(
  511. '-C', '--call-home',
  512. dest='call_home', action='store_true', default=False,
  513. help='Contact the youtube-dl server for debugging.')
  514. verbosity.add_option(
  515. '--no-call-home',
  516. dest='call_home', action='store_false', default=False,
  517. help='Do NOT contact the youtube-dl server for debugging.')
  518. filesystem = optparse.OptionGroup(parser, 'Filesystem Options')
  519. filesystem.add_option(
  520. '-a', '--batch-file',
  521. dest='batchfile', metavar='FILE',
  522. help='file containing URLs to download (\'-\' for stdin)')
  523. filesystem.add_option(
  524. '--id', default=False,
  525. action='store_true', dest='useid', help='use only video ID in file name')
  526. filesystem.add_option(
  527. '-o', '--output',
  528. dest='outtmpl', metavar='TEMPLATE',
  529. help=('output filename template. Use %(title)s to get the title, '
  530. '%(uploader)s for the uploader name, %(uploader_id)s for the uploader nickname if different, '
  531. '%(autonumber)s to get an automatically incremented number, '
  532. '%(ext)s for the filename extension, '
  533. '%(format)s for the format description (like "22 - 1280x720" or "HD"), '
  534. '%(format_id)s for the unique id of the format (like Youtube\'s itags: "137"), '
  535. '%(upload_date)s for the upload date (YYYYMMDD), '
  536. '%(extractor)s for the provider (youtube, metacafe, etc), '
  537. '%(id)s for the video id, '
  538. '%(playlist_title)s, %(playlist_id)s, or %(playlist)s (=title if present, ID otherwise) for the playlist the video is in, '
  539. '%(playlist_index)s for the position in the playlist. '
  540. '%(height)s and %(width)s for the width and height of the video format. '
  541. '%(resolution)s for a textual description of the resolution of the video format. '
  542. '%% for a literal percent. '
  543. 'Use - to output to stdout. Can also be used to download to a different directory, '
  544. 'for example with -o \'/my/downloads/%(uploader)s/%(title)s-%(id)s.%(ext)s\' .'))
  545. filesystem.add_option(
  546. '--autonumber-size',
  547. dest='autonumber_size', metavar='NUMBER',
  548. help='Specifies the number of digits in %(autonumber)s when it is present in output filename template or --auto-number option is given')
  549. filesystem.add_option(
  550. '--restrict-filenames',
  551. action='store_true', dest='restrictfilenames', default=False,
  552. help='Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames')
  553. filesystem.add_option(
  554. '-A', '--auto-number',
  555. action='store_true', dest='autonumber', default=False,
  556. help='[deprecated; use -o "%(autonumber)s-%(title)s.%(ext)s" ] number downloaded files starting from 00000')
  557. filesystem.add_option(
  558. '-t', '--title',
  559. action='store_true', dest='usetitle', default=False,
  560. help='[deprecated] use title in file name (default)')
  561. filesystem.add_option(
  562. '-l', '--literal', default=False,
  563. action='store_true', dest='usetitle',
  564. help='[deprecated] alias of --title')
  565. filesystem.add_option(
  566. '-w', '--no-overwrites',
  567. action='store_true', dest='nooverwrites', default=False,
  568. help='do not overwrite files')
  569. filesystem.add_option(
  570. '-c', '--continue',
  571. action='store_true', dest='continue_dl', default=True,
  572. help='force resume of partially downloaded files. By default, youtube-dl will resume downloads if possible.')
  573. filesystem.add_option(
  574. '--no-continue',
  575. action='store_false', dest='continue_dl',
  576. help='do not resume partially downloaded files (restart from beginning)')
  577. filesystem.add_option(
  578. '--no-part',
  579. action='store_true', dest='nopart', default=False,
  580. help='do not use .part files - write directly into output file')
  581. filesystem.add_option(
  582. '--no-mtime',
  583. action='store_false', dest='updatetime', default=True,
  584. help='do not use the Last-modified header to set the file modification time')
  585. filesystem.add_option(
  586. '--write-description',
  587. action='store_true', dest='writedescription', default=False,
  588. help='write video description to a .description file')
  589. filesystem.add_option(
  590. '--write-info-json',
  591. action='store_true', dest='writeinfojson', default=False,
  592. help='write video metadata to a .info.json file')
  593. filesystem.add_option(
  594. '--write-annotations',
  595. action='store_true', dest='writeannotations', default=False,
  596. help='write video annotations to a .annotation file')
  597. filesystem.add_option(
  598. '--load-info',
  599. dest='load_info_filename', metavar='FILE',
  600. help='json file containing the video information (created with the "--write-json" option)')
  601. filesystem.add_option(
  602. '--cookies',
  603. dest='cookiefile', metavar='FILE',
  604. help='file to read cookies from and dump cookie jar in')
  605. filesystem.add_option(
  606. '--cache-dir', dest='cachedir', default=None, metavar='DIR',
  607. help='Location in the filesystem where youtube-dl can store some downloaded information permanently. By default $XDG_CACHE_HOME/youtube-dl or ~/.cache/youtube-dl . At the moment, only YouTube player files (for videos with obfuscated signatures) are cached, but that may change.')
  608. filesystem.add_option(
  609. '--no-cache-dir', action='store_const', const=False, dest='cachedir',
  610. help='Disable filesystem caching')
  611. filesystem.add_option(
  612. '--rm-cache-dir',
  613. action='store_true', dest='rm_cachedir',
  614. help='Delete all filesystem cache files')
  615. thumbnail = optparse.OptionGroup(parser, 'Thumbnail images')
  616. thumbnail.add_option(
  617. '--write-thumbnail',
  618. action='store_true', dest='writethumbnail', default=False,
  619. help='write thumbnail image to disk')
  620. thumbnail.add_option(
  621. '--write-all-thumbnails',
  622. action='store_true', dest='write_all_thumbnails', default=False,
  623. help='write all thumbnail image formats to disk')
  624. thumbnail.add_option(
  625. '--list-thumbnails',
  626. action='store_true', dest='list_thumbnails', default=False,
  627. help='Simulate and list all available thumbnail formats')
  628. postproc = optparse.OptionGroup(parser, 'Post-processing Options')
  629. postproc.add_option(
  630. '-x', '--extract-audio',
  631. action='store_true', dest='extractaudio', default=False,
  632. help='convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)')
  633. postproc.add_option(
  634. '--audio-format', metavar='FORMAT', dest='audioformat', default='best',
  635. help='"best", "aac", "vorbis", "mp3", "m4a", "opus", or "wav"; "%default" by default')
  636. postproc.add_option(
  637. '--audio-quality', metavar='QUALITY',
  638. dest='audioquality', default='5',
  639. help='ffmpeg/avconv audio quality specification, insert a value between 0 (better) and 9 (worse) for VBR or a specific bitrate like 128K (default %default)')
  640. postproc.add_option(
  641. '--recode-video',
  642. metavar='FORMAT', dest='recodevideo', default=None,
  643. help='Encode the video to another format if necessary (currently supported: mp4|flv|ogg|webm|mkv)')
  644. postproc.add_option(
  645. '-k', '--keep-video',
  646. action='store_true', dest='keepvideo', default=False,
  647. help='keeps the video file on disk after the post-processing; the video is erased by default')
  648. postproc.add_option(
  649. '--no-post-overwrites',
  650. action='store_true', dest='nopostoverwrites', default=False,
  651. help='do not overwrite post-processed files; the post-processed files are overwritten by default')
  652. postproc.add_option(
  653. '--embed-subs',
  654. action='store_true', dest='embedsubtitles', default=False,
  655. help='embed subtitles in the video (only for mp4 videos)')
  656. postproc.add_option(
  657. '--embed-thumbnail',
  658. action='store_true', dest='embedthumbnail', default=False,
  659. help='embed thumbnail in the audio as cover art')
  660. postproc.add_option(
  661. '--add-metadata',
  662. action='store_true', dest='addmetadata', default=False,
  663. help='write metadata to the video file')
  664. postproc.add_option(
  665. '--xattrs',
  666. action='store_true', dest='xattrs', default=False,
  667. help='write metadata to the video file\'s xattrs (using dublin core and xdg standards)')
  668. postproc.add_option(
  669. '--fixup',
  670. metavar='POLICY', dest='fixup', default='detect_or_warn',
  671. help='Automatically correct known faults of the file. '
  672. 'One of never (do nothing), warn (only emit a warning), '
  673. 'detect_or_warn(the default; fix file if we can, warn otherwise)')
  674. postproc.add_option(
  675. '--prefer-avconv',
  676. action='store_false', dest='prefer_ffmpeg',
  677. help='Prefer avconv over ffmpeg for running the postprocessors (default)')
  678. postproc.add_option(
  679. '--prefer-ffmpeg',
  680. action='store_true', dest='prefer_ffmpeg',
  681. help='Prefer ffmpeg over avconv for running the postprocessors')
  682. postproc.add_option(
  683. '--exec',
  684. metavar='CMD', dest='exec_cmd',
  685. help='Execute a command on the file after downloading, similar to find\'s -exec syntax. Example: --exec \'adb push {} /sdcard/Music/ && rm {}\'')
  686. parser.add_option_group(general)
  687. parser.add_option_group(network)
  688. parser.add_option_group(selection)
  689. parser.add_option_group(downloader)
  690. parser.add_option_group(filesystem)
  691. parser.add_option_group(thumbnail)
  692. parser.add_option_group(verbosity)
  693. parser.add_option_group(workarounds)
  694. parser.add_option_group(video_format)
  695. parser.add_option_group(subtitles)
  696. parser.add_option_group(authentication)
  697. parser.add_option_group(postproc)
  698. if overrideArguments is not None:
  699. opts, args = parser.parse_args(overrideArguments)
  700. if opts.verbose:
  701. write_string('[debug] Override config: ' + repr(overrideArguments) + '\n')
  702. else:
  703. commandLineConf = sys.argv[1:]
  704. if '--ignore-config' in commandLineConf:
  705. systemConf = []
  706. userConf = []
  707. else:
  708. systemConf = _readOptions('/etc/youtube-dl.conf')
  709. if '--ignore-config' in systemConf:
  710. userConf = []
  711. else:
  712. userConf = _readUserConf()
  713. argv = systemConf + userConf + commandLineConf
  714. opts, args = parser.parse_args(argv)
  715. if opts.verbose:
  716. write_string('[debug] System config: ' + repr(_hide_login_info(systemConf)) + '\n')
  717. write_string('[debug] User config: ' + repr(_hide_login_info(userConf)) + '\n')
  718. write_string('[debug] Command-line args: ' + repr(_hide_login_info(commandLineConf)) + '\n')
  719. return parser, opts, args