mixvideo-v2/apps/desktop/src/examples/sample-workflow.json

89 lines
1.6 KiB
JSON
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"1": {
"class_type": "LoadImage",
"inputs": {
"image": "input_image.jpg"
},
"_meta": {
"title": "1🖼输入图片加载器"
}
},
"2": {
"class_type": "CLIPTextEncode",
"inputs": {
"text": "a beautiful portrait",
"clip": ["4", 1]
},
"_meta": {
"title": "2🐕遮罩边缘滑条快速模糊"
}
},
"3": {
"class_type": "CLIPTextEncode",
"inputs": {
"text": "blurry, low quality",
"clip": ["4", 1]
},
"_meta": {
"title": "3❌负面提示词编码器"
}
},
"4": {
"class_type": "CheckpointLoaderSimple",
"inputs": {
"ckpt_name": "model.safetensors"
},
"_meta": {
"title": "4🎯模型加载器"
}
},
"5": {
"class_type": "KSampler",
"inputs": {
"seed": 42,
"steps": 20,
"cfg": 7.5,
"sampler_name": "euler",
"scheduler": "normal",
"denoise": 1.0,
"model": ["4", 0],
"positive": ["2", 0],
"negative": ["3", 0],
"latent_image": ["6", 0]
},
"_meta": {
"title": "5🎨采样器"
}
},
"6": {
"class_type": "VAEEncode",
"inputs": {
"pixels": ["1", 0],
"vae": ["4", 2]
},
"_meta": {
"title": "6🔄VAE编码器"
}
},
"7": {
"class_type": "VAEDecode",
"inputs": {
"samples": ["5", 0],
"vae": ["4", 2]
},
"_meta": {
"title": "7✨VAE解码器"
}
},
"8": {
"class_type": "SaveImage",
"inputs": {
"filename_prefix": "output",
"images": ["7", 0]
},
"_meta": {
"title": "8💾图片保存器"
}
}
}