create_bin
Organize media in Adobe Premiere Pro by creating a new bin in the project panel. Specify the bin name and optionally place it inside a parent bin for structured project management.
Instructions
Creates a new bin (folder) in the project panel to organize media.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name for the new bin | |
parentBinName | No | The name of the parent bin to create this bin inside |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name for the new bin",
"type": "string"
},
"parentBinName": {
"description": "The name of the parent bin to create this bin inside",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}