aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dlc/options.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dlc/options.py')
-rw-r--r--youtube_dlc/options.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/youtube_dlc/options.py b/youtube_dlc/options.py
index e85006a87..f2878e468 100644
--- a/youtube_dlc/options.py
+++ b/youtube_dlc/options.py
@@ -444,6 +444,14 @@ def parseOpts(overrideArguments=None):
action='store_true', dest='listformats',
help='List all available formats of requested videos')
video_format.add_option(
+ '--list-formats-as-table',
+ action='store_true', dest='listformats_table', default=False,
+ help='Present the output of -F in a more tabular form')
+ video_format.add_option(
+ '--list-formats-old',
+ action='store_false', dest='listformats_table',
+ help=optparse.SUPPRESS_HELP)
+ video_format.add_option(
'--youtube-include-dash-manifest',
action='store_true', dest='youtube_include_dash_manifest', default=True,
help=optparse.SUPPRESS_HELP)