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

Function save_fcp_command

scenedetect/_cli/__init__.py:1738–1752  ·  view source on GitHub ↗
(
    ctx: click.Context,
    filename: str | None,
    format: str | None,
    output: str | None,
)

Source from the content-addressed store, hash-verified

1736)
1737@click.pass_context
1738def save_fcp_command(
1739 ctx: click.Context,
1740 filename: str | None,
1741 format: str | None,
1742 output: str | None,
1743):
1744 ctx = ctx.obj
1745 assert isinstance(ctx, CliContext)
1746
1747 save_fcp_args = {
1748 "filename": ctx.config.get_value("save-fcp", "filename", filename),
1749 "format": ctx.config.get_value("save-fcp", "format", format),
1750 "output": ctx.config.get_value("save-fcp", "output", output),
1751 }
1752 ctx.add_command(cli_commands.save_fcp, save_fcp_args)
1753
1754
1755SAVE_OTIO_HELP = """Save cuts as an OTIO timeline.

Callers

nothing calls this directly

Calls 2

get_valueMethod · 0.80
add_commandMethod · 0.80

Tested by

no test coverage detected