← Back to Models

topazlabs/video-upscale

Topaz Labs Video Upscale - Enhance video resolution and frame rate

video video-processing

Pricing

Base: 1 credits per request

Adjustments:

target_resolution multiplier:
720p: 1x
1080p: 1x
4k: 4.4x
target_fps multiplier:
30: 1x
60: 2.2x

Example Pricing:

Base request: 2 credits
Range: 1 - 14 credits

Input Parameters

Video required string

Video file to upscale

target_resolution string

Target resolution

Default: 1080p

Options: 720p, 1080p, 4k

Target Fps integer

Target FPS (choose from 15-60fps)

Default: 30

Directives

Advanced Keys:
Hidden Keys:
Raw JSON
{
    "identifier": "topazlabs/video-upscale",
    "type": "video",
    "category": "video-processing",
    "description": "Topaz Labs Video Upscale - Enhance video resolution and frame rate",
    "pricing": {
        "version": 1,
        "base": {
            "unit": "request",
            "credits": 1
        },
        "adjustments": [
            {
                "type": "multiplier_map",
                "key": "target_resolution",
                "map": {
                    "720p": 1,
                    "1080p": 1,
                    "4k": 4.4
                },
                "default": 1
            },
            {
                "type": "multiplier_map",
                "key": "target_fps",
                "map": {
                    "30": 1,
                    "60": 2.2
                },
                "default": 1
            }
        ],
        "display": {
            "min_credits": 1,
            "max_credits": 14
        }
    },
    "directives": {
        "hiddenKeys": [],
        "advancedKeys": []
    },
    "inputSchema": {
        "type": "object",
        "title": "Input",
        "required": [
            "video"
        ],
        "properties": {
            "video": {
                "type": "string",
                "title": "Video",
                "format": "uri",
                "x-order": 0,
                "description": "Video file to upscale"
            },
            "target_resolution": {
                "enum": [
                    "720p",
                    "1080p",
                    "4k"
                ],
                "type": "string",
                "title": "target_resolution",
                "description": "Target resolution",
                "default": "1080p",
                "x-order": 1
            },
            "target_fps": {
                "type": "integer",
                "title": "Target Fps",
                "default": 30,
                "maximum": 60,
                "minimum": 15,
                "x-order": 2,
                "description": "Target FPS (choose from 15-60fps)"
            }
        }
    },
    "outputSchema": {
        "type": "string",
        "title": "Output",
        "format": "uri"
    }
}