import json for --dump-json
This commit is contained in:
parent
9d1538182f
commit
8694c60000
2 changed files with 3 additions and 2 deletions
|
@ -5,6 +5,7 @@ from __future__ import absolute_import
|
|||
|
||||
import errno
|
||||
import io
|
||||
import json
|
||||
import os
|
||||
import re
|
||||
import shutil
|
||||
|
@ -84,7 +85,7 @@ class YoutubeDL(object):
|
|||
forcethumbnail: Force printing thumbnail URL.
|
||||
forcedescription: Force printing description.
|
||||
forcefilename: Force printing final filename.
|
||||
forcejson: Force printing json information.
|
||||
forcejson: Force printing info_dict as JSON.
|
||||
simulate: Do not download the video files.
|
||||
format: Video format code.
|
||||
format_limit: Highest quality format to try.
|
||||
|
|
|
@ -308,7 +308,7 @@ def parseOpts(overrideArguments=None):
|
|||
help='simulate, quiet but print output format', default=False)
|
||||
verbosity.add_option('-j', '--dump-json',
|
||||
action='store_true', dest='dumpjson',
|
||||
help='simulate, quiet but print json information', default=False)
|
||||
help='simulate, quiet but print JSON information', default=False)
|
||||
verbosity.add_option('--newline',
|
||||
action='store_true', dest='progress_with_newline', help='output progress bar as new lines', default=False)
|
||||
verbosity.add_option('--no-progress',
|
||||
|
|
Loading…
Reference in a new issue