zf-kbot/md-me-flashvsr-3
Public
23
runs
Run zf-kbot/md-me-flashvsr-3 with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| video |
string
|
Input video with at least 21 decodable frames
|
|
| scale |
number
|
1.5
Min: 1.5 Max: 2 |
None
|
| duration_seconds |
number
|
3
Min: 1 Max: 90 |
Process a half-open prefix [0, duration), capped at 90 seconds
|
| color_fix |
boolean
|
True
|
Apply FlashVSR color correction
|
| seed |
integer
|
1
Max: 4294967295 |
Deterministic inference seed
|
{
"type": "object",
"title": "Input",
"required": [
"video"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"default": 1,
"maximum": 4294967295,
"minimum": 0,
"x-order": 4,
"description": "Deterministic inference seed"
},
"scale": {
"type": "number",
"title": "Scale",
"default": 1.5,
"maximum": 2,
"minimum": 1.5,
"x-order": 1
},
"video": {
"type": "string",
"title": "Video",
"format": "uri",
"x-order": 0,
"description": "Input video with at least 21 decodable frames"
},
"color_fix": {
"type": "boolean",
"title": "Color Fix",
"default": true,
"x-order": 3,
"description": "Apply FlashVSR color correction"
},
"duration_seconds": {
"type": "number",
"title": "Duration Seconds",
"default": 3,
"maximum": 90,
"minimum": 1,
"x-order": 2,
"description": "Process a half-open prefix [0, duration), capped at 90 seconds"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}