diff options
author | Sergey M․ <dstftw@gmail.com> | 2021-01-22 23:51:22 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2021-01-22 23:54:29 +0700 |
commit | 142c584063ec02406e636522fe11d0d2be22b299 (patch) | |
tree | 3073603126c336bc0eec337bba14882c08075275 /youtube_dl/options.py | |
parent | 4542e3e55538a8e7115bde777e7ddbd781c2e446 (diff) |
Introduce --output-na-placeholder (closes #27896)
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 3000ba41e..6b0c62e19 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -690,6 +690,10 @@ def parseOpts(overrideArguments=None): dest='outtmpl', metavar='TEMPLATE', help=('Output filename template, see the "OUTPUT TEMPLATE" for all the info')) filesystem.add_option( + '--output-na-placeholder', + dest='outtmpl_na_placeholder', metavar='PLACEHOLDER', default='NA', + help=('Placeholder value for unavailable meta fields in output filename template (default is "%default")')) + filesystem.add_option( '--autonumber-size', dest='autonumber_size', metavar='NUMBER', type=int, help=optparse.SUPPRESS_HELP) |