remotion_create_project
Create a new video project with customizable themes, resolution settings, and project structure for generating professional videos using Remotion framework.
Instructions
Create a new Remotion video project.
Creates a complete Remotion project with package.json, TypeScript config,
and project structure ready for video generation.
Args:
name: Project name (will be used as directory name)
theme: Theme to use (tech, finance, education, lifestyle, gaming, minimal, business)
fps: Frames per second (default: 30)
width: Video width in pixels (default: 1920 for 1080p)
height: Video height in pixels (default: 1080 for 1080p)
Returns:
JSON with project information
Example:
project = await remotion_create_project(
name="my_video",
theme="tech",
fps=30,
width=1920,
height=1080
)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fps | No | ||
height | No | ||
name | Yes | ||
theme | No | tech | |
width | No |
Input Schema (JSON Schema)
{
"properties": {
"fps": {
"default": 30,
"type": "integer"
},
"height": {
"default": 1080,
"type": "integer"
},
"name": {
"type": "string"
},
"theme": {
"default": "tech",
"type": "string"
},
"width": {
"default": 1920,
"type": "integer"
}
},
"required": [
"name"
],
"type": "object"
}