philz1337x
/
video-style-transfer
Video style transfer. Use at ClarityAI.co. Twitter/X: @philz1337x
Run philz1337x/video-style-transfer 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
|
|
prompt |
string
|
best quality, perfect anime illustration, light,
|
prompt
|
negative_prompt |
string
|
verybadimagenegative_v1.3
|
negative prompt
|
end_frame |
integer
|
0
|
frame where to end
|
target_fps |
integer
|
0
|
target fps
|
input_width |
integer
|
1024
|
input width
|
input_height |
integer
|
1024
|
input height
|
output_width |
integer
|
1024
|
output width
|
output_height |
integer
|
1024
|
output height
|
cfg_scale |
number
|
3
|
cfg scale
|
clip_skip |
integer
|
2
|
clip skip
|
num_inference_steps |
integer
|
10
|
num inference steps
|
animatediff_batch_size |
integer
|
24
|
animatediff batch size
|
animatediff_stride |
integer
|
16
|
animatediff stride
|
{
"type": "object",
"title": "Input",
"required": [
"video"
],
"properties": {
"video": {
"type": "string",
"title": "Video",
"format": "uri",
"x-order": 0,
"description": "input video"
},
"prompt": {
"type": "string",
"title": "Prompt",
"default": "best quality, perfect anime illustration, light, ",
"x-order": 1,
"description": "prompt"
},
"cfg_scale": {
"type": "number",
"title": "Cfg Scale",
"default": 3,
"x-order": 9,
"description": "cfg scale"
},
"clip_skip": {
"type": "integer",
"title": "Clip Skip",
"default": 2,
"x-order": 10,
"description": "clip skip"
},
"end_frame": {
"type": "integer",
"title": "End Frame",
"default": 0,
"x-order": 3,
"description": "frame where to end"
},
"target_fps": {
"type": "integer",
"title": "Target Fps",
"default": 0,
"x-order": 4,
"description": "target fps"
},
"input_width": {
"type": "integer",
"title": "Input Width",
"default": 1024,
"x-order": 5,
"description": "input width"
},
"input_height": {
"type": "integer",
"title": "Input Height",
"default": 1024,
"x-order": 6,
"description": "input height"
},
"output_width": {
"type": "integer",
"title": "Output Width",
"default": 1024,
"x-order": 7,
"description": "output width"
},
"output_height": {
"type": "integer",
"title": "Output Height",
"default": 1024,
"x-order": 8,
"description": "output height"
},
"negative_prompt": {
"type": "string",
"title": "Negative Prompt",
"default": "verybadimagenegative_v1.3",
"x-order": 2,
"description": "negative prompt"
},
"animatediff_stride": {
"type": "integer",
"title": "Animatediff Stride",
"default": 16,
"x-order": 13,
"description": "animatediff stride"
},
"num_inference_steps": {
"type": "integer",
"title": "Num Inference Steps",
"default": 10,
"x-order": 11,
"description": "num inference steps"
},
"animatediff_batch_size": {
"type": "integer",
"title": "Animatediff Batch Size",
"default": 24,
"x-order": 12,
"description": "animatediff batch size"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"title": "Output"
}