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.

796 lines
36 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_get_terminal_size,
  10. compat_getenv,
  11. compat_kwargs,
  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 += 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 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.')
  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)')
  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')
  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 manifest 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), output to given container format. One of mkv, mp4, ogg, webm, flv.'
  330. 'Ignored if no merge is required'))
  331. subtitles = optparse.OptionGroup(parser, 'Subtitle Options')
  332. subtitles.add_option(
  333. '--write-sub', '--write-srt',
  334. action='store_true', dest='writesubtitles', default=False,
  335. help='Write subtitle file')
  336. subtitles.add_option(
  337. '--write-auto-sub', '--write-automatic-sub',
  338. action='store_true', dest='writeautomaticsub', default=False,
  339. help='Write automatic subtitle file (YouTube only)')
  340. subtitles.add_option(
  341. '--all-subs',
  342. action='store_true', dest='allsubtitles', default=False,
  343. help='Download all the available subtitles of the video')
  344. subtitles.add_option(
  345. '--list-subs',
  346. action='store_true', dest='listsubtitles', default=False,
  347. help='List all available subtitles for the video')
  348. subtitles.add_option(
  349. '--sub-format',
  350. action='store', dest='subtitlesformat', metavar='FORMAT', default='best',
  351. help='Subtitle format, accepts formats preference, for example: "srt" or "ass/srt/best"')
  352. subtitles.add_option(
  353. '--sub-lang', '--sub-langs', '--srt-lang',
  354. action='callback', dest='subtitleslangs', metavar='LANGS', type='str',
  355. default=[], callback=_comma_separated_values_options_callback,
  356. help='Languages of the subtitles to download (optional) separated by commas, use IETF language tags like \'en,pt\'')
  357. downloader = optparse.OptionGroup(parser, 'Download Options')
  358. downloader.add_option(
  359. '-r', '--rate-limit',
  360. dest='ratelimit', metavar='LIMIT',
  361. help='Maximum download rate in bytes per second (e.g. 50K or 4.2M)')
  362. downloader.add_option(
  363. '-R', '--retries',
  364. dest='retries', metavar='RETRIES', default=10,
  365. help='Number of retries (default is %default), or "infinite".')
  366. downloader.add_option(
  367. '--buffer-size',
  368. dest='buffersize', metavar='SIZE', default='1024',
  369. help='Size of download buffer (e.g. 1024 or 16K) (default is %default)')
  370. downloader.add_option(
  371. '--no-resize-buffer',
  372. action='store_true', dest='noresizebuffer', default=False,
  373. help='Do not automatically adjust the buffer size. By default, the buffer size is automatically resized from an initial value of SIZE.')
  374. downloader.add_option(
  375. '--test',
  376. action='store_true', dest='test', default=False,
  377. help=optparse.SUPPRESS_HELP)
  378. downloader.add_option(
  379. '--playlist-reverse',
  380. action='store_true',
  381. help='Download playlist videos in reverse order')
  382. downloader.add_option(
  383. '--xattr-set-filesize',
  384. dest='xattr_set_filesize', action='store_true',
  385. help='Set file xattribute ytdl.filesize with expected filesize (experimental)')
  386. downloader.add_option(
  387. '--hls-prefer-native',
  388. dest='hls_prefer_native', action='store_true',
  389. help='Use the native HLS downloader instead of ffmpeg (experimental)')
  390. downloader.add_option(
  391. '--external-downloader',
  392. dest='external_downloader', metavar='COMMAND',
  393. help='Use the specified external downloader. '
  394. 'Currently supports %s' % ','.join(list_external_downloaders()))
  395. downloader.add_option(
  396. '--external-downloader-args',
  397. dest='external_downloader_args', metavar='ARGS',
  398. help='Give these arguments to the external downloader')
  399. workarounds = optparse.OptionGroup(parser, 'Workarounds')
  400. workarounds.add_option(
  401. '--encoding',
  402. dest='encoding', metavar='ENCODING',
  403. help='Force the specified encoding (experimental)')
  404. workarounds.add_option(
  405. '--no-check-certificate',
  406. action='store_true', dest='no_check_certificate', default=False,
  407. help='Suppress HTTPS certificate validation')
  408. workarounds.add_option(
  409. '--prefer-insecure',
  410. '--prefer-unsecure', action='store_true', dest='prefer_insecure',
  411. help='Use an unencrypted connection to retrieve information about the video. (Currently supported only for YouTube)')
  412. workarounds.add_option(
  413. '--user-agent',
  414. metavar='UA', dest='user_agent',
  415. help='Specify a custom user agent')
  416. workarounds.add_option(
  417. '--referer',
  418. metavar='URL', dest='referer', default=None,
  419. help='Specify a custom referer, use if the video access is restricted to one domain',
  420. )
  421. workarounds.add_option(
  422. '--add-header',
  423. metavar='FIELD:VALUE', dest='headers', action='append',
  424. help='Specify a custom HTTP header and its value, separated by a colon \':\'. You can use this option multiple times',
  425. )
  426. workarounds.add_option(
  427. '--bidi-workaround',
  428. dest='bidi_workaround', action='store_true',
  429. help='Work around terminals that lack bidirectional text support. Requires bidiv or fribidi executable in PATH')
  430. workarounds.add_option(
  431. '--sleep-interval', metavar='SECONDS',
  432. dest='sleep_interval', type=float,
  433. help='Number of seconds to sleep before each download.')
  434. verbosity = optparse.OptionGroup(parser, 'Verbosity / Simulation Options')
  435. verbosity.add_option(
  436. '-q', '--quiet',
  437. action='store_true', dest='quiet', default=False,
  438. help='Activate quiet mode')
  439. verbosity.add_option(
  440. '--no-warnings',
  441. dest='no_warnings', action='store_true', default=False,
  442. help='Ignore warnings')
  443. verbosity.add_option(
  444. '-s', '--simulate',
  445. action='store_true', dest='simulate', default=False,
  446. help='Do not download the video and do not write anything to disk')
  447. verbosity.add_option(
  448. '--skip-download',
  449. action='store_true', dest='skip_download', default=False,
  450. help='Do not download the video')
  451. verbosity.add_option(
  452. '-g', '--get-url',
  453. action='store_true', dest='geturl', default=False,
  454. help='Simulate, quiet but print URL')
  455. verbosity.add_option(
  456. '-e', '--get-title',
  457. action='store_true', dest='gettitle', default=False,
  458. help='Simulate, quiet but print title')
  459. verbosity.add_option(
  460. '--get-id',
  461. action='store_true', dest='getid', default=False,
  462. help='Simulate, quiet but print id')
  463. verbosity.add_option(
  464. '--get-thumbnail',
  465. action='store_true', dest='getthumbnail', default=False,
  466. help='Simulate, quiet but print thumbnail URL')
  467. verbosity.add_option(
  468. '--get-description',
  469. action='store_true', dest='getdescription', default=False,
  470. help='Simulate, quiet but print video description')
  471. verbosity.add_option(
  472. '--get-duration',
  473. action='store_true', dest='getduration', default=False,
  474. help='Simulate, quiet but print video length')
  475. verbosity.add_option(
  476. '--get-filename',
  477. action='store_true', dest='getfilename', default=False,
  478. help='Simulate, quiet but print output filename')
  479. verbosity.add_option(
  480. '--get-format',
  481. action='store_true', dest='getformat', default=False,
  482. help='Simulate, quiet but print output format')
  483. verbosity.add_option(
  484. '-j', '--dump-json',
  485. action='store_true', dest='dumpjson', default=False,
  486. help='Simulate, quiet but print JSON information. See --output for a description of available keys.')
  487. verbosity.add_option(
  488. '-J', '--dump-single-json',
  489. action='store_true', dest='dump_single_json', default=False,
  490. 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.')
  491. verbosity.add_option(
  492. '--print-json',
  493. action='store_true', dest='print_json', default=False,
  494. help='Be quiet and print the video information as JSON (video is still being downloaded).',
  495. )
  496. verbosity.add_option(
  497. '--newline',
  498. action='store_true', dest='progress_with_newline', default=False,
  499. help='Output progress bar as new lines')
  500. verbosity.add_option(
  501. '--no-progress',
  502. action='store_true', dest='noprogress', default=False,
  503. help='Do not print progress bar')
  504. verbosity.add_option(
  505. '--console-title',
  506. action='store_true', dest='consoletitle', default=False,
  507. help='Display progress in console titlebar')
  508. verbosity.add_option(
  509. '-v', '--verbose',
  510. action='store_true', dest='verbose', default=False,
  511. help='Print various debugging information')
  512. verbosity.add_option(
  513. '--dump-pages', '--dump-intermediate-pages',
  514. action='store_true', dest='dump_intermediate_pages', default=False,
  515. help='Print downloaded pages encoded using base64 to debug problems (very verbose)')
  516. verbosity.add_option(
  517. '--write-pages',
  518. action='store_true', dest='write_pages', default=False,
  519. help='Write downloaded intermediary pages to files in the current directory to debug problems')
  520. verbosity.add_option(
  521. '--youtube-print-sig-code',
  522. action='store_true', dest='youtube_print_sig_code', default=False,
  523. help=optparse.SUPPRESS_HELP)
  524. verbosity.add_option(
  525. '--print-traffic', '--dump-headers',
  526. dest='debug_printtraffic', action='store_true', default=False,
  527. help='Display sent and read HTTP traffic')
  528. verbosity.add_option(
  529. '-C', '--call-home',
  530. dest='call_home', action='store_true', default=False,
  531. help='Contact the youtube-dl server for debugging')
  532. verbosity.add_option(
  533. '--no-call-home',
  534. dest='call_home', action='store_false', default=False,
  535. help='Do NOT contact the youtube-dl server for debugging')
  536. filesystem = optparse.OptionGroup(parser, 'Filesystem Options')
  537. filesystem.add_option(
  538. '-a', '--batch-file',
  539. dest='batchfile', metavar='FILE',
  540. help='File containing URLs to download (\'-\' for stdin)')
  541. filesystem.add_option(
  542. '--id', default=False,
  543. action='store_true', dest='useid', help='Use only video ID in file name')
  544. filesystem.add_option(
  545. '-o', '--output',
  546. dest='outtmpl', metavar='TEMPLATE',
  547. help=('Output filename template. Use %(title)s to get the title, '
  548. '%(uploader)s for the uploader name, %(uploader_id)s for the uploader nickname if different, '
  549. '%(autonumber)s to get an automatically incremented number, '
  550. '%(ext)s for the filename extension, '
  551. '%(format)s for the format description (like "22 - 1280x720" or "HD"), '
  552. '%(format_id)s for the unique id of the format (like YouTube\'s itags: "137"), '
  553. '%(upload_date)s for the upload date (YYYYMMDD), '
  554. '%(extractor)s for the provider (youtube, metacafe, etc), '
  555. '%(id)s for the video id, '
  556. '%(playlist_title)s, %(playlist_id)s, or %(playlist)s (=title if present, ID otherwise) for the playlist the video is in, '
  557. '%(playlist_index)s for the position in the playlist. '
  558. '%(height)s and %(width)s for the width and height of the video format. '
  559. '%(resolution)s for a textual description of the resolution of the video format. '
  560. '%% for a literal percent. '
  561. 'Use - to output to stdout. Can also be used to download to a different directory, '
  562. 'for example with -o \'/my/downloads/%(uploader)s/%(title)s-%(id)s.%(ext)s\' .'))
  563. filesystem.add_option(
  564. '--autonumber-size',
  565. dest='autonumber_size', metavar='NUMBER',
  566. help='Specify the number of digits in %(autonumber)s when it is present in output filename template or --auto-number option is given')
  567. filesystem.add_option(
  568. '--restrict-filenames',
  569. action='store_true', dest='restrictfilenames', default=False,
  570. help='Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames')
  571. filesystem.add_option(
  572. '-A', '--auto-number',
  573. action='store_true', dest='autonumber', default=False,
  574. help='[deprecated; use -o "%(autonumber)s-%(title)s.%(ext)s" ] Number downloaded files starting from 00000')
  575. filesystem.add_option(
  576. '-t', '--title',
  577. action='store_true', dest='usetitle', default=False,
  578. help='[deprecated] Use title in file name (default)')
  579. filesystem.add_option(
  580. '-l', '--literal', default=False,
  581. action='store_true', dest='usetitle',
  582. help='[deprecated] Alias of --title')
  583. filesystem.add_option(
  584. '-w', '--no-overwrites',
  585. action='store_true', dest='nooverwrites', default=False,
  586. help='Do not overwrite files')
  587. filesystem.add_option(
  588. '-c', '--continue',
  589. action='store_true', dest='continue_dl', default=True,
  590. help='Force resume of partially downloaded files. By default, youtube-dl will resume downloads if possible.')
  591. filesystem.add_option(
  592. '--no-continue',
  593. action='store_false', dest='continue_dl',
  594. help='Do not resume partially downloaded files (restart from beginning)')
  595. filesystem.add_option(
  596. '--no-part',
  597. action='store_true', dest='nopart', default=False,
  598. help='Do not use .part files - write directly into output file')
  599. filesystem.add_option(
  600. '--no-mtime',
  601. action='store_false', dest='updatetime', default=True,
  602. help='Do not use the Last-modified header to set the file modification time')
  603. filesystem.add_option(
  604. '--write-description',
  605. action='store_true', dest='writedescription', default=False,
  606. help='Write video description to a .description file')
  607. filesystem.add_option(
  608. '--write-info-json',
  609. action='store_true', dest='writeinfojson', default=False,
  610. help='Write video metadata to a .info.json file')
  611. filesystem.add_option(
  612. '--write-annotations',
  613. action='store_true', dest='writeannotations', default=False,
  614. help='Write video annotations to a .annotations.xml file')
  615. filesystem.add_option(
  616. '--load-info',
  617. dest='load_info_filename', metavar='FILE',
  618. help='JSON file containing the video information (created with the "--write-info-json" option)')
  619. filesystem.add_option(
  620. '--cookies',
  621. dest='cookiefile', metavar='FILE',
  622. help='File to read cookies from and dump cookie jar in')
  623. filesystem.add_option(
  624. '--cache-dir', dest='cachedir', default=None, metavar='DIR',
  625. 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.')
  626. filesystem.add_option(
  627. '--no-cache-dir', action='store_const', const=False, dest='cachedir',
  628. help='Disable filesystem caching')
  629. filesystem.add_option(
  630. '--rm-cache-dir',
  631. action='store_true', dest='rm_cachedir',
  632. help='Delete all filesystem cache files')
  633. thumbnail = optparse.OptionGroup(parser, 'Thumbnail images')
  634. thumbnail.add_option(
  635. '--write-thumbnail',
  636. action='store_true', dest='writethumbnail', default=False,
  637. help='Write thumbnail image to disk')
  638. thumbnail.add_option(
  639. '--write-all-thumbnails',
  640. action='store_true', dest='write_all_thumbnails', default=False,
  641. help='Write all thumbnail image formats to disk')
  642. thumbnail.add_option(
  643. '--list-thumbnails',
  644. action='store_true', dest='list_thumbnails', default=False,
  645. help='Simulate and list all available thumbnail formats')
  646. postproc = optparse.OptionGroup(parser, 'Post-processing Options')
  647. postproc.add_option(
  648. '-x', '--extract-audio',
  649. action='store_true', dest='extractaudio', default=False,
  650. help='Convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)')
  651. postproc.add_option(
  652. '--audio-format', metavar='FORMAT', dest='audioformat', default='best',
  653. help='Specify audio format: "best", "aac", "vorbis", "mp3", "m4a", "opus", or "wav"; "%default" by default')
  654. postproc.add_option(
  655. '--audio-quality', metavar='QUALITY',
  656. dest='audioquality', default='5',
  657. 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)')
  658. postproc.add_option(
  659. '--recode-video',
  660. metavar='FORMAT', dest='recodevideo', default=None,
  661. help='Encode the video to another format if necessary (currently supported: mp4|flv|ogg|webm|mkv)')
  662. postproc.add_option(
  663. '-k', '--keep-video',
  664. action='store_true', dest='keepvideo', default=False,
  665. help='Keep the video file on disk after the post-processing; the video is erased by default')
  666. postproc.add_option(
  667. '--no-post-overwrites',
  668. action='store_true', dest='nopostoverwrites', default=False,
  669. help='Do not overwrite post-processed files; the post-processed files are overwritten by default')
  670. postproc.add_option(
  671. '--embed-subs',
  672. action='store_true', dest='embedsubtitles', default=False,
  673. help='Embed subtitles in the video (only for mkv and mp4 videos)')
  674. postproc.add_option(
  675. '--embed-thumbnail',
  676. action='store_true', dest='embedthumbnail', default=False,
  677. help='Embed thumbnail in the audio as cover art')
  678. postproc.add_option(
  679. '--add-metadata',
  680. action='store_true', dest='addmetadata', default=False,
  681. help='Write metadata to the video file')
  682. postproc.add_option(
  683. '--metadata-from-title',
  684. metavar='FORMAT', dest='metafromtitle',
  685. help='Parse additional metadata like song title / artist from the video title. '
  686. 'The format syntax is the same as --output, '
  687. 'the parsed parameters replace existing values. '
  688. 'Additional templates: %(album)s, %(artist)s. '
  689. 'Example: --metadata-from-title "%(artist)s - %(title)s" matches a title like '
  690. '"Coldplay - Paradise"')
  691. postproc.add_option(
  692. '--xattrs',
  693. action='store_true', dest='xattrs', default=False,
  694. help='Write metadata to the video file\'s xattrs (using dublin core and xdg standards)')
  695. postproc.add_option(
  696. '--fixup',
  697. metavar='POLICY', dest='fixup', default='detect_or_warn',
  698. help='Automatically correct known faults of the file. '
  699. 'One of never (do nothing), warn (only emit a warning), '
  700. 'detect_or_warn(the default; fix file if we can, warn otherwise)')
  701. postproc.add_option(
  702. '--prefer-avconv',
  703. action='store_false', dest='prefer_ffmpeg',
  704. help='Prefer avconv over ffmpeg for running the postprocessors (default)')
  705. postproc.add_option(
  706. '--prefer-ffmpeg',
  707. action='store_true', dest='prefer_ffmpeg',
  708. help='Prefer ffmpeg over avconv for running the postprocessors')
  709. postproc.add_option(
  710. '--ffmpeg-location', '--avconv-location', metavar='PATH',
  711. dest='ffmpeg_location',
  712. help='Location of the ffmpeg/avconv binary; either the path to the binary or its containing directory.')
  713. postproc.add_option(
  714. '--exec',
  715. metavar='CMD', dest='exec_cmd',
  716. help='Execute a command on the file after downloading, similar to find\'s -exec syntax. Example: --exec \'adb push {} /sdcard/Music/ && rm {}\'')
  717. postproc.add_option(
  718. '--convert-subtitles', '--convert-subs',
  719. metavar='FORMAT', dest='convertsubtitles', default=None,
  720. help='Convert the subtitles to other format (currently supported: srt|ass|vtt)')
  721. parser.add_option_group(general)
  722. parser.add_option_group(network)
  723. parser.add_option_group(selection)
  724. parser.add_option_group(downloader)
  725. parser.add_option_group(filesystem)
  726. parser.add_option_group(thumbnail)
  727. parser.add_option_group(verbosity)
  728. parser.add_option_group(workarounds)
  729. parser.add_option_group(video_format)
  730. parser.add_option_group(subtitles)
  731. parser.add_option_group(authentication)
  732. parser.add_option_group(postproc)
  733. if overrideArguments is not None:
  734. opts, args = parser.parse_args(overrideArguments)
  735. if opts.verbose:
  736. write_string('[debug] Override config: ' + repr(overrideArguments) + '\n')
  737. else:
  738. def compat_conf(conf):
  739. if sys.version_info < (3,):
  740. return [a.decode(preferredencoding(), 'replace') for a in conf]
  741. return conf
  742. command_line_conf = compat_conf(sys.argv[1:])
  743. if '--ignore-config' in command_line_conf:
  744. system_conf = []
  745. user_conf = []
  746. else:
  747. system_conf = compat_conf(_readOptions('/etc/youtube-dl.conf'))
  748. if '--ignore-config' in system_conf:
  749. user_conf = []
  750. else:
  751. user_conf = compat_conf(_readUserConf())
  752. argv = system_conf + user_conf + command_line_conf
  753. opts, args = parser.parse_args(argv)
  754. if opts.verbose:
  755. write_string('[debug] System config: ' + repr(_hide_login_info(system_conf)) + '\n')
  756. write_string('[debug] User config: ' + repr(_hide_login_info(user_conf)) + '\n')
  757. write_string('[debug] Command-line args: ' + repr(_hide_login_info(command_line_conf)) + '\n')
  758. return parser, opts, args