remotion_add_title_scene
Add an animated title card to video compositions with customizable text, subtitle, duration, style variants, and animation effects for professional video introductions.
Instructions
Add a title scene to the current composition.
Creates a full-screen animated title card, typically used at the beginning
of a video. The title scene will be added to the timeline sequentially.
Args:
text: Main title text
subtitle: Optional subtitle text
duration_seconds: How long to show (default: 3.0 seconds)
variant: Style variant (minimal, standard, bold, kinetic)
animation: Animation style (fade_zoom, slide_up, typewriter, blur_in, split)
Returns:
JSON with component info
Example:
await remotion_add_title_scene(
text="The Future of AI",
subtitle="Transforming Technology",
duration_seconds=3.0,
variant="bold",
animation="fade_zoom"
)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
animation | No | fade_zoom | |
duration_seconds | No | ||
subtitle | No | ||
text | Yes | ||
variant | No | bold |
Input Schema (JSON Schema)
{
"properties": {
"animation": {
"default": "fade_zoom",
"type": "string"
},
"duration_seconds": {
"default": 3,
"type": "number"
},
"subtitle": {
"type": "string"
},
"text": {
"type": "string"
},
"variant": {
"default": "bold",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}