Create CapCut Draft
capcut_create_draftCreate a new video editing draft by setting width, height, and frame rate. Use this draft as a canvas to add media, text, and effects.
Instructions
Create a new video editing draft with specified dimensions and frame rate.
This tool initializes a new draft project that can be edited by adding videos, audio, text, images, and effects.
Args:
width (number): Video width in pixels (360-4096, default: 1920)
height (number): Video height in pixels (360-4096, default: 1080)
fps (number): Frames per second (24-120, default: 30)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: { "draft_id": string, // Unique draft identifier for subsequent operations "width": number, // Video width "height": number, // Video height "fps": number, // Frame rate "duration": number, // Current duration (starts at 0) "created_at": string // ISO timestamp }
Examples:
Create HD draft: params with width=1920, height=1080
Create vertical video: params with width=1080, height=1920
Create 4K draft: params with width=3840, height=2160
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| width | No | Video width in pixels | |
| height | No | Video height in pixels | |
| fps | No | Frames per second | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |