Print PySceneDetect version.
(ctx: click.Context)
| 447 | @click.command("version", cls=Command, add_help_option=False) |
| 448 | @click.pass_context |
| 449 | def version_command(ctx: click.Context): |
| 450 | """Print PySceneDetect version.""" |
| 451 | click.echo("") |
| 452 | click.echo(get_system_version_info()) |
| 453 | ctx.exit() |
| 454 | |
| 455 | |
| 456 | TIME_COMMAND_HELP = """Set start/end/duration of input video. |
nothing calls this directly
no test coverage detected