From 489e08cdf412272256bb4b7371af347bec080d1e Mon Sep 17 00:00:00 2001 From: fnord Date: Fri, 24 Jul 2015 03:47:26 -0500 Subject: [PATCH] Rename --custom-meta to --custom-metadata. Esplain --custom-metadata activating --add-metadata --- youtube_dl/options.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/youtube_dl/options.py b/youtube_dl/options.py index d7ec8fe8b..7e1de9568 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -708,15 +708,16 @@ def parseOpts(overrideArguments=None): action='store_true', dest='addmetadata', default=False, help='Write metadata to the video file') postproc.add_option( - '--custom-meta', + '--custom-metadata', action='append', dest='custommeta', default=[], metavar='TAG=FORMAT', help='Write specific information to a metadata tag.' 'Syntax: "tagname=string to add with %(format)s" ' 'The formatting syntax is the same as output. ' - 'Example: --custom-meta "comment=%(webpage_url)s\\n%(description)s" will ' + 'Example: --custom-metadata "comment=%(webpage_url)s\\n%(description)s" will ' 'add a line with the url, then the description in the "comment" tag. ' 'Tags are format-specific, common ones include: artist, comment, title, copyright, uploader. ' - 'This can be invoked multiple times for different tags.') + 'This can be invoked multiple times for different tags. ' + '--add-metadata is activated with this option.') postproc.add_option( '--metadata-from-title', metavar='FORMAT', dest='metafromtitle',