batchProcess
Automate video editing tasks with a single command. Clip, merge, or split multiple videos in bulk using predefined configurations, saving time and effort through streamlined batch processing.
Instructions
批量处理视频任务
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tasks | Yes | 批量任务配置数组 |
Input Schema (JSON Schema)
{
"properties": {
"tasks": {
"description": "批量任务配置数组",
"items": {
"properties": {
"options": {
"description": "任务参数",
"type": "object"
},
"type": {
"description": "任务类型",
"enum": [
"clip",
"merge",
"split"
],
"type": "string"
}
},
"required": [
"type",
"options"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"tasks"
],
"type": "object"
}