Rename --custom-meta to --custom-metadata. Esplain --custom-metadata activating --add-metadata

This commit is contained in:
fnord 2015-07-24 03:47:26 -05:00
parent a95e069102
commit 489e08cdf4

View File

@ -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',