mirror of
https://github.com/MichaByte/highlight-video-maker.git
synced 2025-12-06 03:33:48 -05:00
fix help formatting and bump version
This commit is contained in:
parent
e18a23cd1a
commit
68041ce3cc
2 changed files with 6 additions and 6 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "highlight_video_maker"
|
||||
version = "0.0.1"
|
||||
version = "0.0.2"
|
||||
authors = [{ name = "Micha Albert", email = "micha@2231.tech" }]
|
||||
description = "A utility to take several video inputs, take the loudest points, and create a compilation of them"
|
||||
readme = "README.md"
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ logger: Logger
|
|||
default="INFO",
|
||||
type=str,
|
||||
required=False,
|
||||
metavar="Sets the logging verbosity. Choose between"
|
||||
help="Sets the logging verbosity. Choose between"
|
||||
"DEBUG, INFO (default), WARNING, ERROR, or CRITICAL."
|
||||
"Can be uppercase or lowercase.",
|
||||
)
|
||||
|
|
@ -119,12 +119,12 @@ def get_amplitude_of_segment(clip: Path):
|
|||
@cli.command()
|
||||
@click.option(
|
||||
"--input-dir",
|
||||
metavar="The input directory to get the source videos from.",
|
||||
help="The input directory to get the source videos from.",
|
||||
type=click.Path(exists=True, resolve_path=True, path_type=Path),
|
||||
)
|
||||
@click.option(
|
||||
"--watermark-image",
|
||||
metavar="The path of the watermark image "
|
||||
help="The path of the watermark image "
|
||||
"to overlay over the final output. "
|
||||
"It must exist. "
|
||||
"It will not be scaled, so it should be "
|
||||
|
|
@ -133,14 +133,14 @@ def get_amplitude_of_segment(clip: Path):
|
|||
)
|
||||
@click.option(
|
||||
"--horiz-output-file",
|
||||
metavar="The path to output the final video to. "
|
||||
help="The path to output the final video to. "
|
||||
"It should not exist and must either be an absolute path "
|
||||
'or start with "./".',
|
||||
type=click.Path(exists=False, resolve_path=True, path_type=Path),
|
||||
)
|
||||
@click.option(
|
||||
"--vert-output-file",
|
||||
metavar="The path to output the final video to. "
|
||||
help="The path to output the final video to. "
|
||||
"It should not exist and must either be an absolute path "
|
||||
'or start with "./".',
|
||||
type=click.Path(exists=False, resolve_path=True, path_type=Path),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue