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.

903 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. geo = optparse.OptionGroup(parser, 'Geo Restriction')
  208. geo.add_option(
  209. '--geo-verification-proxy',
  210. dest='geo_verification_proxy', default=None, metavar='URL',
  211. help='Use this proxy to verify the IP address for some geo-restricted sites. '
  212. 'The default proxy specified by --proxy (or none, if the options is not present) is used for the actual downloading.')
  213. geo.add_option(
  214. '--cn-verification-proxy',
  215. dest='cn_verification_proxy', default=None, metavar='URL',
  216. help=optparse.SUPPRESS_HELP)
  217. geo.add_option(
  218. '--geo-bypass',
  219. action='store_true', dest='geo_bypass', default=True,
  220. help='Bypass geographic restriction via faking X-Forwarded-For HTTP header (experimental)')
  221. geo.add_option(
  222. '--no-geo-bypass',
  223. action='store_false', dest='geo_bypass', default=True,
  224. help='Do not bypass geographic restriction via faking X-Forwarded-For HTTP header (experimental)')
  225. geo.add_option(
  226. '--geo-bypass-country', metavar='CODE',
  227. dest='geo_bypass_country', default=None,
  228. help='Force bypass geographic restriction with explicitly provided two-letter ISO 3166-2 country code (experimental)')
  229. selection = optparse.OptionGroup(parser, 'Video Selection')
  230. selection.add_option(
  231. '--playlist-start',
  232. dest='playliststart', metavar='NUMBER', default=1, type=int,
  233. help='Playlist video to start at (default is %default)')
  234. selection.add_option(
  235. '--playlist-end',
  236. dest='playlistend', metavar='NUMBER', default=None, type=int,
  237. help='Playlist video to end at (default is last)')
  238. selection.add_option(
  239. '--playlist-items',
  240. dest='playlist_items', metavar='ITEM_SPEC', default=None,
  241. 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.')
  242. selection.add_option(
  243. '--match-title',
  244. dest='matchtitle', metavar='REGEX',
  245. help='Download only matching titles (regex or caseless sub-string)')
  246. selection.add_option(
  247. '--reject-title',
  248. dest='rejecttitle', metavar='REGEX',
  249. help='Skip download for matching titles (regex or caseless sub-string)')
  250. selection.add_option(
  251. '--max-downloads',
  252. dest='max_downloads', metavar='NUMBER', type=int, default=None,
  253. help='Abort after downloading NUMBER files')
  254. selection.add_option(
  255. '--min-filesize',
  256. metavar='SIZE', dest='min_filesize', default=None,
  257. help='Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)')
  258. selection.add_option(
  259. '--max-filesize',
  260. metavar='SIZE', dest='max_filesize', default=None,
  261. help='Do not download any videos larger than SIZE (e.g. 50k or 44.6m)')
  262. selection.add_option(
  263. '--date',
  264. metavar='DATE', dest='date', default=None,
  265. help='Download only videos uploaded in this date')
  266. selection.add_option(
  267. '--datebefore',
  268. metavar='DATE', dest='datebefore', default=None,
  269. help='Download only videos uploaded on or before this date (i.e. inclusive)')
  270. selection.add_option(
  271. '--dateafter',
  272. metavar='DATE', dest='dateafter', default=None,
  273. help='Download only videos uploaded on or after this date (i.e. inclusive)')
  274. selection.add_option(
  275. '--min-views',
  276. metavar='COUNT', dest='min_views', default=None, type=int,
  277. help='Do not download any videos with less than COUNT views')
  278. selection.add_option(
  279. '--max-views',
  280. metavar='COUNT', dest='max_views', default=None, type=int,
  281. help='Do not download any videos with more than COUNT views')
  282. selection.add_option(
  283. '--match-filter',
  284. metavar='FILTER', dest='match_filter', default=None,
  285. help=(
  286. 'Generic video filter. '
  287. 'Specify any key (see help for -o for a list of available keys) to '
  288. 'match if the key is present, '
  289. '!key to check if the key is not present, '
  290. 'key > NUMBER (like "comment_count > 12", also works with '
  291. '>=, <, <=, !=, =) to compare against a number, '
  292. 'key = \'LITERAL\' (like "uploader = \'Mike Smith\'", also works with !=) '
  293. 'to match against a string literal '
  294. 'and & to require multiple matches. '
  295. 'Values which are not known are excluded unless you '
  296. 'put a question mark (?) after the operator. '
  297. 'For example, to only match videos that have been liked more than '
  298. '100 times and disliked less than 50 times (or the dislike '
  299. 'functionality is not available at the given service), but who '
  300. 'also have a description, use --match-filter '
  301. '"like_count > 100 & dislike_count <? 50 & description" .'
  302. ))
  303. selection.add_option(
  304. '--no-playlist',
  305. action='store_true', dest='noplaylist', default=False,
  306. help='Download only the video, if the URL refers to a video and a playlist.')
  307. selection.add_option(
  308. '--yes-playlist',
  309. action='store_false', dest='noplaylist', default=False,
  310. help='Download the playlist, if the URL refers to a video and a playlist.')
  311. selection.add_option(
  312. '--age-limit',
  313. metavar='YEARS', dest='age_limit', default=None, type=int,
  314. help='Download only videos suitable for the given age')
  315. selection.add_option(
  316. '--download-archive', metavar='FILE',
  317. dest='download_archive',
  318. help='Download only videos not listed in the archive file. Record the IDs of all downloaded videos in it.')
  319. selection.add_option(
  320. '--include-ads',
  321. dest='include_ads', action='store_true',
  322. help='Download advertisements as well (experimental)')
  323. authentication = optparse.OptionGroup(parser, 'Authentication Options')
  324. authentication.add_option(
  325. '-u', '--username',
  326. dest='username', metavar='USERNAME',
  327. help='Login with this account ID')
  328. authentication.add_option(
  329. '-p', '--password',
  330. dest='password', metavar='PASSWORD',
  331. help='Account password. If this option is left out, youtube-dl will ask interactively.')
  332. authentication.add_option(
  333. '-2', '--twofactor',
  334. dest='twofactor', metavar='TWOFACTOR',
  335. help='Two-factor authentication code')
  336. authentication.add_option(
  337. '-n', '--netrc',
  338. action='store_true', dest='usenetrc', default=False,
  339. help='Use .netrc authentication data')
  340. authentication.add_option(
  341. '--video-password',
  342. dest='videopassword', metavar='PASSWORD',
  343. help='Video password (vimeo, smotri, youku)')
  344. adobe_pass = optparse.OptionGroup(parser, 'Adobe Pass Options')
  345. adobe_pass.add_option(
  346. '--ap-mso',
  347. dest='ap_mso', metavar='MSO',
  348. help='Adobe Pass multiple-system operator (TV provider) identifier, use --ap-list-mso for a list of available MSOs')
  349. adobe_pass.add_option(
  350. '--ap-username',
  351. dest='ap_username', metavar='USERNAME',
  352. help='Multiple-system operator account login')
  353. adobe_pass.add_option(
  354. '--ap-password',
  355. dest='ap_password', metavar='PASSWORD',
  356. help='Multiple-system operator account password. If this option is left out, youtube-dl will ask interactively.')
  357. adobe_pass.add_option(
  358. '--ap-list-mso',
  359. action='store_true', dest='ap_list_mso', default=False,
  360. help='List all supported multiple-system operators')
  361. video_format = optparse.OptionGroup(parser, 'Video Format Options')
  362. video_format.add_option(
  363. '-f', '--format',
  364. action='store', dest='format', metavar='FORMAT', default=None,
  365. help='Video format code, see the "FORMAT SELECTION" for all the info')
  366. video_format.add_option(
  367. '--all-formats',
  368. action='store_const', dest='format', const='all',
  369. help='Download all available video formats')
  370. video_format.add_option(
  371. '--prefer-free-formats',
  372. action='store_true', dest='prefer_free_formats', default=False,
  373. help='Prefer free video formats unless a specific one is requested')
  374. video_format.add_option(
  375. '-F', '--list-formats',
  376. action='store_true', dest='listformats',
  377. help='List all available formats of requested videos')
  378. video_format.add_option(
  379. '--youtube-include-dash-manifest',
  380. action='store_true', dest='youtube_include_dash_manifest', default=True,
  381. help=optparse.SUPPRESS_HELP)
  382. video_format.add_option(
  383. '--youtube-skip-dash-manifest',
  384. action='store_false', dest='youtube_include_dash_manifest',
  385. help='Do not download the DASH manifests and related data on YouTube videos')
  386. video_format.add_option(
  387. '--merge-output-format',
  388. action='store', dest='merge_output_format', metavar='FORMAT', default=None,
  389. help=(
  390. 'If a merge is required (e.g. bestvideo+bestaudio), '
  391. 'output to given container format. One of mkv, mp4, ogg, webm, flv. '
  392. 'Ignored if no merge is required'))
  393. subtitles = optparse.OptionGroup(parser, 'Subtitle Options')
  394. subtitles.add_option(
  395. '--write-sub', '--write-srt',
  396. action='store_true', dest='writesubtitles', default=False,
  397. help='Write subtitle file')
  398. subtitles.add_option(
  399. '--write-auto-sub', '--write-automatic-sub',
  400. action='store_true', dest='writeautomaticsub', default=False,
  401. help='Write automatically generated subtitle file (YouTube only)')
  402. subtitles.add_option(
  403. '--all-subs',
  404. action='store_true', dest='allsubtitles', default=False,
  405. help='Download all the available subtitles of the video')
  406. subtitles.add_option(
  407. '--list-subs',
  408. action='store_true', dest='listsubtitles', default=False,
  409. help='List all available subtitles for the video')
  410. subtitles.add_option(
  411. '--sub-format',
  412. action='store', dest='subtitlesformat', metavar='FORMAT', default='best',
  413. help='Subtitle format, accepts formats preference, for example: "srt" or "ass/srt/best"')
  414. subtitles.add_option(
  415. '--sub-lang', '--sub-langs', '--srt-lang',
  416. action='callback', dest='subtitleslangs', metavar='LANGS', type='str',
  417. default=[], callback=_comma_separated_values_options_callback,
  418. help='Languages of the subtitles to download (optional) separated by commas, use --list-subs for available language tags')
  419. downloader = optparse.OptionGroup(parser, 'Download Options')
  420. downloader.add_option(
  421. '-r', '--limit-rate', '--rate-limit',
  422. dest='ratelimit', metavar='RATE',
  423. help='Maximum download rate in bytes per second (e.g. 50K or 4.2M)')
  424. downloader.add_option(
  425. '-R', '--retries',
  426. dest='retries', metavar='RETRIES', default=10,
  427. help='Number of retries (default is %default), or "infinite".')
  428. downloader.add_option(
  429. '--fragment-retries',
  430. dest='fragment_retries', metavar='RETRIES', default=10,
  431. help='Number of retries for a fragment (default is %default), or "infinite" (DASH, hlsnative and ISM)')
  432. downloader.add_option(
  433. '--skip-unavailable-fragments',
  434. action='store_true', dest='skip_unavailable_fragments', default=True,
  435. help='Skip unavailable fragments (DASH, hlsnative and ISM)')
  436. downloader.add_option(
  437. '--abort-on-unavailable-fragment',
  438. action='store_false', dest='skip_unavailable_fragments',
  439. help='Abort downloading when some fragment is not available')
  440. downloader.add_option(
  441. '--buffer-size',
  442. dest='buffersize', metavar='SIZE', default='1024',
  443. help='Size of download buffer (e.g. 1024 or 16K) (default is %default)')
  444. downloader.add_option(
  445. '--no-resize-buffer',
  446. action='store_true', dest='noresizebuffer', default=False,
  447. help='Do not automatically adjust the buffer size. By default, the buffer size is automatically resized from an initial value of SIZE.')
  448. downloader.add_option(
  449. '--test',
  450. action='store_true', dest='test', default=False,
  451. help=optparse.SUPPRESS_HELP)
  452. downloader.add_option(
  453. '--playlist-reverse',
  454. action='store_true',
  455. help='Download playlist videos in reverse order')
  456. downloader.add_option(
  457. '--playlist-random',
  458. action='store_true',
  459. help='Download playlist videos in random order')
  460. downloader.add_option(
  461. '--xattr-set-filesize',
  462. dest='xattr_set_filesize', action='store_true',
  463. help='Set file xattribute ytdl.filesize with expected file size (experimental)')
  464. downloader.add_option(
  465. '--hls-prefer-native',
  466. dest='hls_prefer_native', action='store_true', default=None,
  467. help='Use the native HLS downloader instead of ffmpeg')
  468. downloader.add_option(
  469. '--hls-prefer-ffmpeg',
  470. dest='hls_prefer_native', action='store_false', default=None,
  471. help='Use ffmpeg instead of the native HLS downloader')
  472. downloader.add_option(
  473. '--hls-use-mpegts',
  474. dest='hls_use_mpegts', action='store_true',
  475. help='Use the mpegts container for HLS videos, allowing to play the '
  476. 'video while downloading (some players may not be able to play it)')
  477. downloader.add_option(
  478. '--external-downloader',
  479. dest='external_downloader', metavar='COMMAND',
  480. help='Use the specified external downloader. '
  481. 'Currently supports %s' % ','.join(list_external_downloaders()))
  482. downloader.add_option(
  483. '--external-downloader-args',
  484. dest='external_downloader_args', metavar='ARGS',
  485. help='Give these arguments to the external downloader')
  486. workarounds = optparse.OptionGroup(parser, 'Workarounds')
  487. workarounds.add_option(
  488. '--encoding',
  489. dest='encoding', metavar='ENCODING',
  490. help='Force the specified encoding (experimental)')
  491. workarounds.add_option(
  492. '--no-check-certificate',
  493. action='store_true', dest='no_check_certificate', default=False,
  494. help='Suppress HTTPS certificate validation')
  495. workarounds.add_option(
  496. '--prefer-insecure',
  497. '--prefer-unsecure', action='store_true', dest='prefer_insecure',
  498. help='Use an unencrypted connection to retrieve information about the video. (Currently supported only for YouTube)')
  499. workarounds.add_option(
  500. '--user-agent',
  501. metavar='UA', dest='user_agent',
  502. help='Specify a custom user agent')
  503. workarounds.add_option(
  504. '--referer',
  505. metavar='URL', dest='referer', default=None,
  506. help='Specify a custom referer, use if the video access is restricted to one domain',
  507. )
  508. workarounds.add_option(
  509. '--add-header',
  510. metavar='FIELD:VALUE', dest='headers', action='append',
  511. help='Specify a custom HTTP header and its value, separated by a colon \':\'. You can use this option multiple times',
  512. )
  513. workarounds.add_option(
  514. '--bidi-workaround',
  515. dest='bidi_workaround', action='store_true',
  516. help='Work around terminals that lack bidirectional text support. Requires bidiv or fribidi executable in PATH')
  517. workarounds.add_option(
  518. '--sleep-interval', '--min-sleep-interval', metavar='SECONDS',
  519. dest='sleep_interval', type=float,
  520. help=(
  521. 'Number of seconds to sleep before each download when used alone '
  522. 'or a lower bound of a range for randomized sleep before each download '
  523. '(minimum possible number of seconds to sleep) when used along with '
  524. '--max-sleep-interval.'))
  525. workarounds.add_option(
  526. '--max-sleep-interval', metavar='SECONDS',
  527. dest='max_sleep_interval', type=float,
  528. help=(
  529. 'Upper bound of a range for randomized sleep before each download '
  530. '(maximum possible number of seconds to sleep). Must only be used '
  531. 'along with --min-sleep-interval.'))
  532. verbosity = optparse.OptionGroup(parser, 'Verbosity / Simulation Options')
  533. verbosity.add_option(
  534. '-q', '--quiet',
  535. action='store_true', dest='quiet', default=False,
  536. help='Activate quiet mode')
  537. verbosity.add_option(
  538. '--no-warnings',
  539. dest='no_warnings', action='store_true', default=False,
  540. help='Ignore warnings')
  541. verbosity.add_option(
  542. '-s', '--simulate',
  543. action='store_true', dest='simulate', default=False,
  544. help='Do not download the video and do not write anything to disk')
  545. verbosity.add_option(
  546. '--skip-download',
  547. action='store_true', dest='skip_download', default=False,
  548. help='Do not download the video')
  549. verbosity.add_option(
  550. '-g', '--get-url',
  551. action='store_true', dest='geturl', default=False,
  552. help='Simulate, quiet but print URL')
  553. verbosity.add_option(
  554. '-e', '--get-title',
  555. action='store_true', dest='gettitle', default=False,
  556. help='Simulate, quiet but print title')
  557. verbosity.add_option(
  558. '--get-id',
  559. action='store_true', dest='getid', default=False,
  560. help='Simulate, quiet but print id')
  561. verbosity.add_option(
  562. '--get-thumbnail',
  563. action='store_true', dest='getthumbnail', default=False,
  564. help='Simulate, quiet but print thumbnail URL')
  565. verbosity.add_option(
  566. '--get-description',
  567. action='store_true', dest='getdescription', default=False,
  568. help='Simulate, quiet but print video description')
  569. verbosity.add_option(
  570. '--get-duration',
  571. action='store_true', dest='getduration', default=False,
  572. help='Simulate, quiet but print video length')
  573. verbosity.add_option(
  574. '--get-filename',
  575. action='store_true', dest='getfilename', default=False,
  576. help='Simulate, quiet but print output filename')
  577. verbosity.add_option(
  578. '--get-format',
  579. action='store_true', dest='getformat', default=False,
  580. help='Simulate, quiet but print output format')
  581. verbosity.add_option(
  582. '-j', '--dump-json',
  583. action='store_true', dest='dumpjson', default=False,
  584. help='Simulate, quiet but print JSON information. See --output for a description of available keys.')
  585. verbosity.add_option(
  586. '-J', '--dump-single-json',
  587. action='store_true', dest='dump_single_json', default=False,
  588. 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.')
  589. verbosity.add_option(
  590. '--print-json',
  591. action='store_true', dest='print_json', default=False,
  592. help='Be quiet and print the video information as JSON (video is still being downloaded).',
  593. )
  594. verbosity.add_option(
  595. '--newline',
  596. action='store_true', dest='progress_with_newline', default=False,
  597. help='Output progress bar as new lines')
  598. verbosity.add_option(
  599. '--no-progress',
  600. action='store_true', dest='noprogress', default=False,
  601. help='Do not print progress bar')
  602. verbosity.add_option(
  603. '--console-title',
  604. action='store_true', dest='consoletitle', default=False,
  605. help='Display progress in console titlebar')
  606. verbosity.add_option(
  607. '-v', '--verbose',
  608. action='store_true', dest='verbose', default=False,
  609. help='Print various debugging information')
  610. verbosity.add_option(
  611. '--dump-pages', '--dump-intermediate-pages',
  612. action='store_true', dest='dump_intermediate_pages', default=False,
  613. help='Print downloaded pages encoded using base64 to debug problems (very verbose)')
  614. verbosity.add_option(
  615. '--write-pages',
  616. action='store_true', dest='write_pages', default=False,
  617. help='Write downloaded intermediary pages to files in the current directory to debug problems')
  618. verbosity.add_option(
  619. '--youtube-print-sig-code',
  620. action='store_true', dest='youtube_print_sig_code', default=False,
  621. help=optparse.SUPPRESS_HELP)
  622. verbosity.add_option(
  623. '--print-traffic', '--dump-headers',
  624. dest='debug_printtraffic', action='store_true', default=False,
  625. help='Display sent and read HTTP traffic')
  626. verbosity.add_option(
  627. '-C', '--call-home',
  628. dest='call_home', action='store_true', default=False,
  629. help='Contact the youtube-dl server for debugging')
  630. verbosity.add_option(
  631. '--no-call-home',
  632. dest='call_home', action='store_false', default=False,
  633. help='Do NOT contact the youtube-dl server for debugging')
  634. filesystem = optparse.OptionGroup(parser, 'Filesystem Options')
  635. filesystem.add_option(
  636. '-a', '--batch-file',
  637. dest='batchfile', metavar='FILE',
  638. help='File containing URLs to download (\'-\' for stdin)')
  639. filesystem.add_option(
  640. '--id', default=False,
  641. action='store_true', dest='useid', help='Use only video ID in file name')
  642. filesystem.add_option(
  643. '-o', '--output',
  644. dest='outtmpl', metavar='TEMPLATE',
  645. help=('Output filename template, see the "OUTPUT TEMPLATE" for all the info'))
  646. filesystem.add_option(
  647. '--autonumber-size',
  648. dest='autonumber_size', metavar='NUMBER', type=int,
  649. help=optparse.SUPPRESS_HELP)
  650. filesystem.add_option(
  651. '--autonumber-start',
  652. dest='autonumber_start', metavar='NUMBER', default=1, type=int,
  653. help='Specify the start value for %(autonumber)s (default is %default)')
  654. filesystem.add_option(
  655. '--restrict-filenames',
  656. action='store_true', dest='restrictfilenames', default=False,
  657. help='Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames')
  658. filesystem.add_option(
  659. '-A', '--auto-number',
  660. action='store_true', dest='autonumber', default=False,
  661. help=optparse.SUPPRESS_HELP)
  662. filesystem.add_option(
  663. '-t', '--title',
  664. action='store_true', dest='usetitle', default=False,
  665. help=optparse.SUPPRESS_HELP)
  666. filesystem.add_option(
  667. '-l', '--literal', default=False,
  668. action='store_true', dest='usetitle',
  669. help=optparse.SUPPRESS_HELP)
  670. filesystem.add_option(
  671. '-w', '--no-overwrites',
  672. action='store_true', dest='nooverwrites', default=False,
  673. help='Do not overwrite files')
  674. filesystem.add_option(
  675. '-c', '--continue',
  676. action='store_true', dest='continue_dl', default=True,
  677. help='Force resume of partially downloaded files. By default, youtube-dl will resume downloads if possible.')
  678. filesystem.add_option(
  679. '--no-continue',
  680. action='store_false', dest='continue_dl',
  681. help='Do not resume partially downloaded files (restart from beginning)')
  682. filesystem.add_option(
  683. '--no-part',
  684. action='store_true', dest='nopart', default=False,
  685. help='Do not use .part files - write directly into output file')
  686. filesystem.add_option(
  687. '--no-mtime',
  688. action='store_false', dest='updatetime', default=True,
  689. help='Do not use the Last-modified header to set the file modification time')
  690. filesystem.add_option(
  691. '--write-description',
  692. action='store_true', dest='writedescription', default=False,
  693. help='Write video description to a .description file')
  694. filesystem.add_option(
  695. '--write-info-json',
  696. action='store_true', dest='writeinfojson', default=False,
  697. help='Write video metadata to a .info.json file')
  698. filesystem.add_option(
  699. '--write-annotations',
  700. action='store_true', dest='writeannotations', default=False,
  701. help='Write video annotations to a .annotations.xml file')
  702. filesystem.add_option(
  703. '--load-info-json', '--load-info',
  704. dest='load_info_filename', metavar='FILE',
  705. help='JSON file containing the video information (created with the "--write-info-json" option)')
  706. filesystem.add_option(
  707. '--cookies',
  708. dest='cookiefile', metavar='FILE',
  709. help='File to read cookies from and dump cookie jar in')
  710. filesystem.add_option(
  711. '--cache-dir', dest='cachedir', default=None, metavar='DIR',
  712. 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.')
  713. filesystem.add_option(
  714. '--no-cache-dir', action='store_const', const=False, dest='cachedir',
  715. help='Disable filesystem caching')
  716. filesystem.add_option(
  717. '--rm-cache-dir',
  718. action='store_true', dest='rm_cachedir',
  719. help='Delete all filesystem cache files')
  720. thumbnail = optparse.OptionGroup(parser, 'Thumbnail images')
  721. thumbnail.add_option(
  722. '--write-thumbnail',
  723. action='store_true', dest='writethumbnail', default=False,
  724. help='Write thumbnail image to disk')
  725. thumbnail.add_option(
  726. '--write-all-thumbnails',
  727. action='store_true', dest='write_all_thumbnails', default=False,
  728. help='Write all thumbnail image formats to disk')
  729. thumbnail.add_option(
  730. '--list-thumbnails',
  731. action='store_true', dest='list_thumbnails', default=False,
  732. help='Simulate and list all available thumbnail formats')
  733. postproc = optparse.OptionGroup(parser, 'Post-processing Options')
  734. postproc.add_option(
  735. '-x', '--extract-audio',
  736. action='store_true', dest='extractaudio', default=False,
  737. help='Convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)')
  738. postproc.add_option(
  739. '--audio-format', metavar='FORMAT', dest='audioformat', default='best',
  740. help='Specify audio format: "best", "aac", "flac", "mp3", "m4a", "opus", "vorbis", or "wav"; "%default" by default; No effect without -x')
  741. postproc.add_option(
  742. '--audio-quality', metavar='QUALITY',
  743. dest='audioquality', default='5',
  744. 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)')
  745. postproc.add_option(
  746. '--recode-video',
  747. metavar='FORMAT', dest='recodevideo', default=None,
  748. help='Encode the video to another format if necessary (currently supported: mp4|flv|ogg|webm|mkv|avi)')
  749. postproc.add_option(
  750. '--postprocessor-args',
  751. dest='postprocessor_args', metavar='ARGS',
  752. help='Give these arguments to the postprocessor')
  753. postproc.add_option(
  754. '-k', '--keep-video',
  755. action='store_true', dest='keepvideo', default=False,
  756. help='Keep the video file on disk after the post-processing; the video is erased by default')
  757. postproc.add_option(
  758. '--no-post-overwrites',
  759. action='store_true', dest='nopostoverwrites', default=False,
  760. help='Do not overwrite post-processed files; the post-processed files are overwritten by default')
  761. postproc.add_option(
  762. '--embed-subs',
  763. action='store_true', dest='embedsubtitles', default=False,
  764. help='Embed subtitles in the video (only for mp4, webm and mkv videos)')
  765. postproc.add_option(
  766. '--embed-thumbnail',
  767. action='store_true', dest='embedthumbnail', default=False,
  768. help='Embed thumbnail in the audio as cover art')
  769. postproc.add_option(
  770. '--add-metadata',
  771. action='store_true', dest='addmetadata', default=False,
  772. help='Write metadata to the video file')
  773. postproc.add_option(
  774. '--metadata-from-title',
  775. metavar='FORMAT', dest='metafromtitle',
  776. help='Parse additional metadata like song title / artist from the video title. '
  777. 'The format syntax is the same as --output, '
  778. 'the parsed parameters replace existing values. '
  779. 'Additional templates: %(album)s, %(artist)s. '
  780. 'Example: --metadata-from-title "%(artist)s - %(title)s" matches a title like '
  781. '"Coldplay - Paradise"')
  782. postproc.add_option(
  783. '--xattrs',
  784. action='store_true', dest='xattrs', default=False,
  785. help='Write metadata to the video file\'s xattrs (using dublin core and xdg standards)')
  786. postproc.add_option(
  787. '--fixup',
  788. metavar='POLICY', dest='fixup', default='detect_or_warn',
  789. help='Automatically correct known faults of the file. '
  790. 'One of never (do nothing), warn (only emit a warning), '
  791. 'detect_or_warn (the default; fix file if we can, warn otherwise)')
  792. postproc.add_option(
  793. '--prefer-avconv',
  794. action='store_false', dest='prefer_ffmpeg',
  795. help='Prefer avconv over ffmpeg for running the postprocessors (default)')
  796. postproc.add_option(
  797. '--prefer-ffmpeg',
  798. action='store_true', dest='prefer_ffmpeg',
  799. help='Prefer ffmpeg over avconv for running the postprocessors')
  800. postproc.add_option(
  801. '--ffmpeg-location', '--avconv-location', metavar='PATH',
  802. dest='ffmpeg_location',
  803. help='Location of the ffmpeg/avconv binary; either the path to the binary or its containing directory.')
  804. postproc.add_option(
  805. '--exec',
  806. metavar='CMD', dest='exec_cmd',
  807. help='Execute a command on the file after downloading, similar to find\'s -exec syntax. Example: --exec \'adb push {} /sdcard/Music/ && rm {}\'')
  808. postproc.add_option(
  809. '--convert-subs', '--convert-subtitles',
  810. metavar='FORMAT', dest='convertsubtitles', default=None,
  811. help='Convert the subtitles to other format (currently supported: srt|ass|vtt)')
  812. parser.add_option_group(general)
  813. parser.add_option_group(network)
  814. parser.add_option_group(geo)
  815. parser.add_option_group(selection)
  816. parser.add_option_group(downloader)
  817. parser.add_option_group(filesystem)
  818. parser.add_option_group(thumbnail)
  819. parser.add_option_group(verbosity)
  820. parser.add_option_group(workarounds)
  821. parser.add_option_group(video_format)
  822. parser.add_option_group(subtitles)
  823. parser.add_option_group(authentication)
  824. parser.add_option_group(adobe_pass)
  825. parser.add_option_group(postproc)
  826. if overrideArguments is not None:
  827. opts, args = parser.parse_args(overrideArguments)
  828. if opts.verbose:
  829. write_string('[debug] Override config: ' + repr(overrideArguments) + '\n')
  830. else:
  831. def compat_conf(conf):
  832. if sys.version_info < (3,):
  833. return [a.decode(preferredencoding(), 'replace') for a in conf]
  834. return conf
  835. command_line_conf = compat_conf(sys.argv[1:])
  836. opts, args = parser.parse_args(command_line_conf)
  837. system_conf = user_conf = custom_conf = []
  838. if '--config-location' in command_line_conf:
  839. location = compat_expanduser(opts.config_location)
  840. if os.path.isdir(location):
  841. location = os.path.join(location, 'youtube-dl.conf')
  842. if not os.path.exists(location):
  843. parser.error('config-location %s does not exist.' % location)
  844. custom_conf = _readOptions(location)
  845. elif '--ignore-config' in command_line_conf:
  846. pass
  847. else:
  848. system_conf = _readOptions('/etc/youtube-dl.conf')
  849. if '--ignore-config' not in system_conf:
  850. user_conf = _readUserConf()
  851. argv = system_conf + user_conf + custom_conf + command_line_conf
  852. opts, args = parser.parse_args(argv)
  853. if opts.verbose:
  854. for conf_label, conf in (
  855. ('System config', system_conf),
  856. ('User config', user_conf),
  857. ('Custom config', custom_conf),
  858. ('Command-line args', command_line_conf)):
  859. write_string('[debug] %s: %s\n' % (conf_label, repr(_hide_login_info(conf))))
  860. return parser, opts, args