updateClips
Update multiple Clips simultaneously by modifying properties like duration, frame rate, and playback speed. Use the tool on the 3D-MCP server to streamline operations on 3D creative software.
Instructions
Update multiple Clips in a single operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of Clips to update with their IDs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Array of Clips to update with their IDs",
"items": {
"additionalProperties": false,
"properties": {
"duration": {
"description": "Duration in seconds",
"minimum": 0,
"type": "number"
},
"enabled": {
"default": true,
"description": "Whether this clip is enabled",
"type": "boolean"
},
"frameRate": {
"default": 24,
"description": "Frame rate in frames per second",
"exclusiveMinimum": 0,
"type": "number"
},
"ids": {
"description": "Clip identifiers to update",
"items": {
"type": "string"
},
"type": "array"
},
"loop": {
"default": false,
"description": "Whether the clip should loop",
"type": "boolean"
},
"metadata": {
"additionalProperties": {},
"description": "Additional tool-specific metadata",
"type": "object"
},
"name": {
"description": "Display name",
"type": "string"
},
"speed": {
"default": 1,
"description": "Playback speed multiplier",
"type": "number"
},
"startTime": {
"default": 0,
"description": "Start time in seconds",
"type": "number"
}
},
"required": [
"ids"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}