jichengdu
/
wan-i2v
- Public
- 10 runs
Run jichengdu/wan-i2v 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 |
---|---|---|---|
image |
string
|
examples/i2v_input.JPG
|
Input image to start generating from
|
prompt |
string
|
Summer beach vacation style, a white cat wearing sunglasses sits on a surfboard. The fluffy-furred feline gazes directly at the camera with a relaxed expression. Blurred beach scenery forms the background featuring crystal-clear waters, distant green hills, and a blue sky dotted with white clouds. The cat assumes a naturally relaxed posture, as if savoring the sea breeze and warm sunlight. A close-up shot highlights the feline's intricate details and the refreshing atmosphere of the seaside.
|
Prompt for video generation
|
num_frames |
integer
|
81
Min: 81 Max: 100 |
Number of video frames. 81 frames give the best results
|
max_area |
string
|
1280*720
|
Maximum area of generated image. The input image will shrink to fit these dimensions
|
frames_per_second |
integer
|
16
Min: 5 Max: 24 |
Frames per second
|
sample_steps |
integer
|
30
Min: 1 Max: 40 |
Number of generation steps
|
sample_guide_scale |
number
|
5
Max: 10 |
Higher guide scale makes prompt adherence better
|
sample_shift |
number
|
5
Min: 1 Max: 10 |
Sample shift factor
|
seed |
integer
|
Random seed. Leave blank for random
|
{
"type": "object",
"title": "Input",
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"x-order": 8,
"description": "Random seed. Leave blank for random"
},
"image": {
"type": "string",
"title": "Image",
"format": "uri",
"default": "examples/i2v_input.JPG",
"x-order": 0,
"description": "Input image to start generating from"
},
"prompt": {
"type": "string",
"title": "Prompt",
"default": "Summer beach vacation style, a white cat wearing sunglasses sits on a surfboard. The fluffy-furred feline gazes directly at the camera with a relaxed expression. Blurred beach scenery forms the background featuring crystal-clear waters, distant green hills, and a blue sky dotted with white clouds. The cat assumes a naturally relaxed posture, as if savoring the sea breeze and warm sunlight. A close-up shot highlights the feline's intricate details and the refreshing atmosphere of the seaside.",
"x-order": 1,
"description": "Prompt for video generation"
},
"max_area": {
"type": "string",
"title": "Max Area",
"default": "1280*720",
"x-order": 3,
"description": "Maximum area of generated image. The input image will shrink to fit these dimensions"
},
"num_frames": {
"type": "integer",
"title": "Num Frames",
"default": 81,
"maximum": 100,
"minimum": 81,
"x-order": 2,
"description": "Number of video frames. 81 frames give the best results"
},
"sample_shift": {
"type": "number",
"title": "Sample Shift",
"default": 5,
"maximum": 10,
"minimum": 1,
"x-order": 7,
"description": "Sample shift factor"
},
"sample_steps": {
"type": "integer",
"title": "Sample Steps",
"default": 30,
"maximum": 40,
"minimum": 1,
"x-order": 5,
"description": "Number of generation steps"
},
"frames_per_second": {
"type": "integer",
"title": "Frames Per Second",
"default": 16,
"maximum": 24,
"minimum": 5,
"x-order": 4,
"description": "Frames per second"
},
"sample_guide_scale": {
"type": "number",
"title": "Sample Guide Scale",
"default": 5,
"maximum": 10,
"minimum": 0,
"x-order": 6,
"description": "Higher guide scale makes prompt adherence better"
}
}
}
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"
}