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.

888 lines
40 KiB

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