create_project
Initiate a new Adobe Premiere Pro project by defining a project name and saving location, enabling users to start video editing tasks efficiently.
Instructions
Creates a new Adobe Premiere Pro project. Use this when the user wants to start a new video editing project from scratch.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | The absolute directory path where the project file should be saved, e.g., "/Users/user/Documents/Videos" | |
name | Yes | The name for the new project, e.g., "My Summer Vacation" |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"location": {
"description": "The absolute directory path where the project file should be saved, e.g., \"/Users/user/Documents/Videos\"",
"type": "string"
},
"name": {
"description": "The name for the new project, e.g., \"My Summer Vacation\"",
"type": "string"
}
},
"required": [
"name",
"location"
],
"type": "object"
}