add_b_roll
Insert B-roll clips as overlays into a main video to enhance storytelling or add context. Specify input paths for clips and output video path for final rendering using this tool.
Instructions
Inserts B-roll clips into a main video as overlays. Args listed in previous messages (docstring unchanged for brevity here)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
broll_clips | Yes | ||
main_video_path | Yes | ||
output_video_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"broll_clips": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Broll Clips",
"type": "array"
},
"main_video_path": {
"title": "Main Video Path",
"type": "string"
},
"output_video_path": {
"title": "Output Video Path",
"type": "string"
}
},
"required": [
"main_video_path",
"broll_clips",
"output_video_path"
],
"title": "add_b_rollArguments",
"type": "object"
}