mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-09 22:24:23 +08:00
update DB
This commit is contained in:
parent
7f1efc18cc
commit
a3a3a310d6
@ -739,6 +739,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "custom node for ComfyUI to perform simple math operations"
|
||||
},
|
||||
{
|
||||
"author": "cubiq",
|
||||
"title": "ComfyUI_IPAdapter_plus",
|
||||
"reference": "https://github.com/cubiq/ComfyUI_IPAdapter_plus",
|
||||
"files": [
|
||||
"https://github.com/cubiq/ComfyUI_IPAdapter_plus"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI reference implementation for IPAdapter models. The code is mostly taken from the original IPAdapter repository and laksjdjf's implementation, all credit goes to them. I just made the extension closer to ComfyUI philosophy."
|
||||
},
|
||||
{
|
||||
"author": "shockz0rz",
|
||||
"title": "InterpolateEverything",
|
||||
@ -1559,6 +1569,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "This package contains three nodes to help you compute optical flow between pairs of images, usually adjacent frames in a video, visualize the flow, and apply the flow to another image of the same dimensions. Most of the code is from Deforum, so this is released under the same license (MIT)."
|
||||
},
|
||||
{
|
||||
"author": "ealkanat",
|
||||
"title": "ComfyUI Easy Padding",
|
||||
"reference": "https://github.com/ealkanat/comfyui_easy_padding",
|
||||
"files": [
|
||||
"https://github.com/ealkanat/comfyui_easy_padding"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI Easy Padding is a simple custom ComfyUI node that helps you to add padding to images on ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "taabata",
|
||||
"title": "Syrian Falcon Nodes",
|
||||
|
||||
@ -344,6 +344,7 @@
|
||||
"Scribble_XDoG_Preprocessor",
|
||||
"SemSegPreprocessor",
|
||||
"ShufflePreprocessor",
|
||||
"TilePreprocessor",
|
||||
"UniFormer-SemSegPreprocessor",
|
||||
"Zoe-DepthMapPreprocessor"
|
||||
],
|
||||
@ -1291,6 +1292,29 @@
|
||||
"title_aux": "asymmetric-tiling-comfyui"
|
||||
}
|
||||
],
|
||||
"https://github.com/alt-key-project/comfyui-dream-project": [
|
||||
[
|
||||
"Beat Curve [Dream]",
|
||||
"CSV Curve [Dream]",
|
||||
"CSV Generator [Dream]",
|
||||
"Common Frame Dimensions [Dream]",
|
||||
"FFMPEG Video Encoder [Dream]",
|
||||
"File Count [Dream]",
|
||||
"Frame Counter (Directory) [Dream]",
|
||||
"Frame Counter (Simple) [Dream]",
|
||||
"Frame Counter Offset [Dream]",
|
||||
"Image Motion [Dream]",
|
||||
"Image Sequence Blend [Dream]",
|
||||
"Image Sequence Loader [Dream]",
|
||||
"Image Sequence Saver [Dream]",
|
||||
"Image Sequence Tweening [Dream]",
|
||||
"Linear Curve [Dream]",
|
||||
"Sine Curve [Dream]"
|
||||
],
|
||||
{
|
||||
"title_aux": "Dream Project Animation"
|
||||
}
|
||||
],
|
||||
"https://github.com/andersxa/comfyui-PromptAttention": [
|
||||
[
|
||||
"CLIPAttentionMaskEncode"
|
||||
@ -1342,6 +1366,7 @@
|
||||
"LoraSyntaxProcessor",
|
||||
"Mikey Sampler",
|
||||
"Mikey Sampler Base Only",
|
||||
"Mikey Sampler Base Only Advanced",
|
||||
"Mikey Sampler Tiled",
|
||||
"Mikey Sampler Tiled Base Only",
|
||||
"MikeySamplerTiledAdvanced",
|
||||
@ -1563,6 +1588,15 @@
|
||||
"title_aux": "ComfyQR-scanning-nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/cubiq/ComfyUI_IPAdapter_plus": [
|
||||
[
|
||||
"IPAdapterApply",
|
||||
"IPAdapterModelLoader"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_IPAdapter_plus"
|
||||
}
|
||||
],
|
||||
"https://github.com/cubiq/ComfyUI_SimpleMath": [
|
||||
[
|
||||
"SimpleMath",
|
||||
@ -1628,6 +1662,14 @@
|
||||
"title_aux": "ComfyUI-Vextra-Nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/ealkanat/comfyui_easy_padding": [
|
||||
[
|
||||
"comfyui-easy-padding"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI Easy Padding"
|
||||
}
|
||||
],
|
||||
"https://github.com/evanspearman/ComfyMath": [
|
||||
[
|
||||
"CM_BoolBinaryOperation",
|
||||
@ -2032,6 +2074,7 @@
|
||||
[
|
||||
"Canny",
|
||||
"Canny_Preprocessor_Provider_for_SEGS //Inspire",
|
||||
"KSampler //Inspire",
|
||||
"LoraLoaderBlockWeight //Inspire",
|
||||
"OpenPose_Preprocessor_Provider_for_SEGS //Inspire",
|
||||
"OpenposePreprocessor",
|
||||
|
||||
@ -1,5 +1,25 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "cubiq",
|
||||
"title": "ComfyUI_IPAdapter_plus",
|
||||
"reference": "https://github.com/cubiq/ComfyUI_IPAdapter_plus",
|
||||
"files": [
|
||||
"https://github.com/cubiq/ComfyUI_IPAdapter_plus"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI reference implementation for IPAdapter models. The code is mostly taken from the original IPAdapter repository and laksjdjf's implementation, all credit goes to them. I just made the extension closer to ComfyUI philosophy."
|
||||
},
|
||||
{
|
||||
"author": "ealkanat",
|
||||
"title": "ComfyUI Easy Padding",
|
||||
"reference": "https://github.com/ealkanat/comfyui_easy_padding",
|
||||
"files": [
|
||||
"https://github.com/ealkanat/comfyui_easy_padding"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI Easy Padding is a simple custom ComfyUI node that helps you to add padding to images on ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "seanlynch",
|
||||
"title": "ComfyUI Optical Flow",
|
||||
|
||||
@ -344,6 +344,7 @@
|
||||
"Scribble_XDoG_Preprocessor",
|
||||
"SemSegPreprocessor",
|
||||
"ShufflePreprocessor",
|
||||
"TilePreprocessor",
|
||||
"UniFormer-SemSegPreprocessor",
|
||||
"Zoe-DepthMapPreprocessor"
|
||||
],
|
||||
@ -1291,6 +1292,29 @@
|
||||
"title_aux": "asymmetric-tiling-comfyui"
|
||||
}
|
||||
],
|
||||
"https://github.com/alt-key-project/comfyui-dream-project": [
|
||||
[
|
||||
"Beat Curve [Dream]",
|
||||
"CSV Curve [Dream]",
|
||||
"CSV Generator [Dream]",
|
||||
"Common Frame Dimensions [Dream]",
|
||||
"FFMPEG Video Encoder [Dream]",
|
||||
"File Count [Dream]",
|
||||
"Frame Counter (Directory) [Dream]",
|
||||
"Frame Counter (Simple) [Dream]",
|
||||
"Frame Counter Offset [Dream]",
|
||||
"Image Motion [Dream]",
|
||||
"Image Sequence Blend [Dream]",
|
||||
"Image Sequence Loader [Dream]",
|
||||
"Image Sequence Saver [Dream]",
|
||||
"Image Sequence Tweening [Dream]",
|
||||
"Linear Curve [Dream]",
|
||||
"Sine Curve [Dream]"
|
||||
],
|
||||
{
|
||||
"title_aux": "Dream Project Animation"
|
||||
}
|
||||
],
|
||||
"https://github.com/andersxa/comfyui-PromptAttention": [
|
||||
[
|
||||
"CLIPAttentionMaskEncode"
|
||||
@ -1342,6 +1366,7 @@
|
||||
"LoraSyntaxProcessor",
|
||||
"Mikey Sampler",
|
||||
"Mikey Sampler Base Only",
|
||||
"Mikey Sampler Base Only Advanced",
|
||||
"Mikey Sampler Tiled",
|
||||
"Mikey Sampler Tiled Base Only",
|
||||
"MikeySamplerTiledAdvanced",
|
||||
@ -1563,6 +1588,15 @@
|
||||
"title_aux": "ComfyQR-scanning-nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/cubiq/ComfyUI_IPAdapter_plus": [
|
||||
[
|
||||
"IPAdapterApply",
|
||||
"IPAdapterModelLoader"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_IPAdapter_plus"
|
||||
}
|
||||
],
|
||||
"https://github.com/cubiq/ComfyUI_SimpleMath": [
|
||||
[
|
||||
"SimpleMath",
|
||||
@ -1628,6 +1662,14 @@
|
||||
"title_aux": "ComfyUI-Vextra-Nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/ealkanat/comfyui_easy_padding": [
|
||||
[
|
||||
"comfyui-easy-padding"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI Easy Padding"
|
||||
}
|
||||
],
|
||||
"https://github.com/evanspearman/ComfyMath": [
|
||||
[
|
||||
"CM_BoolBinaryOperation",
|
||||
@ -2032,6 +2074,7 @@
|
||||
[
|
||||
"Canny",
|
||||
"Canny_Preprocessor_Provider_for_SEGS //Inspire",
|
||||
"KSampler //Inspire",
|
||||
"LoraLoaderBlockWeight //Inspire",
|
||||
"OpenPose_Preprocessor_Provider_for_SEGS //Inspire",
|
||||
"OpenposePreprocessor",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user