Stable Video Diffusion — Image to Video video
Animate a single still into a short clip with Stable Video Diffusion. Load the SVD checkpoint, feed your image, sample the video latents, decode to frames. Heavy — needs a capable GPU.
Models: svd_xt.safetensors · 6 nodes
Workflow JSON
{
"1": {
"class_type": "LoadImage",
"inputs": {
"image": "your-image.png"
}
},
"3": {
"class_type": "KSampler",
"inputs": {
"seed": 0,
"steps": 20,
"cfg": 2.5,
"sampler_name": "euler",
"scheduler": "karras",
"denoise": 1,
"model": [
"15",
0
],
"positive": [
"12",
0
],
"negative": [
"12",
1
],
"latent_image": [
"12",
2
]
}
},
"8": {
"class_type": "VAEDecode",
"inputs": {
"samples": [
"3",
0
],
"vae": [
"15",
2
]
}
},
"9": {
"class_type": "SaveImage",
"inputs": {
"filename_prefix": "MELEK-svd",
"images": [
"8",
0
]
}
},
"12": {
"class_type": "SVD_img2vid_Conditioning",
"inputs": {
"width": 1024,
"height": 576,
"video_frames": 14,
"motion_bucket_id": 127,
"fps": 6,
"augmentation_level": 0,
"clip_vision": [
"15",
1
],
"init_image": [
"1",
0
],
"vae": [
"15",
2
]
}
},
"15": {
"class_type": "ImageOnlyCheckpointLoader",
"inputs": {
"ckpt_name": "svd_xt.safetensors"
}
}
}