mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-10-03 12:37:12 +00:00
[core] Support explicit --no-list-formats
option
This commit is contained in:
parent
9223fcc48a
commit
617d4e6466
|
@ -404,6 +404,10 @@ def parseOpts(overrideArguments=None):
|
|||
'-F', '--list-formats',
|
||||
action='store_true', dest='listformats',
|
||||
help='List all available formats of requested videos')
|
||||
video_format.add_option(
|
||||
'--no-list-formats',
|
||||
action='store_false', dest='listformats',
|
||||
help='Do not list available formats of requested videos (default)')
|
||||
video_format.add_option(
|
||||
'--youtube-include-dash-manifest',
|
||||
action='store_true', dest='youtube_include_dash_manifest', default=True,
|
||||
|
|
Loading…
Reference in a new issue