create_multicam_sequence
Synchronize multiple video clips into a multicamera sequence using audio, timecode, or markers, streamlining multi-angle editing in Adobe Premiere Pro.
Instructions
Creates a multicamera source sequence from multiple video clips, synchronized by audio or timecode.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cameraFiles | Yes | An array of absolute file paths for each camera angle | |
name | Yes | The name for the new multicam sequence | |
syncMethod | Yes | The method to use for synchronizing the clips |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cameraFiles": {
"description": "An array of absolute file paths for each camera angle",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "The name for the new multicam sequence",
"type": "string"
},
"syncMethod": {
"description": "The method to use for synchronizing the clips",
"enum": [
"timecode",
"audio",
"markers"
],
"type": "string"
}
},
"required": [
"name",
"cameraFiles",
"syncMethod"
],
"type": "object"
}