MCPcopy Create free account
hub / github.com/Breakthrough/PySceneDetect / about_command

Function about_command

scenedetect/_cli/__init__.py:437–444  ·  view source on GitHub ↗

Print license/copyright info.

(ctx: click.Context)

Source from the content-addressed store, hash-verified

435@click.command("about", cls=Command, add_help_option=False)
436@click.pass_context
437def about_command(ctx: click.Context):
438 """Print license/copyright info."""
439 click.echo("")
440 click.echo(click.style(LINE_SEPARATOR, fg="cyan"))
441 click.echo(click.style(f" About PySceneDetect {PROGRAM_VERSION}", fg="yellow"))
442 click.echo(click.style(LINE_SEPARATOR, fg="cyan"))
443 click.echo(ABOUT_STRING)
444 ctx.exit()
445
446
447@click.command("version", cls=Command, add_help_option=False)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected