MCPcopy Index your code
hub / github.com/Breakthrough/PySceneDetect / save_qp_command

Function save_qp_command

scenedetect/_cli/__init__.py:1689–1703  ·  view source on GitHub ↗
(
    ctx: click.Context,
    filename: str | None,
    output: str | None,
    disable_shift: bool | None,
)

Source from the content-addressed store, hash-verified

1687)
1688@click.pass_context
1689def save_qp_command(
1690 ctx: click.Context,
1691 filename: str | None,
1692 output: str | None,
1693 disable_shift: bool | None,
1694):
1695 ctx = ctx.obj
1696 assert isinstance(ctx, CliContext)
1697
1698 save_qp_args = {
1699 "filename": ctx.config.get_value("save-qp", "filename", filename),
1700 "output": ctx.config.get_value("save-qp", "output", output),
1701 "disable_shift": ctx.config.get_value("save-qp", "disable-shift", disable_shift),
1702 }
1703 ctx.add_command(cli_commands.save_qp, save_qp_args)
1704
1705
1706SAVE_FCP_HELP = """Save cuts in Final Cut Pro XML format (FCP7 xmeml or FCPX)."""

Callers

nothing calls this directly

Calls 2

get_valueMethod · 0.80
add_commandMethod · 0.80

Tested by

no test coverage detected