save_project_as
Save your Adobe Premiere Pro project with a new name and location to organize or back up your work efficiently.
Instructions
Saves the current project with a new name and location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | The absolute directory path where the project should be saved | |
name | Yes | The new name for the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"location": {
"description": "The absolute directory path where the project should be saved",
"type": "string"
},
"name": {
"description": "The new name for the project",
"type": "string"
}
},
"required": [
"name",
"location"
],
"type": "object"
}