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

Function print_command_help

scenedetect/_cli/__init__.py:153–158  ·  view source on GitHub ↗

Print help/usage for a given command. Modifies `ctx` in-place.

(ctx: click.Context, command: click.Command)

Source from the content-addressed store, hash-verified

151
152
153def print_command_help(ctx: click.Context, command: click.Command):
154 """Print help/usage for a given command. Modifies `ctx` in-place."""
155 ctx.info_name = command.name
156 ctx.command = command
157 click.echo("")
158 click.echo(command.get_help(ctx))
159
160
161SCENEDETECT_COMMAND_HELP = """PySceneDetect is a scene cut/transition detection program. PySceneDetect takes an input video, runs detection on it, and uses the resulting scene information to generate output. The syntax for using PySceneDetect is:

Callers 1

help_commandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected