Create a new Clipkit project
create_projectStart a new video by creating a blank Clipkit project with specified width, height, duration, and frame rate, returning a project ID for later use. Pass an existing project ID to reset it.
Instructions
Create a new, blank Clipkit project with the given dimensions and duration, and return its project_id. Defaults: 1920×1080, 10 seconds, 30 fps, output_format "mp4". Call this first when starting a new video. Pass an existing project_id to reset that project to blank; omit it to start a fresh project (note the returned id for subsequent tools).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| width | No | Composition width in pixels. Default 1920. | |
| height | No | Composition height in pixels. Default 1080. | |
| duration | No | Composition duration in seconds. Default 10. | |
| frame_rate | No | Frame rate. Default 30. | |
| project_id | No | Which project to act on — the id returned by create_project / set_project / create_promo / load_project. Omit when working on a single local project. | |
| output_dither | No | Anti-banding output dither — DEFAULT ON, leave unset. Pass false for byte-exact undithered output, or { amplitude, pattern } to tune. Stops gradients / soft shadows / blur from showing 8-bit banding; deterministic. | |
| output_format | No | Output container/codec. Default "mp4". | |
| background_color | No | Hex color, e.g. "#000000". |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| width | No | ||
| height | No | ||
| duration | No | ||
| frame_rate | No | ||
| project_id | Yes | Id of the created project — pass to subsequent tools. | |
| output_format | No |