import_folder
Import media files from a specified folder into the current Adobe Premiere Pro project, optionally organizing them into a named bin and including subfolders recursively.
Instructions
Imports all media files from a folder into the current Premiere Pro project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
binName | No | The name of the bin to import the media into | |
folderPath | Yes | The absolute path to the folder containing media files | |
recursive | No | Whether to import from subfolders recursively |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"binName": {
"description": "The name of the bin to import the media into",
"type": "string"
},
"folderPath": {
"description": "The absolute path to the folder containing media files",
"type": "string"
},
"recursive": {
"description": "Whether to import from subfolders recursively",
"type": "boolean"
}
},
"required": [
"folderPath"
],
"type": "object"
}