import_media
Adds a media file (video, audio, image) to your Premiere Pro project by specifying the file path and optional bin name. Simplifies media import for automated workflows.
Instructions
Imports a media file (video, audio, image) into the current Premiere Pro project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
binName | No | The name of the bin to import the media into. If not provided, it will be imported into the root. | |
filePath | Yes | The absolute path to the media file to import |
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. If not provided, it will be imported into the root.",
"type": "string"
},
"filePath": {
"description": "The absolute path to the media file to import",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}