Render video with preset
Description
Connection
Name
Description
Required
Category
Input Schema
{
"description": "Render Video with preset node input.",
"properties": {
"images": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "string"
}
],
"description": "List of images to use for rendering",
"title": "List of images"
},
"caption": {
"description": "Url to a srt file containing the caption",
"title": "Url to caption file",
"type": "string"
},
"voice": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Url to voice file",
"title": "Voice"
},
"voice_volume": {
"anyOf": [
{
"maximum": 1,
"minimum": 0,
"type": "number"
},
{
"type": "null"
}
],
"default": 0.1,
"description": "Voice volume",
"title": "Voice Volume"
},
"audio": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Url to audio file",
"title": "Audio"
},
"audio_volume": {
"anyOf": [
{
"maximum": 1,
"minimum": 0,
"type": "number"
},
{
"type": "null"
}
],
"default": 0.1,
"description": "Audio volume",
"title": "Audio Volume"
},
"duration": {
"default": 20,
"description": "Duration",
"minimum": 0,
"title": "Duration",
"type": "number"
},
"config": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Config",
"title": "Config"
}
},
"required": [
"images",
"caption",
"voice"
],
"title": "RenderVideoWithPresetNodeInput",
"type": "object"
}Output Schema
How It Works
Usage Examples
Example 1: Create Marketing Video with Voiceover
Example 2: Tutorial Video with Background Music
Example 3: Simple Slideshow with Custom Config
Common Use Cases
Error Handling
Error Type
Cause
Solution
Notes
Last updated