daanelson
/
dev-test
- Public
- 0 runs
Run daanelson/dev-test 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 |
---|---|---|---|
prompt |
string
|
Prompt for inpainting the masked area
|
|
input_video |
string
|
Original video to be inpainted
|
|
mask_video |
string
|
Mask video (white areas will be inpainted). Leave blank for video-to-video
|
|
negative_prompt |
string
|
|
Negative prompt
|
strength |
number
|
0.9
Max: 1 |
Strength of inpainting effect, 1.0 is full regeneration
|
guide_scale |
number
|
5
Min: 1 Max: 15 |
Guidance scale for prompt adherence
|
sampling_steps |
integer
|
50
Min: 20 Max: 100 |
Number of sampling steps
|
inpaint_fixup_steps |
integer
|
0
Max: 10 |
Number of steps for final inpaint fixup. Ignored when in video-to-video mode (when mask_video is empty)
|
expand_mask |
integer
|
10
Max: 100 |
Expand the mask by a number of pixels
|
frames_per_second |
integer
|
16
Min: 5 Max: 30 |
Output video FPS
|
seed |
integer
|
-1
|
Random seed. Leave blank for random
|
{
"type": "object",
"title": "Input",
"required": [
"prompt",
"input_video"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"default": -1,
"x-order": 10,
"description": "Random seed. Leave blank for random"
},
"prompt": {
"type": "string",
"title": "Prompt",
"x-order": 0,
"description": "Prompt for inpainting the masked area"
},
"strength": {
"type": "number",
"title": "Strength",
"default": 0.9,
"maximum": 1,
"minimum": 0,
"x-order": 4,
"description": "Strength of inpainting effect, 1.0 is full regeneration"
},
"mask_video": {
"type": "string",
"title": "Mask Video",
"format": "uri",
"x-order": 2,
"description": "Mask video (white areas will be inpainted). Leave blank for video-to-video"
},
"expand_mask": {
"type": "integer",
"title": "Expand Mask",
"default": 10,
"maximum": 100,
"minimum": 0,
"x-order": 8,
"description": "Expand the mask by a number of pixels"
},
"guide_scale": {
"type": "number",
"title": "Guide Scale",
"default": 5,
"maximum": 15,
"minimum": 1,
"x-order": 5,
"description": "Guidance scale for prompt adherence"
},
"input_video": {
"type": "string",
"title": "Input Video",
"format": "uri",
"x-order": 1,
"description": "Original video to be inpainted"
},
"sampling_steps": {
"type": "integer",
"title": "Sampling Steps",
"default": 50,
"maximum": 100,
"minimum": 20,
"x-order": 6,
"description": "Number of sampling steps"
},
"negative_prompt": {
"type": "string",
"title": "Negative Prompt",
"default": "",
"x-order": 3,
"description": "Negative prompt"
},
"frames_per_second": {
"type": "integer",
"title": "Frames Per Second",
"default": 16,
"maximum": 30,
"minimum": 5,
"x-order": 9,
"description": "Output video FPS"
},
"inpaint_fixup_steps": {
"type": "integer",
"title": "Inpaint Fixup Steps",
"default": 0,
"maximum": 10,
"minimum": 0,
"x-order": 7,
"description": "Number of steps for final inpaint fixup. Ignored when in video-to-video mode (when mask_video is empty)"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
{
"type": "string",
"title": "Output",
"format": "uri"
}