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.

806 lines
36 KiB

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