zf-kbot/md-me-video-watermark-remover-1
Run zf-kbot/md-me-video-watermark-remover-1 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 |
|---|---|---|---|
| apikey |
string
|
Access key.
|
|
| video |
string
|
Input video
|
|
| version |
None
|
v1
|
Watermark backend
|
| mask_stage |
string
|
|
v1 JSON mask stages (1-based, inclusive; start_frame=0 aliases the first frame)
|
| max_fps |
integer
|
30
Min: 1 Max: 240 |
v1 maximum output FPS
|
| max_size |
integer
|
1920
Min: 1 Max: 8192 |
v1 maximum output long edge
|
| preview_time |
integer
|
5
Min: 1 Max: 3600 |
v1 preview seconds
|
| download_preview |
boolean
|
False
|
v1 process only the preview
|
| mask |
string
|
v3 static mask; required after low-confidence Gemini/Veo detection
|
|
| duration_seconds |
number
|
0
|
v3 duration; zero processes all frames
|
| preview |
boolean
|
False
|
v3 preview mode
|
| preview_max_long_edge |
integer
|
960
Min: 256 Max: 4096 |
v3 preview long-edge cap
|
| seed |
integer
|
-1
Min: -1 Max: 1125899906842624 |
v3 random seed; -1 randomizes
|
{
"type": "object",
"title": "Input",
"required": [
"apikey",
"video"
],
"properties": {
"mask": {
"type": "string",
"title": "Mask",
"format": "uri",
"x-order": 8,
"nullable": true,
"description": "v3 static mask; required after low-confidence Gemini/Veo detection"
},
"seed": {
"type": "integer",
"title": "Seed",
"default": -1,
"maximum": 1125899906842624,
"minimum": -1,
"x-order": 12,
"description": "v3 random seed; -1 randomizes"
},
"video": {
"type": "string",
"title": "Video",
"format": "uri",
"x-order": 1,
"description": "Input video"
},
"apikey": {
"type": "string",
"title": "Apikey",
"format": "password",
"x-order": 0,
"writeOnly": true,
"description": "Access key.",
"x-cog-secret": true
},
"max_fps": {
"type": "integer",
"title": "Max Fps",
"default": 30,
"maximum": 240,
"minimum": 1,
"x-order": 4,
"description": "v1 maximum output FPS"
},
"preview": {
"type": "boolean",
"title": "Preview",
"default": false,
"x-order": 10,
"description": "v3 preview mode"
},
"version": {
"enum": [
"v1",
"v2",
"v3"
],
"type": "string",
"title": "version",
"description": "Watermark backend",
"default": "v1",
"x-order": 2
},
"max_size": {
"type": "integer",
"title": "Max Size",
"default": 1920,
"maximum": 8192,
"minimum": 1,
"x-order": 5,
"description": "v1 maximum output long edge"
},
"mask_stage": {
"type": "string",
"title": "Mask Stage",
"default": "",
"x-order": 3,
"description": "v1 JSON mask stages (1-based, inclusive; start_frame=0 aliases the first frame)"
},
"preview_time": {
"type": "integer",
"title": "Preview Time",
"default": 5,
"maximum": 3600,
"minimum": 1,
"x-order": 6,
"description": "v1 preview seconds"
},
"download_preview": {
"type": "boolean",
"title": "Download Preview",
"default": false,
"x-order": 7,
"description": "v1 process only the preview"
},
"duration_seconds": {
"type": "number",
"title": "Duration Seconds",
"default": 0,
"minimum": 0,
"x-order": 9,
"description": "v3 duration; zero processes all frames"
},
"preview_max_long_edge": {
"type": "integer",
"title": "Preview Max Long Edge",
"default": 960,
"maximum": 4096,
"minimum": 256,
"x-order": 11,
"description": "v3 preview long-edge cap"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
{
"type": "string",
"title": "Output",
"format": "uri"
}