inference.topaz.proteus.upscale.v1
Schema
Section titled “Schema”{ "type": "object", "required": [ "type" ], "properties": { "type": { "type": "string", "enum": [ "inference.topaz.proteus.upscale.v1" ] }, "config": { "type": "object", "properties": { "video": { "description": "The filename of the input video to upscale.", "type": "string", "format": "filename", "example": "input.mp4" }, "scale": { "description": "Upscale factor. Ignored if width and height are both set.", "type": "integer", "enum": [ 2, 4 ], "default": 2 }, "width": { "description": "Desired output width in pixels. Must be provided together with height.", "type": "integer", "minimum": 1, "maximum": 16000, "examples": [ 3840, 7680 ] }, "height": { "description": "Desired output height in pixels. Must be provided together with width.", "type": "integer", "minimum": 1, "maximum": 16000, "examples": [ 2160, 4320 ] } } } }}