upscale_generation
Increase video resolution to 540p, 720p, 1080p, or 4k using a generation ID for enhanced clarity and quality in Luma Dream Machine workflows.
Instructions
Upscales a video generation to higher resolution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
generation_id | Yes | ||
resolution | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"Resolution": {
"enum": [
"540p",
"720p",
"1080p",
"4k"
],
"title": "Resolution",
"type": "string"
}
},
"properties": {
"generation_id": {
"title": "Generation Id",
"type": "string"
},
"resolution": {
"$ref": "#/$defs/Resolution"
}
},
"required": [
"generation_id",
"resolution"
],
"title": "UpscaleGenerationInput",
"type": "object"
}