mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-17 02:12:58 +08:00
Merge branch 'main' into draft-v4
This commit is contained in:
commit
7e51286313
@ -304,18 +304,46 @@ class ManagedResult:
|
||||
return self
|
||||
|
||||
|
||||
class NormalizedKeyDict(dict):
|
||||
def _normalize_key(self, key):
|
||||
if isinstance(key, str):
|
||||
return key.strip().lower()
|
||||
return key
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
super().__setitem__(self._normalize_key(key), value)
|
||||
|
||||
def __getitem__(self, key):
|
||||
return super().__getitem__(self._normalize_key(key))
|
||||
|
||||
def __delitem__(self, key):
|
||||
return super().__delitem__(self._normalize_key(key))
|
||||
|
||||
def __contains__(self, key):
|
||||
return super().__contains__(self._normalize_key(key))
|
||||
|
||||
def get(self, key, default=None):
|
||||
return super().get(self._normalize_key(key), default)
|
||||
|
||||
def setdefault(self, key, default=None):
|
||||
return super().setdefault(self._normalize_key(key), default)
|
||||
|
||||
def pop(self, key, default=None):
|
||||
return super().pop(self._normalize_key(key), default)
|
||||
|
||||
|
||||
class UnifiedManager:
|
||||
def __init__(self):
|
||||
self.installed_node_packages: dict[str, InstalledNodePackage] = {}
|
||||
|
||||
self.cnr_inactive_nodes = {} # node_id -> node_version -> fullpath
|
||||
self.nightly_inactive_nodes = {} # node_id -> fullpath
|
||||
self.unknown_inactive_nodes = {} # node_id -> repo url * fullpath
|
||||
self.active_nodes = {} # node_id -> node_version * fullpath
|
||||
self.unknown_active_nodes = {} # node_id -> repo url * fullpath
|
||||
self.cnr_map = {} # node_id -> cnr info
|
||||
self.repo_cnr_map = {} # repo_url -> cnr info
|
||||
self.custom_node_map_cache = {} # (channel, mode) -> augmented custom node list json
|
||||
self.cnr_inactive_nodes = NormalizedKeyDict() # node_id -> node_version -> fullpath
|
||||
self.nightly_inactive_nodes = NormalizedKeyDict() # node_id -> fullpath
|
||||
self.unknown_inactive_nodes = {} # node_id -> repo url * fullpath
|
||||
self.active_nodes = NormalizedKeyDict() # node_id -> node_version * fullpath
|
||||
self.unknown_active_nodes = {} # node_id -> repo url * fullpath
|
||||
self.cnr_map = NormalizedKeyDict() # node_id -> cnr info
|
||||
self.repo_cnr_map = {} # repo_url -> cnr info
|
||||
self.custom_node_map_cache = {} # (channel, mode) -> augmented custom node list json
|
||||
self.processed_install = set()
|
||||
|
||||
def get_module_name(self, x):
|
||||
@ -2791,7 +2819,7 @@ async def get_unified_total_nodes(channel, mode, regsitry_cache_mode='cache'):
|
||||
|
||||
if cnr_id is not None:
|
||||
# cnr or nightly version
|
||||
cnr_ids.remove(cnr_id)
|
||||
cnr_ids.discard(cnr_id)
|
||||
updatable = False
|
||||
cnr = unified_manager.cnr_map[cnr_id]
|
||||
|
||||
|
||||
@ -1693,17 +1693,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "This extension allows users to load styles from a CSV file, primarily for migration purposes from the automatic1111 Stable Diffusion web UI."
|
||||
},
|
||||
{
|
||||
"author": "theUpsider",
|
||||
"title": "ComfyUI-Logic",
|
||||
"id": "comfy-logic",
|
||||
"reference": "https://github.com/theUpsider/ComfyUI-Logic",
|
||||
"files": [
|
||||
"https://github.com/theUpsider/ComfyUI-Logic"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "An extension to ComfyUI that introduces logic nodes and conditional rendering capabilities."
|
||||
},
|
||||
{
|
||||
"author": "M1kep",
|
||||
"title": "Comfy_KepListStuff",
|
||||
@ -3257,6 +3246,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "This node allows using Hugginface remote server for latent decoding. Currently supported models: SD, SDXL, Flux, HunyuanVideo"
|
||||
},
|
||||
{
|
||||
"author": "kijai",
|
||||
"title": "ComfyUI-LBMWrapper",
|
||||
"reference": "https://github.com/kijai/ComfyUI-LBMWrapper",
|
||||
"files": [
|
||||
"https://github.com/kijai/ComfyUI-LBMWrapper"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI wrapper nodes for [a/Latent Bridge Matching (LBM)](https://github.com/gojasper/LBM)"
|
||||
},
|
||||
{
|
||||
"author": "hhhzzyang",
|
||||
"title": "Comfyui-Lama",
|
||||
@ -3421,6 +3420,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "ymc 's nodes for comfyui. This extension is composed of nodes that provide various utility features such as text, region, and I/O."
|
||||
},
|
||||
{
|
||||
"author": "YMC",
|
||||
"title": "ymc_node_joy",
|
||||
"reference": "https://github.com/YMC-GitHub/ymc_node_joy",
|
||||
"files": [
|
||||
"https://github.com/YMC-GitHub/ymc_node_joy"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "comfyui custom nodes to caption image with joy"
|
||||
},
|
||||
{
|
||||
"author": "YMC",
|
||||
"title": "ymc-node-as-x-type",
|
||||
@ -7851,6 +7860,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "An unofficial ComfyUI custom node integration for High-quality Text-to-Speech and Voice Conversion nodes for ComfyUI using ResembleAI's ChatterboxTTS with unlimited text length!!!."
|
||||
},
|
||||
{
|
||||
"author": "ShmuelRonen",
|
||||
"title": "Flux Kontext Creator for ComfyUI",
|
||||
"reference": "https://github.com/ShmuelRonen/FluxKontextCreator",
|
||||
"files": [
|
||||
"https://github.com/ShmuelRonen/FluxKontextCreator"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A powerful ComfyUI custom node for text-based image editing using Black Forest Labs' Flux Kontext API. Transform your images with simple text instructions while maintaining character consistency and quality."
|
||||
},
|
||||
{
|
||||
"author": "redhottensors",
|
||||
"title": "ComfyUI-Prediction",
|
||||
@ -8588,6 +8607,17 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Group switching control, one click control to ignore and disable multiple groups, as well as wired switch combination nodes, allowing for arbitrary switching of annotation names"
|
||||
},
|
||||
{
|
||||
"author": "11dogzi",
|
||||
"title": "CYBERPUNK-STYLE-DIY",
|
||||
"id": "CYBERPUNK-STYLE-DIY",
|
||||
"reference": "https://github.com/11dogzi/CYBERPUNK-STYLE-DIY",
|
||||
"files": [
|
||||
"https://github.com/11dogzi/CYBERPUNK-STYLE-DIY"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A comprehensive ComfyUI theme plugin with stunning cyberpunk aesthetics and powerful customization features"
|
||||
},
|
||||
{
|
||||
"author": "11dogzi",
|
||||
"title": "ComfUI-EGAdapterMadAssistant",
|
||||
@ -11289,6 +11319,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node that calculates width and height while maintaining aspect ratio, making it easier to determine image resolutions with specified aspect ratios and longer side values."
|
||||
},
|
||||
{
|
||||
"author": "sugarkwork",
|
||||
"title": "comfyui-trtupscaler",
|
||||
"reference": "https://github.com/sugarkwork/comfyui-trtupscaler",
|
||||
"files": [
|
||||
"https://github.com/sugarkwork/comfyui-trtupscaler"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "TensorRT Upscaler for ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "Intersection98",
|
||||
"title": "ComfyUI-MX-post-processing-nodes",
|
||||
@ -12188,6 +12228,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Download youtube videos/playlists"
|
||||
},
|
||||
{
|
||||
"author": "christian-byrne",
|
||||
"title": "Claude Code ComfyUI Nodes",
|
||||
"reference": "https://github.com/christian-byrne/claude-code-comfyui-nodes",
|
||||
"files": [
|
||||
"https://github.com/christian-byrne/claude-code-comfyui-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI nodes for integrating Claude Code SDK - enables AI-powered code generation, analysis, and assistance within ComfyUI workflows"
|
||||
},
|
||||
{
|
||||
"author": "oztrkoguz",
|
||||
"title": "ComfyUI StoryCreater",
|
||||
@ -15467,14 +15517,24 @@
|
||||
},
|
||||
{
|
||||
"author": "Isi-dev",
|
||||
"title": "UniAnimate Nodes for ComfyUI",
|
||||
"title": "ComfyUI-UniAnimate-W",
|
||||
"id": "comfyuiunianimatenodes",
|
||||
"reference": "https://github.com/Isi-dev/ComfyUI-UniAnimate-W",
|
||||
"files": [
|
||||
"https://github.com/Isi-dev/ComfyUI-UniAnimate-W"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "These are nodes to animate an image with a reference video using UniAnimate. [w/Name conflict with AIFSH/ComfyUI-UniAnimate. Cannot install simulatenously.]"
|
||||
"description": "These are nodes to animate an image with a reference video using UniAnimate."
|
||||
},
|
||||
{
|
||||
"author": "Isi-dev",
|
||||
"title": "ComfyUI-Animation_Nodes_and_Workflows",
|
||||
"reference": "https://github.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows",
|
||||
"files": [
|
||||
"https://github.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "These are nodes and workflows that can facilitate the creation of animations and video compilations."
|
||||
},
|
||||
{
|
||||
"author": "XLabs-AI",
|
||||
@ -15887,6 +15947,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Provide ComfyUI support for FramePack start-and-end image reference"
|
||||
},
|
||||
{
|
||||
"author": "TTPlanetPig",
|
||||
"title": "ComfyUI Qwen2.5-VL Object Detection Node",
|
||||
"reference": "https://github.com/TTPlanetPig/Comfyui_Object_Detect_QWen_VL",
|
||||
"files": [
|
||||
"https://github.com/TTPlanetPig/Comfyui_Object_Detect_QWen_VL"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository provides a custom ComfyUI node for running object detection with the [a/Qwen 2.5 VL](https://github.com/QwenLM/Qwen2.5-VL) model. The node downloads the selected model on demand, runs a detection prompt and outputs bounding boxes that can be used with segmentation nodes such as [a/SAM2](https://github.com/kijai/ComfyUI-segment-anything-2)."
|
||||
},
|
||||
{
|
||||
"author": "camenduru",
|
||||
"title": "ComfyUI-TostAI",
|
||||
@ -19120,7 +19190,7 @@
|
||||
{
|
||||
"author": "lth",
|
||||
"title": "Comfyui_three_js",
|
||||
"id": "lth",
|
||||
"id": "comfyui_three_js",
|
||||
"reference": "https://github.com/lo-th/Comfyui_three_js",
|
||||
"files": [
|
||||
"https://github.com/lo-th/Comfyui_three_js"
|
||||
@ -19689,6 +19759,36 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-ChatterboxTTS is now available in ComfyUI, Chatterbox TTS is the first production-grade open-source TTS model."
|
||||
},
|
||||
{
|
||||
"author": "Yuan-ManX",
|
||||
"title": "ComfyUI-Direct3D-S2",
|
||||
"reference": "https://github.com/Yuan-ManX/ComfyUI-Direct3D-S2",
|
||||
"files": [
|
||||
"https://github.com/Yuan-ManX/ComfyUI-Direct3D-S2"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-Direct3D‑S2 is now available in ComfyUI, Direct3D‑S2 - Gigascale 3D Generation Made Easy with Spatial Sparse Attention. Direct3D‑S2 is a scalable 3D generation framework based on sparse volumes that achieves superior output quality with dramatically reduced training costs."
|
||||
},
|
||||
{
|
||||
"author": "Yuan-ManX",
|
||||
"title": "ComfyUI-Vui",
|
||||
"reference": "https://github.com/Yuan-ManX/ComfyUI-Vui",
|
||||
"files": [
|
||||
"https://github.com/Yuan-ManX/ComfyUI-Vui"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-Vui is now available in ComfyUI, Vui is a llama based transformer that predicts audio tokens."
|
||||
},
|
||||
{
|
||||
"author": "Yuan-ManX",
|
||||
"title": "ComfyUI-Hunyuan3D-2.1",
|
||||
"reference": "https://github.com/Yuan-ManX/ComfyUI-Hunyuan3D-2.1",
|
||||
"files": [
|
||||
"https://github.com/Yuan-ManX/ComfyUI-Hunyuan3D-2.1"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-Hunyuan3D-2.1 is now available in ComfyUI, Hunyuan3D-2.1 is a scalable 3D asset creation system that advances state-of-the-art 3D generation through two pivotal innovations: Fully Open-Source Framework and Physically-Based Rendering (PBR) Texture Synthesis."
|
||||
},
|
||||
{
|
||||
"author": "Starnodes2024",
|
||||
"title": "ComfyUI_StarNodes",
|
||||
@ -21075,6 +21175,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "HeyGem AI avatar."
|
||||
},
|
||||
{
|
||||
"author": "mw",
|
||||
"title": "ComfyUI_SOME",
|
||||
"reference": "https://github.com/billwuhao/ComfyUI_SOME",
|
||||
"files": [
|
||||
"https://github.com/billwuhao/ComfyUI_SOME"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Sing to Midi 🎶"
|
||||
},
|
||||
{
|
||||
"author": "umiyuki",
|
||||
"title": "ComfyUI Pad To Eight",
|
||||
@ -22717,6 +22827,26 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a node to converts models into Fp8, bf16, fp16."
|
||||
},
|
||||
{
|
||||
"author": "lum3on",
|
||||
"title": "ComfyUI-FrameUtilitys",
|
||||
"reference": "https://github.com/lum3on/ComfyUI-FrameUtilitys",
|
||||
"files": [
|
||||
"https://github.com/lum3on/ComfyUI-FrameUtilitys"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Professional-grade frame manipulation tools for ComfyUI, providing advanced video editing capabilities with native IMAGE tensor support."
|
||||
},
|
||||
{
|
||||
"author": "lum3on",
|
||||
"title": "comfyui_EdgeTAM",
|
||||
"reference": "https://github.com/lum3on/comfyui_EdgeTAM",
|
||||
"files": [
|
||||
"https://github.com/lum3on/comfyui_EdgeTAM"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node implementation of EdgeTAM (On-Device Track Anything Model) for efficient, interactive video object tracking."
|
||||
},
|
||||
{
|
||||
"author": "austinbrown34",
|
||||
"title": "ComfyUI-IO-Helpers",
|
||||
@ -24904,6 +25034,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Official implementation in ComfyUI of CVPR 2025 paper 'HyperLoRA: Parameter-Efficient Adaptive Generation for Portrait Synthesis'"
|
||||
},
|
||||
{
|
||||
"author": "bytedance",
|
||||
"title": "comfyui-lumi-batcher",
|
||||
"reference": "https://github.com/bytedance/comfyui-lumi-batcher",
|
||||
"files": [
|
||||
"https://github.com/bytedance/comfyui-lumi-batcher"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI Lumi Batcher is a batch processing extension plugin designed for ComfyUI, aiming to improve workflow debugging efficiency. Traditional debugging methods require adjusting parameters one by one, while this tool significantly enhances work efficiency through batch processing capabilities."
|
||||
},
|
||||
{
|
||||
"author": "AstroCorp",
|
||||
"title": "ComfyUI AstroCorp Nodes",
|
||||
@ -26098,16 +26238,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-Unwatermark: A ComfyUI custom node to intelligently remove watermarks from images using the unwatermark.ai API.\nThis custom node for ComfyUI allows you to easily remove watermarks from your images by leveraging the power of the unwatermark.ai API."
|
||||
},
|
||||
{
|
||||
"author": "ratatule2",
|
||||
"title": "ComfyUI-LBMWrapper",
|
||||
"reference": "https://github.com/ratatule2/ComfyUI-LBMWrapper",
|
||||
"files": [
|
||||
"https://github.com/ratatule2/ComfyUI-LBMWrapper"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-LBMWrapper is a user-friendly interface designed to simplify the integration of lightweight models into your projects. It streamlines workflows by providing essential tools for managing and deploying models with ease."
|
||||
},
|
||||
{
|
||||
"author": "Sayene",
|
||||
"title": "comfyui-base64-to-image-size",
|
||||
@ -26452,6 +26582,26 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A powerful ComfyUI custom node that extends the standard text encoder with persistent prompt storage, advanced search capabilities, and an automatic image gallery system using SQLite."
|
||||
},
|
||||
{
|
||||
"author": "kiko9",
|
||||
"title": "ComfyUI_Selectors",
|
||||
"reference": "https://github.com/ComfyAssets/ComfyUI_Selectors",
|
||||
"files": [
|
||||
"https://github.com/ComfyAssets/ComfyUI_Selectors"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A modern ComfyUI custom node package that provides essential UI controls for image generation workflows. These nodes allow you to centralize commonly shared parameters (scheduler, sampler, dimensions, seeds) and link them to multiple nodes in your workflow, eliminating redundancy while maintaining JSON metadata compatibility."
|
||||
},
|
||||
{
|
||||
"author": "kiko9",
|
||||
"title": "ComfyUI-KikoTools",
|
||||
"reference": "https://github.com/ComfyAssets/ComfyUI-KikoTools",
|
||||
"files": [
|
||||
"https://github.com/ComfyAssets/ComfyUI-KikoTools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-KikoTools provides carefully crafted, production-ready nodes grouped under the 'ComfyAssets' category. Each tool is designed with clean interfaces, comprehensive testing, and optimized performance for SDXL and FLUX workflows."
|
||||
},
|
||||
{
|
||||
"author": "TFL-TFL",
|
||||
"title": "ComfyUI_Text_Translation",
|
||||
@ -26524,6 +26674,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Works with any Depth Map and visualizes the applied version it inside ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "coiichan",
|
||||
"title": "comfyui-every-person-seg-coii",
|
||||
"reference": "https://github.com/CoiiChan/comfyui-every-person-seg-coii",
|
||||
"files": [
|
||||
"https://github.com/CoiiChan/comfyui-every-person-seg-coii"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A masking tool that provides the ability to break down the detailed contours of characters one by one for multi person use scenarios"
|
||||
},
|
||||
{
|
||||
"author": "coulterj",
|
||||
"title": "ComfyUI SVG Visual Normalize & Margin Node",
|
||||
@ -26634,6 +26794,26 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Complete collection of image effects for ComfyUI - 32 nodes across 6 categories"
|
||||
},
|
||||
{
|
||||
"author": "orion4d",
|
||||
"title": "ComfyUI PDF Nodes",
|
||||
"reference": "https://github.com/orion4d/ComfyUI_pdf_nodes",
|
||||
"files": [
|
||||
"https://github.com/orion4d/ComfyUI_pdf_nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository contains a set of custom nodes for ComfyUI that allow you to load, manipulate, extract information from, and preview PDF files directly within your workflows."
|
||||
},
|
||||
{
|
||||
"author": "orion4d",
|
||||
"title": "ComfyUI_extract_imag",
|
||||
"reference": "https://github.com/orion4d/ComfyUI_extract_imag",
|
||||
"files": [
|
||||
"https://github.com/orion4d/ComfyUI_extract_imag"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This ComfyUI node allows you to extract all images found in various types of documents and save them to disk. It also provides a preview of the first extracted image."
|
||||
},
|
||||
{
|
||||
"author": "aiaiaikkk",
|
||||
"title": "ComfyUI-Curve",
|
||||
@ -27101,6 +27281,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A smart, customizable resolution selector node with live aspect ratio preview, image overlays, and checkerboard support — cleanly parsed from a human-readable text file."
|
||||
},
|
||||
{
|
||||
"author": "o-l-l-i",
|
||||
"title": "Olm LUT Node for ComfyUI",
|
||||
"reference": "https://github.com/o-l-l-i/ComfyUI-OlmLUT",
|
||||
"files": [
|
||||
"https://github.com/o-l-l-i/ComfyUI-OlmLUT"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The Olm LUT is a custom node for ComfyUI that allows you to apply .cube LUT (Look-Up Table) files to images within your generative workflows. It supports creative workflows including film emulation, color grading, and aesthetic stylization using LUTs."
|
||||
},
|
||||
{
|
||||
"author": "xiaogui8dangjia",
|
||||
"title": "Comfyui-imagetoSTL",
|
||||
@ -27192,6 +27382,295 @@
|
||||
"install_type": "git-clone",
|
||||
"description": " Powerful Flux-Kontext image generation custom node for ComfyUI, using the official RabbitAI API. Supports text-to-image, image-to-image, and multi-image-to-image generation. Supports concurrent generation."
|
||||
},
|
||||
{
|
||||
"author": "INuBq8",
|
||||
"title": "Notification Bridge",
|
||||
"reference": "https://github.com/INuBq8/ComfyUI-NotificationBridge",
|
||||
"files": [
|
||||
"https://github.com/INuBq8/ComfyUI-NotificationBridge"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Bridge nodes for ComfyUI that send messages through WhatsApp (Twilio) and Discord when a workflow completes."
|
||||
},
|
||||
{
|
||||
"author": "Erehr",
|
||||
"title": "ComfyUI-EreNodes",
|
||||
"reference": "https://github.com/Erehr/ComfyUI-EreNodes",
|
||||
"files": [
|
||||
"https://github.com/Erehr/ComfyUI-EreNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of prompt managent nodes with advanced tag parsing. Prompt tag cloud, mutiselect, toggle list, randomizer, filter, autocompete."
|
||||
},
|
||||
{
|
||||
"author": "xiaowc",
|
||||
"title": "Comfyui-Dynamic-Params",
|
||||
"reference": "https://github.com/xiaowc-lib/comfyui-dynamic-params",
|
||||
"files": [
|
||||
"https://github.com/xiaowc-lib/comfyui-dynamic-params"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Comfyui custom nodes that support dynamic parameter addition and deletion."
|
||||
},
|
||||
{
|
||||
"author": "keit",
|
||||
"title": "ComfyUI-keitNodes",
|
||||
"id": "comfyui-image-toolkit",
|
||||
"reference": "https://github.com/keit0728/ComfyUI-keitNodes",
|
||||
"files": [
|
||||
"https://github.com/keit0728/ComfyUI-keitNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is keit's utility nodes."
|
||||
},
|
||||
{
|
||||
"author": "fredconex",
|
||||
"title": "ComfyUI_SoundFlow",
|
||||
"reference": "https://github.com/fredconex/ComfyUI_SoundFlow",
|
||||
"files": [
|
||||
"https://github.com/fredconex/ComfyUI_SoundFlow"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a bunch of nodes for ComfyUI to help with sound work."
|
||||
},
|
||||
{
|
||||
"author": "A043-studios",
|
||||
"title": "Pixel3DMM ComfyUI Nodes",
|
||||
"reference": "https://github.com/A043-studios/comfyui-pixel3dmm",
|
||||
"files": [
|
||||
"https://github.com/A043-studios/comfyui-pixel3dmm"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Professional 3D face reconstruction for ComfyUI using the Pixel3DMM method"
|
||||
},
|
||||
{
|
||||
"author": "A043-studios",
|
||||
"title": "ComfyUI Deforum-X-Flux Nodes",
|
||||
"reference": "https://github.com/A043-studios/comfyui-deforum-x-flux-nodes",
|
||||
"files": [
|
||||
"https://github.com/A043-studios/comfyui-deforum-x-flux-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Professional video animation nodes for ComfyUI based on Deforum-X-Flux research"
|
||||
},
|
||||
{
|
||||
"author": "A043-studios",
|
||||
"title": "ComfyUI ASDF Pixel Sort Nodes",
|
||||
"reference": "https://github.com/A043-studios/ComfyUI-ASDF-Pixel-Sort-Nodes",
|
||||
"files": [
|
||||
"https://github.com/A043-studios/ComfyUI-ASDF-Pixel-Sort-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI integration of Kim Asendorf's iconic ASDFPixelSort algorithm, bringing classic pixel sorting effects directly into your ComfyUI workflows"
|
||||
},
|
||||
{
|
||||
"author": "Zachary116699",
|
||||
"title": "ComfyUI_LoadImageWithMetaDataEx",
|
||||
"reference": "https://github.com/Zachary116699/ComfyUI-LoadImageWithMetaDataEx",
|
||||
"files": [
|
||||
"https://github.com/Zachary116699/ComfyUI-LoadImageWithMetaDataEx"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom node for ComfyUI. It can read metadata from the image filepath, and filepath can be provided as a connected input, which allows it to batch read image metadata in a loop."
|
||||
},
|
||||
{
|
||||
"author": "AgencyMind",
|
||||
"title": "ComfyUI-GPU-Preprocessor-Wrapper",
|
||||
"reference": "https://github.com/AgencyMind/ComfyUI-GPU-Preprocessor-Wrapper",
|
||||
"files": [
|
||||
"https://github.com/AgencyMind/ComfyUI-GPU-Preprocessor-Wrapper"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node extension that solves multi-GPU device conflicts for ControlNet preprocessors."
|
||||
},
|
||||
{
|
||||
"author": "olivv-cs",
|
||||
"title": "ComfyUI-FunPack",
|
||||
"reference": "https://github.com/olivv-cs/ComfyUI-FunPack",
|
||||
"files": [
|
||||
"https://github.com/olivv-cs/ComfyUI-FunPack"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A set of custom nodes designed for experiments with video diffusion models."
|
||||
},
|
||||
{
|
||||
"author": "xuhuan2048",
|
||||
"title": "ExtractStoryboards",
|
||||
"id": "xuhuan2048_ExtractStoryboards",
|
||||
"reference": "https://github.com/gitadmini/comfyui_extractstoryboards",
|
||||
"files": [
|
||||
"https://github.com/gitadmini/comfyui_extractstoryboards"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A tool for decomposing video storyboards, which can obtain storyboards and keyframes"
|
||||
},
|
||||
{
|
||||
"author": "pawelmal0101",
|
||||
"title": "ComfyUI Webhook Notifier",
|
||||
"reference": "https://github.com/pawelmal0101/ComfyUI-Webhook",
|
||||
"files": [
|
||||
"https://github.com/pawelmal0101/ComfyUI-Webhook"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A simple ComfyUI custom node that sends webhook notifications when images are generated. Perfect for integrating your image generation workflow with external services or your own backend."
|
||||
},
|
||||
{
|
||||
"author": "NeoDroleDeGueule",
|
||||
"title": "comfyui-image-mixer",
|
||||
"reference": "https://github.com/NeoDroleDeGueule/comfyui-image-mixer",
|
||||
"files": [
|
||||
"https://github.com/NeoDroleDeGueule/comfyui-image-mixer"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node that blends two images in latent space using a mix factor slider."
|
||||
},
|
||||
{
|
||||
"author": "hassan-sd",
|
||||
"title": "ComfyUI Image & Prompt Loader",
|
||||
"id": "hassanprompt",
|
||||
"reference": "https://github.com/hassan-sd/comfyui-image-prompt-loader",
|
||||
"files": [
|
||||
"https://github.com/hassan-sd/comfyui-image-prompt-loader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Load images with automatic prompt extraction from Civitai URLs, caption files, or EXIF metadata. Features smart dataset detection and dynamic preview updates."
|
||||
},
|
||||
{
|
||||
"author": "LargeModGames",
|
||||
"title": "ComfyUI LoRA Auto Downloader",
|
||||
"reference": "https://github.com/LargeModGames/comfyui-smart-lora-downloader",
|
||||
"files": [
|
||||
"https://github.com/LargeModGames/comfyui-smart-lora-downloader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Automatically download missing LoRAs from CivitAI and detect missing LoRAs in workflows. Features smart directory detection and easy installation."
|
||||
},
|
||||
{
|
||||
"author": "benjamin-bertram",
|
||||
"title": "ComfyUI OIDN Denoiser",
|
||||
"reference": "https://github.com/benjamin-bertram/Comfyui_OIDN_Denoiser",
|
||||
"files": [
|
||||
"https://github.com/benjamin-bertram/Comfyui_OIDN_Denoiser"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node for ComfyUI provides a wrapper for Intel's Open Image Denoise (OIDN) library, allowing you to denoise images directly within your ComfyUI workflow."
|
||||
},
|
||||
{
|
||||
"author": "domenecmiralles",
|
||||
"title": "obobo_nodes",
|
||||
"reference": "https://github.com/domenecmiralles/obobo_nodes",
|
||||
"files": [
|
||||
"https://github.com/domenecmiralles/obobo_nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of custom nodes for ComfyUI that provide various input and output capabilities."
|
||||
},
|
||||
{
|
||||
"author": "Zehong-Ma",
|
||||
"title": "ComfyUI-MagCache",
|
||||
"reference": "https://github.com/Zehong-Ma/ComfyUI-MagCache",
|
||||
"files": [
|
||||
"https://github.com/Zehong-Ma/ComfyUI-MagCache"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "official implementation of [zehong-ma/MagCache](https://github.com/zehong-ma/MagCache) for ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "without-ordinary",
|
||||
"title": "OpenOutpaint ComfyUI Interface",
|
||||
"reference": "https://github.com/without-ordinary/openoutpaint_comfyui_interface",
|
||||
"files": [
|
||||
"https://github.com/without-ordinary/openoutpaint_comfyui_interface"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "An API interface for OpenOutpaint to work with ComfyUI workflow"
|
||||
},
|
||||
{
|
||||
"author": "adamreading",
|
||||
"title": "ComfyUI-AjoNodes",
|
||||
"reference": "https://github.com/AJO-reading/ComfyUI-AjoNodes",
|
||||
"files": [
|
||||
"https://github.com/AJO-reading/ComfyUI-AjoNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of custom nodes designed for ComfyUI from the AJO-reading organization. This repository currently includes the Audio Collect & Concat node, which collects multiple audio segments and concatenates them into a single audio stream."
|
||||
},
|
||||
{
|
||||
"author": "flamacore",
|
||||
"title": "ComfyUI YouTube Uploader",
|
||||
"id": "comfyui-youtubeuploader",
|
||||
"reference": "https://github.com/flamacore/ComfyUI-YouTubeUploader",
|
||||
"files": [
|
||||
"https://github.com/flamacore/ComfyUI-YouTubeUploader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI node for uploading generated content to YouTube. [a/Buy me a coffee](https://buymeacoffee.com/chao.k)"
|
||||
},
|
||||
{
|
||||
"author": "neocrz",
|
||||
"title": "comfyui-usetaesd",
|
||||
"reference": "https://github.com/neocrz/comfyui-usetaesd",
|
||||
"files": [
|
||||
"https://github.com/neocrz/comfyui-usetaesd"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node set for ComfyUI that provides nodes for encoding and decoding images using Tiny AutoEncoders for Stable Diffusion (TAESD) models."
|
||||
},
|
||||
{
|
||||
"author": "havvk",
|
||||
"title": "ComfyUI_AIIA",
|
||||
"reference": "https://github.com/havvk/ComfyUI_AIIA",
|
||||
"files": [
|
||||
"https://github.com/havvk/ComfyUI_AIIA"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "AIIA Nodes for ComfyUI is a comprehensive suite of advanced nodes designed to streamline and supercharge your video and audio generation workflows. It centrally addresses the critical Out-Of-Memory (OOM) issues encountered when processing long sequences by intelligently handling frames on disk. The suite includes: a powerful Video Combiner with an extensible format system; memory-efficient FLOAT Talking Head Animator nodes with both in-memory (for speed) and on-disk (for stability) modes; and a sophisticated Speaker Diarization toolkit powered by NeMo for identifying who spoke when. Utility nodes like the OOM-safe Image Sequence Concatenator are also included to create comparison or multi-panel videos effortlessly."
|
||||
},
|
||||
{
|
||||
"author": "dseditor",
|
||||
"title": "ComfyUI-Thread",
|
||||
"reference": "https://github.com/dseditor/ComfyUI-Thread",
|
||||
"files": [
|
||||
"https://github.com/dseditor/ComfyUI-Thread"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node package for seamless integration with Threads (Meta's social platform). This package allows you to publish posts, manage images, and retrieve post history directly from your ComfyUI workflows."
|
||||
},
|
||||
{
|
||||
"author": "Leon",
|
||||
"title": "Leon's Utility and API Integration Nodes",
|
||||
"id": "leon",
|
||||
"reference": "https://github.com/l3ony2k/comfyui-leon-nodes",
|
||||
"files": [
|
||||
"https://github.com/l3ony2k/comfyui-leon-nodes"
|
||||
],
|
||||
"nodename_pattern": "^🤖 Leon",
|
||||
"install_type": "git-clone",
|
||||
"description": "A comprehensive collection of utility and API integration nodes for ComfyUI. Includes image manipulation (4-grid split), string utilities, and multiple API integrations: ImgBB upload, HyprLab upload, Google Image API, Luma AI, FLUX Image API, FLUX Kontext API, and Midjourney proxy integration. Features include image/video hosting, AI image generation, and image description capabilities.",
|
||||
"pip": [
|
||||
"Pillow",
|
||||
"torch",
|
||||
"numpy",
|
||||
"requests",
|
||||
"tenacity"
|
||||
],
|
||||
"tags": [
|
||||
"image",
|
||||
"utility",
|
||||
"api",
|
||||
"upload",
|
||||
"generation",
|
||||
"split",
|
||||
"string",
|
||||
"imgbb",
|
||||
"hypr",
|
||||
"google",
|
||||
"luma",
|
||||
"flux",
|
||||
"midjourney"
|
||||
]
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
@ -27561,16 +28040,6 @@
|
||||
"install_type": "copy",
|
||||
"description": "Extremely inspired and forked from: [a/https://github.com/klimaleksus/stable-diffusion-webui-embedding-merge](https://github.com/klimaleksus/stable-diffusion-webui-embedding-merge)"
|
||||
},
|
||||
{
|
||||
"author": "vladpro3",
|
||||
"title": "ComfyUI_BishaNodes",
|
||||
"reference": "https://github.com/vladpro3/ComfyUI_BishaNodes",
|
||||
"files": [
|
||||
"https://github.com/vladpro3/ComfyUI_BishaNodes"
|
||||
],
|
||||
"install_type": "copy",
|
||||
"description": "Custom Nodes for ComfyUI to Simplify Multi-Resolution and Prompt Workflows"
|
||||
},
|
||||
{
|
||||
"author": "Kayarte",
|
||||
"title": "GeoNodes",
|
||||
@ -27642,5 +28111,3 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
6952
github-stats.json
6952
github-stats.json
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,205 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "franky519",
|
||||
"title": "ComfyUI Face Four Image Matcher [WIP]",
|
||||
"reference": "https://github.com/franky519/comfyui_fnckc_Face_analysis",
|
||||
"files": [
|
||||
"https://github.com/franky519/comfyui_fnckc_Face_analysis"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI custom node for four face image matching and face swap control\nNOTE: Invalid pyproject.toml"
|
||||
},
|
||||
{
|
||||
"author": "bleash-dev",
|
||||
"title": "Comfyui-Iddle-Checker",
|
||||
"reference": "https://github.com/bleash-dev/Comfyui-Iddle-Checker",
|
||||
"files": [
|
||||
"https://github.com/bleash-dev/Comfyui-Iddle-Checker"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "front extension for idle checker"
|
||||
},
|
||||
{
|
||||
"author": "fangg2000",
|
||||
"title": "ComfyUI-StableAudioFG [WIP]",
|
||||
"reference": "https://github.com/fangg2000/ComfyUI-StableAudioFG",
|
||||
"files": [
|
||||
"https://github.com/fangg2000/ComfyUI-StableAudioFG"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The ComfyUI plugin for stable-audio (supports offline use)\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "hdfhssg",
|
||||
"title": "comfyui_EvoSearch [WIP]",
|
||||
"reference": "https://github.com/hdfhssg/comfyui_EvoSearch",
|
||||
"files": [
|
||||
"https://github.com/hdfhssg/comfyui_EvoSearch"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: EvoSearch_FLUX, EvoSearch_SD21, EvoSearch_WAN, EvolutionScheduleGenerator, GuidanceRewardsGenerator"
|
||||
},
|
||||
{
|
||||
"author": "simonjaq",
|
||||
"title": "ComfyUI-sjnodes",
|
||||
"reference": "https://github.com/simonjaq/ComfyUI-sjnodes",
|
||||
"files": [
|
||||
"https://github.com/simonjaq/ComfyUI-sjnodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Some modified ComfyUI custom nodes"
|
||||
},
|
||||
{
|
||||
"author": "A4P7J1N7M05OT",
|
||||
"title": "ComfyUI-VAELoaderSDXLmod",
|
||||
"reference": "https://github.com/A4P7J1N7M05OT/ComfyUI-VAELoaderSDXLmod",
|
||||
"files": [
|
||||
"https://github.com/A4P7J1N7M05OT/ComfyUI-VAELoaderSDXLmod"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Modified SDXL VAE Loader, Empty Latent Image Variable"
|
||||
},
|
||||
{
|
||||
"author": "xzuyn",
|
||||
"title": "xzuynodes-ComfyUI",
|
||||
"reference": "https://github.com/xzuyn/ComfyUI-xzuynodes",
|
||||
"files": [
|
||||
"https://github.com/xzuyn/ComfyUI-xzuynodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Last Frame Extractor"
|
||||
},
|
||||
{
|
||||
"author": "gilons",
|
||||
"title": "ComfyUI-GoogleDrive-Downloader [UNSAFE]",
|
||||
"reference": "https://github.com/gilons/ComfyUI-GoogleDrive-Downloader",
|
||||
"files": [
|
||||
"https://github.com/gilons/ComfyUI-GoogleDrive-Downloader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI custom node for downloading files from Google Drive.[w/There is a vulnerability that allows saving a remote file to an arbitrary local path.]"
|
||||
},
|
||||
{
|
||||
"author": "moonwhaler",
|
||||
"title": "ComfyUI-FileBrowserAPI [UNSAFE]",
|
||||
"reference": "https://github.com/GalactusX31/ComfyUI-FileBrowserAPI",
|
||||
"files": [
|
||||
"https://github.com/GalactusX31/ComfyUI-FileBrowserAPI"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A general-purpose, dependency-free File and Folder Browser API for ComfyUI custom nodes.[w/path traversal vulnerability]"
|
||||
},
|
||||
{
|
||||
"author": "moonwhaler",
|
||||
"title": "comfyui-moonpack",
|
||||
"reference": "https://github.com/moonwhaler/comfyui-moonpack",
|
||||
"files": [
|
||||
"https://github.com/moonwhaler/comfyui-moonpack"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Proportional Dimension, Simple String Replace, Regex String Replace, VACE Looper Frame Scheduler"
|
||||
},
|
||||
{
|
||||
"author": "DreamsInAutumn",
|
||||
"title": "ComfyUI-Autumn-LLM-Nodes",
|
||||
"reference": "https://github.com/DreamsInAutumn/ComfyUI-Autumn-LLM-Nodes",
|
||||
"files": [
|
||||
"https://github.com/DreamsInAutumn/ComfyUI-Autumn-LLM-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Gemini-Image-To-Prompt, Gemini-Prompt-Builder, LLM-Prompt-Builder"
|
||||
},
|
||||
{
|
||||
"author": "alexgenovese",
|
||||
"title": "ComfyUI-Reica",
|
||||
"reference": "https://github.com/alexgenovese/ComfyUI-Reica",
|
||||
"files": [
|
||||
"https://github.com/alexgenovese/ComfyUI-Reica"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: 'Reica GCP: Read Image', 'Reica GCP: Write Image & Get URL', 'Reica Text Image Display', 'Reica Read Image URL', 'Reica URL Image Loader Filename', 'Reica API: Send HTTP Notification', 'Insert Anything'"
|
||||
},
|
||||
{
|
||||
"author": "yichengup",
|
||||
"title": "ComfyUI-Transition",
|
||||
"reference": "https://github.com/yichengup/ComfyUI-Transition",
|
||||
"files": [
|
||||
"https://github.com/yichengup/ComfyUI-Transition"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Linear Transition, Gradient Transition, Dual Line Transition, Sequence Transition, Circular Transition, Circular Sequence Transition"
|
||||
},
|
||||
{
|
||||
"author": "wildminder",
|
||||
"title": "ComfyUI-MagCache [NAME CONFLICT|WIP]",
|
||||
"reference": "https://github.com/wildminder/ComfyUI-MagCache",
|
||||
"files": [
|
||||
"https://github.com/wildminder/ComfyUI-MagCache"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "official implementation of [zehong-ma/MagCache](https://github.com/zehong-ma/MagCache) for ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "laubsauger",
|
||||
"title": "ComfyUI Storyboard [WIP]",
|
||||
"reference": "https://github.com/laubsauger/comfyui-storyboard",
|
||||
"files": [
|
||||
"https://github.com/laubsauger/comfyui-storyboard"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node for ComfyUI provides a markdown renderer to display formatted text and notes within your workflow."
|
||||
},
|
||||
{
|
||||
"author": "IsItDanOrAi",
|
||||
"title": "ComfyUI-exLoadout [WIP]",
|
||||
"reference": "https://github.com/IsItDanOrAi/ComfyUI-exLoadout",
|
||||
"files": [
|
||||
"https://github.com/IsItDanOrAi/ComfyUI-exLoadout"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: exLoadoutCheckpointLoader, exLoadout Selector, exLoadoutA, exLoadoutG, exLoadoutReadColumn, exLoadoutEditCell\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "grokuku",
|
||||
"title": "ComfyUI-Holaf-Terminal [UNSAFE]",
|
||||
"reference": "https://github.com/grokuku/ComfyUI-Holaf-Utilities",
|
||||
"files": [
|
||||
"https://github.com/grokuku/ComfyUI-Holaf-Utilities"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Interactive Terminal in a node for ComfyUI[w/This custom extension provides a remote web-based shell (terminal) interface to the machine running the ComfyUI server. By installing and using this extension, you are opening a direct, powerful, and potentially dangerous access point to your system.]"
|
||||
},
|
||||
{
|
||||
"author": "whmc76",
|
||||
"title": "ComfyUI-LongTextTTSSuite [WIP]",
|
||||
"reference": "https://github.com/whmc76/ComfyUI-LongTextTTSSuite",
|
||||
"files": [
|
||||
"https://github.com/whmc76/ComfyUI-LongTextTTSSuite"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This plugin can cut txt or srt files, hand them over to TTS for speech slicing generation, and synthesize long speech\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "usrname0",
|
||||
"title": "ComfyUI-AllergicPack [WIP]",
|
||||
"reference": "https://github.com/usrname0/ComfyUI-AllergicPack",
|
||||
"files": [
|
||||
"https://github.com/usrname0/ComfyUI-AllergicPack"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This package is not ready for primetime but I'm making it public anyway. If I'm using the node then I'm putting it here. Might make it more official later. Use at your own risk."
|
||||
},
|
||||
{
|
||||
"author": "spawner",
|
||||
"title": "comfyui-spawner-nodes",
|
||||
"reference": "https://github.com/spawner1145/comfyui-spawner-nodes",
|
||||
"files": [
|
||||
"https://github.com/spawner1145/comfyui-spawner-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Read Image Metadata, JSON process, Text Encoder/Decoder"
|
||||
},
|
||||
{
|
||||
"author": "cesilk10",
|
||||
"title": "cesilk-comfyui-nodes",
|
||||
@ -299,7 +499,7 @@
|
||||
"https://github.com/EQXai/ComfyUI_EQX"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: SaveImage_EQX, File Image Selector, Load Prompt From File - EQX, LoraStackEQX_random, Extract Filename - EQX, Extract LORA name - EQX"
|
||||
"description": "NODES: SaveImage_EQX, File Image Selector, Load Prompt From File - EQX, LoraStackEQX_random, Extract Filename - EQX, Extract LORA name - EQX, NSFW Detector EQX, NSFW Detector Advanced EQX"
|
||||
},
|
||||
{
|
||||
"author": "yincangshiwei",
|
||||
@ -1330,16 +1530,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom ComfyUI node for generating images using the HiDream AI model.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "AJO-reading",
|
||||
"title": "ComfyUI-AjoNodes [WIP]",
|
||||
"reference": "https://github.com/AJO-reading/ComfyUI-AjoNodes",
|
||||
"files": [
|
||||
"https://github.com/AJO-reading/ComfyUI-AjoNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of custom nodes designed for ComfyUI from the AJO-reading organization. This repository currently includes the Audio Collect & Concat node, which collects multiple audio segments and concatenates them into a single audio stream.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "ZenAI-Vietnam",
|
||||
"title": "ComfyUI_InfiniteYou [NAME CONFLICT]",
|
||||
|
||||
@ -148,27 +148,29 @@
|
||||
],
|
||||
"https://github.com/1hew/ComfyUI-1hewNodes": [
|
||||
[
|
||||
"BlendModesAlpha",
|
||||
"CoordinateExtract",
|
||||
"ImageAddLabel",
|
||||
"ImageBBoxCrop",
|
||||
"ImageBBoxPaste",
|
||||
"ImageBlendModesByAlpha",
|
||||
"ImageBlendModesByCSS",
|
||||
"ImageCropEdge",
|
||||
"ImageCropSquare",
|
||||
"ImageCropWithBBox",
|
||||
"ImageCroppedPaste",
|
||||
"ImageDetailHLFreqSeparation",
|
||||
"ImageEditStitch",
|
||||
"ImageLumaMatte",
|
||||
"ImagePlot",
|
||||
"ImageResizeUniversal",
|
||||
"LumaMatte",
|
||||
"ImageSolid",
|
||||
"ImageTileMerge",
|
||||
"ImageTileSplit",
|
||||
"MaskBBoxCrop",
|
||||
"MaskBatchMathOps",
|
||||
"MaskMathOps",
|
||||
"PathSelect",
|
||||
"PromptExtract",
|
||||
"SliderValueRangeMapping",
|
||||
"Solid"
|
||||
"SliderValueRangeMapping"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-1hewNodes [WIP]"
|
||||
@ -282,22 +284,30 @@
|
||||
"https://github.com/7BEII/Comfyui_PDuse": [
|
||||
[
|
||||
"Empty_Line",
|
||||
"LoRALoader_path",
|
||||
"ImageBlendText",
|
||||
"ImageBlendV1",
|
||||
"ImageRatioCrop",
|
||||
"Load_Images",
|
||||
"PDFile_FileName_refixer",
|
||||
"PDFile_name_fix",
|
||||
"PDIMAGE_ImageCombine",
|
||||
"PDIMAGE_LongerSize",
|
||||
"PDIMAGE_Rename",
|
||||
"PDImageConcante",
|
||||
"PDJSON_BatchJsonIncremental",
|
||||
"PDJSON_Group",
|
||||
"PD_CustomImageProcessor",
|
||||
"PD_GetImageSize",
|
||||
"PD_ImageMergerWithText",
|
||||
"PD_ImageBatchSplitter",
|
||||
"PD_ImageInfo",
|
||||
"PD_Image_Crop_Location",
|
||||
"PD_Image_centerCrop",
|
||||
"PD_MASK_SELECTION",
|
||||
"PD_RemoveColorWords",
|
||||
"PD_SimpleTest",
|
||||
"PD_Text Overlay Node",
|
||||
"PD_imagesave_path",
|
||||
"PDstring_Save",
|
||||
"ReadTxtFiles"
|
||||
"mask_edge_selector"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-promptbymood [WIP]"
|
||||
@ -311,6 +321,15 @@
|
||||
"title_aux": "ComfyUI-ManualSigma"
|
||||
}
|
||||
],
|
||||
"https://github.com/A4P7J1N7M05OT/ComfyUI-VAELoaderSDXLmod": [
|
||||
[
|
||||
"EmptyLatentImageVariable",
|
||||
"ModifiedSDXLVAELoader"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-VAELoaderSDXLmod"
|
||||
}
|
||||
],
|
||||
"https://github.com/A719689614/ComfyUI_AC_FUNV8Beta1": [
|
||||
[
|
||||
"\u2b1b(TODO)AC_Super_Come_Ckpt",
|
||||
@ -416,16 +435,6 @@
|
||||
"title_aux": "UtilNodes-ComfyUI [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/AJO-reading/ComfyUI-AjoNodes": [
|
||||
[
|
||||
"AJO_AudioCollectAndConcat",
|
||||
"AJO_PreviewAudio",
|
||||
"AJO_SaveAudio"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-AjoNodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/ALatentPlace/ComfyUI_yanc": [
|
||||
[
|
||||
"> Bloom",
|
||||
@ -661,6 +670,7 @@
|
||||
"TS_FilePathLoader",
|
||||
"TS_Free_Video_Memory",
|
||||
"TS_ImageResize",
|
||||
"TS_MarianTranslator",
|
||||
"TS_Qwen3",
|
||||
"TS_VideoDepthNode",
|
||||
"TS_Video_Upscale_With_Model"
|
||||
@ -674,6 +684,8 @@
|
||||
"Add Human Styler",
|
||||
"ConcaveHullImage",
|
||||
"Convert Monochrome",
|
||||
"ImageBWPostprocessor",
|
||||
"ImageBWPreprocessor",
|
||||
"Inpaint Crop Xo",
|
||||
"LoadData",
|
||||
"Mask Aligned bbox for ConcaveHull",
|
||||
@ -949,6 +961,7 @@
|
||||
],
|
||||
"https://github.com/Chargeuk/ComfyUI-vts-nodes": [
|
||||
[
|
||||
"VTS Add Text To list",
|
||||
"VTS Clean Text",
|
||||
"VTS Clean Text List",
|
||||
"VTS Clear Ram",
|
||||
@ -957,10 +970,12 @@
|
||||
"VTS Conditioning Set Batch Mask",
|
||||
"VTS Count Characters",
|
||||
"VTS Create Character Mask",
|
||||
"VTS Fix Image Tags",
|
||||
"VTS Images Crop From Masks",
|
||||
"VTS Images Scale",
|
||||
"VTS Images Scale To Min",
|
||||
"VTS Merge Delimited Text",
|
||||
"VTS Merge Text",
|
||||
"VTS Merge Text Lists",
|
||||
"VTS Reduce Batch Size",
|
||||
"VTS Render People Kps",
|
||||
@ -1197,6 +1212,8 @@
|
||||
"Donut Detailer XL Blocks",
|
||||
"DonutApplyLoRAStack",
|
||||
"DonutClipEncode",
|
||||
"DonutFillerClip",
|
||||
"DonutFillerModel",
|
||||
"DonutLoRAStack",
|
||||
"DonutWidenMergeCLIP",
|
||||
"DonutWidenMergeUNet",
|
||||
@ -1572,6 +1589,7 @@
|
||||
],
|
||||
"https://github.com/DraconicDragon/ComfyUI_e621_booru_toolkit": [
|
||||
[
|
||||
"GetAnyBooruPostAdv",
|
||||
"GetBooruPost",
|
||||
"TagWikiFetch"
|
||||
],
|
||||
@ -1579,6 +1597,16 @@
|
||||
"title_aux": "ComfyUI e621 booru Toolkit"
|
||||
}
|
||||
],
|
||||
"https://github.com/DreamsInAutumn/ComfyUI-Autumn-LLM-Nodes": [
|
||||
[
|
||||
"GeminiImageToPrompt",
|
||||
"GeminiPromptBuilder",
|
||||
"LLMPromptBuilder"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Autumn-LLM-Nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/Dreamshot-io/ComfyUI-Extend-Resolution": [
|
||||
[
|
||||
"ResolutionPadding"
|
||||
@ -1589,11 +1617,15 @@
|
||||
],
|
||||
"https://github.com/EQXai/ComfyUI_EQX": [
|
||||
[
|
||||
"CountFaces_EQX",
|
||||
"Extract Filename - EQX",
|
||||
"Extract LORA name - EQX",
|
||||
"File Image Selector",
|
||||
"Load Prompt From File - EQX",
|
||||
"LoraStackEQX_random"
|
||||
"LoadRetinaFace_EQX",
|
||||
"LoraStackEQX_random",
|
||||
"NSFW Detector EQX",
|
||||
"SaveImage_EQX"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_EQX"
|
||||
@ -1788,6 +1820,14 @@
|
||||
"title_aux": "ComfyUI-Airtable [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/GalactusX31/ComfyUI-FileBrowserAPI": [
|
||||
[
|
||||
"PathSelectorNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-FileBrowserAPI [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/GentlemanHu/ComfyUI-Notifier": [
|
||||
[
|
||||
"GentlemanHu_Notifier"
|
||||
@ -1881,6 +1921,19 @@
|
||||
"title_aux": "ComfyUI-igTools"
|
||||
}
|
||||
],
|
||||
"https://github.com/IsItDanOrAi/ComfyUI-exLoadout": [
|
||||
[
|
||||
"dropdowns",
|
||||
"exCheckpointLoader",
|
||||
"exLoadoutEditCell",
|
||||
"exLoadoutReadColumn",
|
||||
"exSeg",
|
||||
"exSeg2"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-exLoadout [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4": [
|
||||
[
|
||||
"DisplayText",
|
||||
@ -2284,7 +2337,8 @@
|
||||
"ImageCountConcatenate",
|
||||
"ImageHeigthStitch",
|
||||
"ImageWidthStitch",
|
||||
"MergeImageChannels"
|
||||
"MergeImageChannels",
|
||||
"translators"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-MakkiTools"
|
||||
@ -2311,9 +2365,9 @@
|
||||
"https://github.com/Maxed-Out-99/ComfyUI-MaxedOut": [
|
||||
[
|
||||
"Flux Empty Latent Image",
|
||||
"Flux Image Scale To Total Pixels (Flux Safe)",
|
||||
"Image Scale To Total Pixels (SDXL Safe)",
|
||||
"SDXL Resolutions",
|
||||
"Sd 1.5 Empty Latent Image",
|
||||
"Prompt With Guidance (Flux)",
|
||||
"Sdxl Empty Latent Image"
|
||||
],
|
||||
{
|
||||
@ -2506,6 +2560,7 @@
|
||||
"https://github.com/Novavision0313/ComfyUI-NVVS": [
|
||||
[
|
||||
"AllBlackMaskValidator",
|
||||
"DirectionSelector",
|
||||
"FullBodyDetection",
|
||||
"HighlightIndexSelector",
|
||||
"MaskCoverageAnalysis",
|
||||
@ -2673,6 +2728,7 @@
|
||||
],
|
||||
"https://github.com/RobeSantoro/ComfyUI-RobeNodes": [
|
||||
[
|
||||
"AudioWeights to FadeMask \ud83d\udc24",
|
||||
"Boolean Primitive \ud83d\udc24",
|
||||
"Image Input Switch \ud83d\udc24",
|
||||
"Indices Generator \ud83d\udc24",
|
||||
@ -2979,6 +3035,7 @@
|
||||
"SDVN Checkpoint Download List",
|
||||
"SDVN ControlNet Download",
|
||||
"SDVN Controlnet Apply",
|
||||
"SDVN Crop By Ratio",
|
||||
"SDVN DALL-E Generate Image",
|
||||
"SDVN Dall-E Generate Image 2",
|
||||
"SDVN Dic Convert",
|
||||
@ -3043,6 +3100,8 @@
|
||||
"SDVN Save Text",
|
||||
"SDVN Seed",
|
||||
"SDVN Simple Any Input",
|
||||
"SDVN Slider 1",
|
||||
"SDVN Slider 100",
|
||||
"SDVN StyleModel Download",
|
||||
"SDVN Styles",
|
||||
"SDVN Switch",
|
||||
@ -3451,9 +3510,11 @@
|
||||
],
|
||||
"https://github.com/aa-parky/pipemind-comfyui": [
|
||||
[
|
||||
"BatchImageLoad",
|
||||
"BatchImageLoadInput",
|
||||
"BatchImageLoadOutput",
|
||||
"BooleanSwitchAny",
|
||||
"KeywordPromptComposer",
|
||||
"LoadTxtFile",
|
||||
"PipemindDisplayAny",
|
||||
"PipemindFlux2MAspectRatio",
|
||||
"PipemindLoraLoader",
|
||||
@ -3549,7 +3610,8 @@
|
||||
"ReicaGCPWriteImageNode",
|
||||
"ReicaHTTPNotification",
|
||||
"ReicaReadImageUrl",
|
||||
"ReicaTextImageDisplay"
|
||||
"ReicaTextImageDisplay",
|
||||
"ReicaURLImageLoader"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Reica"
|
||||
@ -4067,7 +4129,7 @@
|
||||
],
|
||||
"https://github.com/bulldog68/ComfyUI_FMJ": [
|
||||
[
|
||||
"CreaPrompt"
|
||||
"FMJCreaPrompt"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_FMJ [WIP]"
|
||||
@ -4289,6 +4351,7 @@
|
||||
"ControlNetInpaintingAliMamaApply",
|
||||
"ControlNetLoader",
|
||||
"CosmosImageToVideoLatent",
|
||||
"CosmosPredict2ImageToVideoLatent",
|
||||
"CreateVideo",
|
||||
"CropMask",
|
||||
"DiffControlNetLoader",
|
||||
@ -4415,11 +4478,14 @@
|
||||
"LoadImage",
|
||||
"LoadImageMask",
|
||||
"LoadImageOutput",
|
||||
"LoadImageSetFromFolderNode",
|
||||
"LoadLatent",
|
||||
"LoadVideo",
|
||||
"LoraLoader",
|
||||
"LoraLoaderModelOnly",
|
||||
"LoraModelLoader",
|
||||
"LoraSave",
|
||||
"LossGraphNode",
|
||||
"LotusConditioning",
|
||||
"LumaConceptsNode",
|
||||
"LumaImageModifyNode",
|
||||
@ -4556,6 +4622,7 @@
|
||||
"SaveImage",
|
||||
"SaveImageWebsocket",
|
||||
"SaveLatent",
|
||||
"SaveLoRANode",
|
||||
"SaveSVGNode",
|
||||
"SaveVideo",
|
||||
"SaveWEBM",
|
||||
@ -4631,6 +4698,7 @@
|
||||
"ThresholdMask",
|
||||
"TomePatchModel",
|
||||
"TorchCompileModel",
|
||||
"TrainLoraNode",
|
||||
"TrimVideoLatent",
|
||||
"TripleCLIPLoader",
|
||||
"TripoConversionNode",
|
||||
@ -5030,6 +5098,19 @@
|
||||
"title_aux": "ComfyUI-SenseVoice [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/fangg2000/ComfyUI-StableAudioFG": [
|
||||
[
|
||||
"LoadStableAudioModel",
|
||||
"StableAudioFG"
|
||||
],
|
||||
{
|
||||
"author": "lks-ai",
|
||||
"description": "A Simple integration of Stable Audio Diffusion with knobs and stuff!",
|
||||
"nickname": "stableaudio",
|
||||
"title": "StableAudioSampler",
|
||||
"title_aux": "ComfyUI-StableAudioFG [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/fangziheng2321/comfyuinode_chopmask": [
|
||||
[
|
||||
"cus_chopmask"
|
||||
@ -5044,7 +5125,8 @@
|
||||
"HtmlPreview",
|
||||
"LoadHtml",
|
||||
"SaveHtml",
|
||||
"SingleImageToBase64"
|
||||
"SingleImageToBase64",
|
||||
"SingleImageToBase64KeepMetadata"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_html [UNSAFE]"
|
||||
@ -5088,6 +5170,15 @@
|
||||
"title_aux": "comfyui-redux-style"
|
||||
}
|
||||
],
|
||||
"https://github.com/franky519/comfyui_fnckc_Face_analysis": [
|
||||
[
|
||||
"FaceAnalysisModels",
|
||||
"FaceFourImageMatcher"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI Face Four Image Matcher [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/fritzprix/ComfyUI-LLM-Utils": [
|
||||
[
|
||||
"WeightedDict",
|
||||
@ -5189,6 +5280,14 @@
|
||||
"title_aux": "ComfyUI-N_SwapInput [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/gilons/ComfyUI-GoogleDrive-Downloader": [
|
||||
[
|
||||
"custom_nodes"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-GoogleDrive-Downloader [UNSAFE]"
|
||||
}
|
||||
],
|
||||
"https://github.com/gitadmini/comfyui_extractstoryboards": [
|
||||
[
|
||||
"Example",
|
||||
@ -5349,16 +5448,14 @@
|
||||
"HolafBenchmarkLoader",
|
||||
"HolafBenchmarkPlotter",
|
||||
"HolafBenchmarkRunner",
|
||||
"HolafColorMatcher",
|
||||
"HolafImageComparer",
|
||||
"HolafInstagramResize",
|
||||
"HolafInteractiveImageEditor",
|
||||
"HolafKSampler",
|
||||
"HolafLutApplier",
|
||||
"HolafLutGenerator",
|
||||
"HolafLutLoader",
|
||||
"HolafLutSaver",
|
||||
"HolafNeurogridOverload",
|
||||
"HolafMaskToBoolean",
|
||||
"HolafOverlayNode",
|
||||
"HolafResolutionPreset",
|
||||
"HolafSaveImage",
|
||||
@ -5469,6 +5566,18 @@
|
||||
"title_aux": "ComfyUI_pxtool [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/hdfhssg/comfyui_EvoSearch": [
|
||||
[
|
||||
"EvoSearch_FLUX",
|
||||
"EvoSearch_SD21",
|
||||
"EvoSearch_WAN",
|
||||
"EvolutionScheduleGenerator",
|
||||
"GuidanceRewardsGenerator"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui_EvoSearch [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/hiusdev/ComfyUI_Lah_Toffee": [
|
||||
[
|
||||
"LoadVideoRandom"
|
||||
@ -6128,6 +6237,7 @@
|
||||
"Hy3DUploadMesh",
|
||||
"Hy3DVAEDecode",
|
||||
"Hy3DVAELoader",
|
||||
"Hy3D_2_1SimpleMeshGen",
|
||||
"MESHToTrimesh",
|
||||
"TrimeshToMESH"
|
||||
],
|
||||
@ -6237,6 +6347,8 @@
|
||||
"ReCamMasterPoseVisualizer",
|
||||
"WanVideoATITracks",
|
||||
"WanVideoATITracksVisualize",
|
||||
"WanVideoATI_comfy",
|
||||
"WanVideoApplyNAG",
|
||||
"WanVideoBlockSwap",
|
||||
"WanVideoClipVisionEncode",
|
||||
"WanVideoContextOptions",
|
||||
@ -6257,6 +6369,7 @@
|
||||
"WanVideoLoopArgs",
|
||||
"WanVideoLoraBlockEdit",
|
||||
"WanVideoLoraSelect",
|
||||
"WanVideoMagCache",
|
||||
"WanVideoModelLoader",
|
||||
"WanVideoPhantomEmbeds",
|
||||
"WanVideoReCamMasterCameraEmbed",
|
||||
@ -6269,6 +6382,7 @@
|
||||
"WanVideoTeaCache",
|
||||
"WanVideoTextEmbedBridge",
|
||||
"WanVideoTextEncode",
|
||||
"WanVideoTextEncodeSingle",
|
||||
"WanVideoTinyVAELoader",
|
||||
"WanVideoTorchCompileSettings",
|
||||
"WanVideoUni3C_ControlnetLoader",
|
||||
@ -6803,6 +6917,7 @@
|
||||
"polymath_helper",
|
||||
"polymath_scraper",
|
||||
"polymath_settings",
|
||||
"polymath_template",
|
||||
"polymath_text_mask"
|
||||
],
|
||||
{
|
||||
@ -7051,6 +7166,17 @@
|
||||
"title_aux": "comfy-url-fetcher [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/moonwhaler/comfyui-moonpack": [
|
||||
[
|
||||
"ProportionalDimension",
|
||||
"RegexStringReplace",
|
||||
"SimpleStringReplace",
|
||||
"VACELooperFrameScheduler"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-moonpack"
|
||||
}
|
||||
],
|
||||
"https://github.com/mr-krak3n/ComfyUI-Qwen": [
|
||||
[
|
||||
"DeepSeekResponseParser",
|
||||
@ -7479,6 +7605,7 @@
|
||||
],
|
||||
"https://github.com/pomelyu/cy-prompt-tools": [
|
||||
[
|
||||
"CY_LLM",
|
||||
"CY_LoadPrompt",
|
||||
"CY_LoadPrompt4",
|
||||
"CY_LoadPromptPro",
|
||||
@ -7552,19 +7679,24 @@
|
||||
"CreateListJSON",
|
||||
"CreateListString",
|
||||
"DoLogin",
|
||||
"FixLinksAndRevLinks",
|
||||
"HttpRequest",
|
||||
"Image_Attachment",
|
||||
"IncludeInSpiderData",
|
||||
"JSON_Attachment",
|
||||
"Json2String",
|
||||
"LoadSpiderData",
|
||||
"PNGtoImage",
|
||||
"Query_OpenAI",
|
||||
"RemoveCircularReferences",
|
||||
"RunPython",
|
||||
"RunPythonGriptapeTool",
|
||||
"SaveSpiderData",
|
||||
"SpiderCrawl",
|
||||
"SpiderSplit",
|
||||
"String2Json",
|
||||
"String_Attachment"
|
||||
"String_Attachment",
|
||||
"TextMultiSave"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-AI_Tools [UNSAFE]"
|
||||
@ -7731,6 +7863,7 @@
|
||||
[
|
||||
"Batch Keyframes",
|
||||
"Get Image Dimensions",
|
||||
"Image Mix RGB",
|
||||
"Pad Batch to 4n+1",
|
||||
"Resize Frame",
|
||||
"Slot Frame",
|
||||
@ -7980,6 +8113,20 @@
|
||||
"title_aux": "ComfyUI_ReduxEmbedToolkit"
|
||||
}
|
||||
],
|
||||
"https://github.com/simonjaq/ComfyUI-sjnodes": [
|
||||
[
|
||||
"CrossFadeVideo",
|
||||
"InpaintCropImprovedGPU",
|
||||
"InpaintStitchImprovedGPU",
|
||||
"LoadStitcherFromFile",
|
||||
"SaveStitcherToFile",
|
||||
"SmoothTemporalMask",
|
||||
"WanVideoVACEExtend"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-sjnodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/smthemex/ComfyUI_GPT_SoVITS_Lite": [
|
||||
[
|
||||
"GPT_SoVITS_LoadModel",
|
||||
@ -8070,6 +8217,16 @@
|
||||
"title_aux": "comfyui-sourceful-official"
|
||||
}
|
||||
],
|
||||
"https://github.com/spawner1145/comfyui-spawner-nodes": [
|
||||
[
|
||||
"ImageMetadataReader",
|
||||
"TextEncoderDecoder",
|
||||
"json_process"
|
||||
],
|
||||
{
|
||||
"title_aux": "comfyui-spawner-nodes"
|
||||
}
|
||||
],
|
||||
"https://github.com/sswink/comfyui-lingshang": [
|
||||
[
|
||||
"LS_ALY_Seg_Body_Utils",
|
||||
@ -8431,6 +8588,15 @@
|
||||
"title_aux": "ComfyUI-RaceDetect"
|
||||
}
|
||||
],
|
||||
"https://github.com/usrname0/ComfyUI-AllergicPack": [
|
||||
[
|
||||
"FolderFileCounter_Allergic",
|
||||
"IncrementorPlus"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-AllergicPack [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/var1ableX/ComfyUI_Accessories": [
|
||||
[
|
||||
"ACC_AnyCast",
|
||||
@ -8481,8 +8647,10 @@
|
||||
"SAM1AutoEverything",
|
||||
"VVL_DetectionScaler",
|
||||
"VVL_Florence2SAM2",
|
||||
"VVL_GroundingDinoLoader",
|
||||
"VVL_GroundingDinoSAM2",
|
||||
"VVL_MaskCleaner",
|
||||
"VVL_MaskToBBox",
|
||||
"VVL_SAM1Loader",
|
||||
"VVL_SAM2Loader"
|
||||
],
|
||||
@ -8501,8 +8669,8 @@
|
||||
],
|
||||
"https://github.com/wTechArtist/ComfyUI_VVL_VideoCamera": [
|
||||
[
|
||||
"VideoCameraEstimator",
|
||||
"VideoFrameExtractor"
|
||||
"ImageSequenceCameraEstimator",
|
||||
"VVLColmapMVSDepthNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI_VVL_VideoCamera"
|
||||
@ -8572,6 +8740,28 @@
|
||||
"title_aux": "FindBrightestSpot [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/whmc76/ComfyUI-LongTextTTSSuite": [
|
||||
[
|
||||
"AudioConcatenateFree",
|
||||
"CombineAudioFromList",
|
||||
"IndexSelectFromList",
|
||||
"ListLength",
|
||||
"LongTextSplitter",
|
||||
"MakeAudioBatch",
|
||||
"SubtitleFileLoader"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-LongTextTTSSuite [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/wildminder/ComfyUI-MagCache": [
|
||||
[
|
||||
"MagCache"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-MagCache [NAME CONFLICT|WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/willblaschko/ComfyUI-Unload-Models": [
|
||||
[
|
||||
"DeleteAnyObject",
|
||||
@ -8720,6 +8910,14 @@
|
||||
"title_aux": "honey_nodes [WIP]"
|
||||
}
|
||||
],
|
||||
"https://github.com/xzuyn/ComfyUI-xzuynodes": [
|
||||
[
|
||||
"LastFrameNode"
|
||||
],
|
||||
{
|
||||
"title_aux": "xzuynodes-ComfyUI"
|
||||
}
|
||||
],
|
||||
"https://github.com/y4my4my4m/ComfyUI_Direct3DS2": [
|
||||
[
|
||||
"Direct3DS2ModelDownloader",
|
||||
@ -8842,11 +9040,26 @@
|
||||
"title_aux": "ComfyUI_Lam"
|
||||
}
|
||||
],
|
||||
"https://github.com/yichengup/ComfyUI-Transition": [
|
||||
[
|
||||
"CircularSequenceTransition",
|
||||
"CircularTransition",
|
||||
"DualLineTransition",
|
||||
"GradientTransition",
|
||||
"LinearTransition",
|
||||
"SequenceTransition"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-Transition"
|
||||
}
|
||||
],
|
||||
"https://github.com/yichengup/ComfyUI-YCNodes_Advance": [
|
||||
[
|
||||
"FaceDetectorSelector",
|
||||
"HumanPartsUltra",
|
||||
"YC Color Match"
|
||||
"YC Color Match",
|
||||
"YCFaceAlignToCanvas",
|
||||
"YCFaceAnalysisModels"
|
||||
],
|
||||
{
|
||||
"title_aux": "ComfyUI-YCNodes_Advance"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,36 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "theUpsider",
|
||||
"title": "ComfyUI-Logic [DEPRECATED]",
|
||||
"id": "comfy-logic",
|
||||
"reference": "https://github.com/theUpsider/ComfyUI-Logic",
|
||||
"files": [
|
||||
"https://github.com/theUpsider/ComfyUI-Logic"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "An extension to ComfyUI that introduces logic nodes and conditional rendering capabilities."
|
||||
},
|
||||
{
|
||||
"author": "Malloc-pix",
|
||||
"title": "comfyui_qwen2.4_vl_node [REMOVED]",
|
||||
"reference": "https://github.com/Malloc-pix/comfyui_qwen2.4_vl_node",
|
||||
"files": [
|
||||
"https://github.com/Malloc-pix/comfyui_qwen2.4_vl_node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: CogVLM2 Captioner, CLIP Dynamic Text Encode(cy)"
|
||||
},
|
||||
{
|
||||
"author": "inyourdreams-studio",
|
||||
"title": "ComfyUI-RBLM [REMOVED]",
|
||||
"reference": "https://github.com/inyourdreams-studio/comfyui-rblm",
|
||||
"files": [
|
||||
"https://github.com/inyourdreams-studio/comfyui-rblm"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node pack for ComfyUI that provides text manipulation nodes."
|
||||
},
|
||||
{
|
||||
"author": "dream-computing",
|
||||
"title": "SyntaxNodes - Image Processing Effects for ComfyUI [REMOVED]",
|
||||
|
||||
@ -1,5 +1,484 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "Yuan-ManX",
|
||||
"title": "ComfyUI-Hunyuan3D-2.1",
|
||||
"reference": "https://github.com/Yuan-ManX/ComfyUI-Hunyuan3D-2.1",
|
||||
"files": [
|
||||
"https://github.com/Yuan-ManX/ComfyUI-Hunyuan3D-2.1"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-Hunyuan3D-2.1 is now available in ComfyUI, Hunyuan3D-2.1 is a scalable 3D asset creation system that advances state-of-the-art 3D generation through two pivotal innovations: Fully Open-Source Framework and Physically-Based Rendering (PBR) Texture Synthesis."
|
||||
},
|
||||
{
|
||||
"author": "Leon",
|
||||
"title": "Leon's Utility and API Integration Nodes",
|
||||
"id": "leon",
|
||||
"reference": "https://github.com/l3ony2k/comfyui-leon-nodes",
|
||||
"files": [
|
||||
"https://github.com/l3ony2k/comfyui-leon-nodes"
|
||||
],
|
||||
"nodename_pattern": "^🤖 Leon",
|
||||
"install_type": "git-clone",
|
||||
"description": "A comprehensive collection of utility and API integration nodes for ComfyUI. Includes image manipulation (4-grid split), string utilities, and multiple API integrations: ImgBB upload, HyprLab upload, Google Image API, Luma AI, FLUX Image API, FLUX Kontext API, and Midjourney proxy integration. Features include image/video hosting, AI image generation, and image description capabilities.",
|
||||
"pip": [
|
||||
"Pillow",
|
||||
"torch",
|
||||
"numpy",
|
||||
"requests",
|
||||
"tenacity"
|
||||
],
|
||||
"tags": [
|
||||
"image",
|
||||
"utility",
|
||||
"api",
|
||||
"upload",
|
||||
"generation",
|
||||
"split",
|
||||
"string",
|
||||
"imgbb",
|
||||
"hypr",
|
||||
"google",
|
||||
"luma",
|
||||
"flux",
|
||||
"midjourney"
|
||||
]
|
||||
},
|
||||
{
|
||||
"author": "lum3on",
|
||||
"title": "comfyui_EdgeTAM",
|
||||
"reference": "https://github.com/lum3on/comfyui_EdgeTAM",
|
||||
"files": [
|
||||
"https://github.com/lum3on/comfyui_EdgeTAM"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node implementation of EdgeTAM (On-Device Track Anything Model) for efficient, interactive video object tracking."
|
||||
},
|
||||
{
|
||||
"author": "christian-byrne",
|
||||
"title": "Claude Code ComfyUI Nodes",
|
||||
"reference": "https://github.com/christian-byrne/claude-code-comfyui-nodes",
|
||||
"files": [
|
||||
"https://github.com/christian-byrne/claude-code-comfyui-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI nodes for integrating Claude Code SDK - enables AI-powered code generation, analysis, and assistance within ComfyUI workflows"
|
||||
},
|
||||
{
|
||||
"author": "coiichan",
|
||||
"title": "comfyui-every-person-seg-coii",
|
||||
"reference": "https://github.com/CoiiChan/comfyui-every-person-seg-coii",
|
||||
"files": [
|
||||
"https://github.com/CoiiChan/comfyui-every-person-seg-coii"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A masking tool that provides the ability to break down the detailed contours of characters one by one for multi person use scenarios"
|
||||
},
|
||||
{
|
||||
"author": "havvk",
|
||||
"title": "ComfyUI_AIIA",
|
||||
"reference": "https://github.com/havvk/ComfyUI_AIIA",
|
||||
"files": [
|
||||
"https://github.com/havvk/ComfyUI_AIIA"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "AIIA Nodes for ComfyUI is a comprehensive suite of advanced nodes designed to streamline and supercharge your video and audio generation workflows. It centrally addresses the critical Out-Of-Memory (OOM) issues encountered when processing long sequences by intelligently handling frames on disk. The suite includes: a powerful Video Combiner with an extensible format system; memory-efficient FLOAT Talking Head Animator nodes with both in-memory (for speed) and on-disk (for stability) modes; and a sophisticated Speaker Diarization toolkit powered by NeMo for identifying who spoke when. Utility nodes like the OOM-safe Image Sequence Concatenator are also included to create comparison or multi-panel videos effortlessly."
|
||||
},
|
||||
{
|
||||
"author": "dseditor",
|
||||
"title": "ComfyUI-Thread",
|
||||
"reference": "https://github.com/dseditor/ComfyUI-Thread",
|
||||
"files": [
|
||||
"https://github.com/dseditor/ComfyUI-Thread"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node package for seamless integration with Threads (Meta's social platform). This package allows you to publish posts, manage images, and retrieve post history directly from your ComfyUI workflows."
|
||||
},
|
||||
{
|
||||
"author": "flamacore",
|
||||
"title": "ComfyUI YouTube Uploader",
|
||||
"id": "comfyui-youtubeuploader",
|
||||
"reference": "https://github.com/flamacore/ComfyUI-YouTubeUploader",
|
||||
"files": [
|
||||
"https://github.com/flamacore/ComfyUI-YouTubeUploader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI node for uploading generated content to YouTube. [a/Buy me a coffee](https://buymeacoffee.com/chao.k)"
|
||||
},
|
||||
{
|
||||
"author": "kiko9",
|
||||
"title": "ComfyUI-KikoTools",
|
||||
"reference": "https://github.com/ComfyAssets/ComfyUI-KikoTools",
|
||||
"files": [
|
||||
"https://github.com/ComfyAssets/ComfyUI-KikoTools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-KikoTools provides carefully crafted, production-ready nodes grouped under the 'ComfyAssets' category. Each tool is designed with clean interfaces, comprehensive testing, and optimized performance for SDXL and FLUX workflows."
|
||||
},
|
||||
{
|
||||
"author": "TTPlanetPig",
|
||||
"title": "ComfyUI Qwen2.5-VL Object Detection Node",
|
||||
"reference": "https://github.com/TTPlanetPig/Comfyui_Object_Detect_QWen_VL",
|
||||
"files": [
|
||||
"https://github.com/TTPlanetPig/Comfyui_Object_Detect_QWen_VL"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository provides a custom ComfyUI node for running object detection with the [a/Qwen 2.5 VL](https://github.com/QwenLM/Qwen2.5-VL) model. The node downloads the selected model on demand, runs a detection prompt and outputs bounding boxes that can be used with segmentation nodes such as [a/SAM2](https://github.com/kijai/ComfyUI-segment-anything-2)."
|
||||
},
|
||||
{
|
||||
"author": "neocrz",
|
||||
"title": "comfyui-usetaesd",
|
||||
"reference": "https://github.com/neocrz/comfyui-usetaesd",
|
||||
"files": [
|
||||
"https://github.com/neocrz/comfyui-usetaesd"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node set for ComfyUI that provides nodes for encoding and decoding images using Tiny AutoEncoders for Stable Diffusion (TAESD) models."
|
||||
},
|
||||
{
|
||||
"author": "adamreading",
|
||||
"title": "ComfyUI-AjoNodes",
|
||||
"reference": "https://github.com/AJO-reading/ComfyUI-AjoNodes",
|
||||
"files": [
|
||||
"https://github.com/AJO-reading/ComfyUI-AjoNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of custom nodes designed for ComfyUI from the AJO-reading organization. This repository currently includes the Audio Collect & Concat node, which collects multiple audio segments and concatenates them into a single audio stream."
|
||||
},
|
||||
{
|
||||
"author": "Zehong-Ma",
|
||||
"title": "ComfyUI-MagCache",
|
||||
"reference": "https://github.com/Zehong-Ma/ComfyUI-MagCache",
|
||||
"files": [
|
||||
"https://github.com/Zehong-Ma/ComfyUI-MagCache"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "official implementation of [zehong-ma/MagCache](https://github.com/zehong-ma/MagCache) for ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "without-ordinary",
|
||||
"title": "OpenOutpaint ComfyUI Interface",
|
||||
"reference": "https://github.com/without-ordinary/openoutpaint_comfyui_interface",
|
||||
"files": [
|
||||
"https://github.com/without-ordinary/openoutpaint_comfyui_interface"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "An API interface for OpenOutpaint to work with ComfyUI workflow"
|
||||
},
|
||||
{
|
||||
"author": "kiko9",
|
||||
"title": "ComfyUI_Selectors",
|
||||
"reference": "https://github.com/ComfyAssets/ComfyUI_Selectors",
|
||||
"files": [
|
||||
"https://github.com/ComfyAssets/ComfyUI_Selectors"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A modern ComfyUI custom node package that provides essential UI controls for image generation workflows. These nodes allow you to centralize commonly shared parameters (scheduler, sampler, dimensions, seeds) and link them to multiple nodes in your workflow, eliminating redundancy while maintaining JSON metadata compatibility."
|
||||
},
|
||||
{
|
||||
"author": "benjamin-bertram",
|
||||
"title": "ComfyUI OIDN Denoiser",
|
||||
"reference": "https://github.com/benjamin-bertram/Comfyui_OIDN_Denoiser",
|
||||
"files": [
|
||||
"https://github.com/benjamin-bertram/Comfyui_OIDN_Denoiser"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node for ComfyUI provides a wrapper for Intel's Open Image Denoise (OIDN) library, allowing you to denoise images directly within your ComfyUI workflow."
|
||||
},
|
||||
{
|
||||
"author": "domenecmiralles",
|
||||
"title": "obobo_nodes",
|
||||
"reference": "https://github.com/domenecmiralles/obobo_nodes",
|
||||
"files": [
|
||||
"https://github.com/domenecmiralles/obobo_nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of custom nodes for ComfyUI that provide various input and output capabilities."
|
||||
},
|
||||
{
|
||||
"author": "Yuan-ManX",
|
||||
"title": "ComfyUI-Vui",
|
||||
"reference": "https://github.com/Yuan-ManX/ComfyUI-Vui",
|
||||
"files": [
|
||||
"https://github.com/Yuan-ManX/ComfyUI-Vui"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-Vui is now available in ComfyUI, Vui is a llama based transformer that predicts audio tokens."
|
||||
},
|
||||
{
|
||||
"author": "LargeModGames",
|
||||
"title": "ComfyUI LoRA Auto Downloader",
|
||||
"reference": "https://github.com/LargeModGames/comfyui-smart-lora-downloader",
|
||||
"files": [
|
||||
"https://github.com/LargeModGames/comfyui-smart-lora-downloader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Automatically download missing LoRAs from CivitAI and detect missing LoRAs in workflows. Features smart directory detection and easy installation."
|
||||
},
|
||||
{
|
||||
"author": "hassan-sd",
|
||||
"title": "ComfyUI Image & Prompt Loader",
|
||||
"id": "hassanprompt",
|
||||
"reference": "https://github.com/hassan-sd/comfyui-image-prompt-loader",
|
||||
"files": [
|
||||
"https://github.com/hassan-sd/comfyui-image-prompt-loader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Load images with automatic prompt extraction from Civitai URLs, caption files, or EXIF metadata. Features smart dataset detection and dynamic preview updates."
|
||||
},
|
||||
{
|
||||
"author": "Isi-dev",
|
||||
"title": "ComfyUI-Animation_Nodes_and_Workflows",
|
||||
"reference": "https://github.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows",
|
||||
"files": [
|
||||
"https://github.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "These are nodes and workflows that can facilitate the creation of animations and video compilations."
|
||||
},
|
||||
{
|
||||
"author": "NeoDroleDeGueule",
|
||||
"title": "comfyui-image-mixer",
|
||||
"reference": "https://github.com/NeoDroleDeGueule/comfyui-image-mixer",
|
||||
"files": [
|
||||
"https://github.com/NeoDroleDeGueule/comfyui-image-mixer"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node that blends two images in latent space using a mix factor slider."
|
||||
},
|
||||
{
|
||||
"author": "orion4d",
|
||||
"title": "ComfyUI_extract_imag",
|
||||
"reference": "https://github.com/orion4d/ComfyUI_extract_imag",
|
||||
"files": [
|
||||
"https://github.com/orion4d/ComfyUI_extract_imag"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This ComfyUI node allows you to extract all images found in various types of documents and save them to disk. It also provides a preview of the first extracted image."
|
||||
},
|
||||
{
|
||||
"author": "xuhuan2048",
|
||||
"title": "ExtractStoryboards",
|
||||
"id": "xuhuan2048_ExtractStoryboards",
|
||||
"reference": "https://github.com/gitadmini/comfyui_extractstoryboards",
|
||||
"files": [
|
||||
"https://github.com/gitadmini/comfyui_extractstoryboards"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A tool for decomposing video storyboards, which can obtain storyboards and keyframes"
|
||||
},
|
||||
{
|
||||
"author": "sugarkwork",
|
||||
"title": "comfyui-trtupscaler",
|
||||
"reference": "https://github.com/sugarkwork/comfyui-trtupscaler",
|
||||
"files": [
|
||||
"https://github.com/sugarkwork/comfyui-trtupscaler"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "TensorRT Upscaler for ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "YMC",
|
||||
"title": "ymc_node_joy",
|
||||
"reference": "https://github.com/YMC-GitHub/ymc_node_joy",
|
||||
"files": [
|
||||
"https://github.com/YMC-GitHub/ymc_node_joy"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "comfyui custom nodes to caption image with joy"
|
||||
},
|
||||
{
|
||||
"author": "pawelmal0101",
|
||||
"title": "ComfyUI Webhook Notifier",
|
||||
"reference": "https://github.com/pawelmal0101/ComfyUI-Webhook",
|
||||
"files": [
|
||||
"https://github.com/pawelmal0101/ComfyUI-Webhook"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A simple ComfyUI custom node that sends webhook notifications when images are generated. Perfect for integrating your image generation workflow with external services or your own backend."
|
||||
},
|
||||
{
|
||||
"author": "mw",
|
||||
"title": "ComfyUI_SOME",
|
||||
"reference": "https://github.com/billwuhao/ComfyUI_SOME",
|
||||
"files": [
|
||||
"https://github.com/billwuhao/ComfyUI_SOME"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Sing to Midi 🎶"
|
||||
},
|
||||
{
|
||||
"author": "A043-studios",
|
||||
"title": "ComfyUI Deforum-X-Flux Nodes",
|
||||
"reference": "https://github.com/A043-studios/comfyui-deforum-x-flux-nodes",
|
||||
"files": [
|
||||
"https://github.com/A043-studios/comfyui-deforum-x-flux-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Professional video animation nodes for ComfyUI based on Deforum-X-Flux research"
|
||||
},
|
||||
{
|
||||
"author": "AgencyMind",
|
||||
"title": "ComfyUI-GPU-Preprocessor-Wrapper",
|
||||
"reference": "https://github.com/AgencyMind/ComfyUI-GPU-Preprocessor-Wrapper",
|
||||
"files": [
|
||||
"https://github.com/AgencyMind/ComfyUI-GPU-Preprocessor-Wrapper"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node extension that solves multi-GPU device conflicts for ControlNet preprocessors."
|
||||
},
|
||||
{
|
||||
"author": "orion4d",
|
||||
"title": "ComfyUI PDF Nodes",
|
||||
"reference": "https://github.com/orion4d/ComfyUI_pdf_nodes",
|
||||
"files": [
|
||||
"https://github.com/orion4d/ComfyUI_pdf_nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository contains a set of custom nodes for ComfyUI that allow you to load, manipulate, extract information from, and preview PDF files directly within your workflows."
|
||||
},
|
||||
{
|
||||
"author": "olivv-cs",
|
||||
"title": "ComfyUI-FunPack",
|
||||
"reference": "https://github.com/olivv-cs/ComfyUI-FunPack",
|
||||
"files": [
|
||||
"https://github.com/olivv-cs/ComfyUI-FunPack"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A set of custom nodes designed for experiments with video diffusion models."
|
||||
},
|
||||
{
|
||||
"author": "Zachary116699",
|
||||
"title": "ComfyUI_LoadImageWithMetaDataEx",
|
||||
"reference": "https://github.com/Zachary116699/ComfyUI-LoadImageWithMetaDataEx",
|
||||
"files": [
|
||||
"https://github.com/Zachary116699/ComfyUI-LoadImageWithMetaDataEx"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom node for ComfyUI. It can read metadata from the image filepath, and filepath can be provided as a connected input, which allows it to batch read image metadata in a loop."
|
||||
},
|
||||
{
|
||||
"author": "bytedance",
|
||||
"title": "comfyui-lumi-batcher",
|
||||
"reference": "https://github.com/bytedance/comfyui-lumi-batcher",
|
||||
"files": [
|
||||
"https://github.com/bytedance/comfyui-lumi-batcher"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI Lumi Batcher is a batch processing extension plugin designed for ComfyUI, aiming to improve workflow debugging efficiency. Traditional debugging methods require adjusting parameters one by one, while this tool significantly enhances work efficiency through batch processing capabilities."
|
||||
},
|
||||
{
|
||||
"author": "fredconex",
|
||||
"title": "ComfyUI_SoundFlow",
|
||||
"reference": "https://github.com/fredconex/ComfyUI_SoundFlow",
|
||||
"files": [
|
||||
"https://github.com/fredconex/ComfyUI_SoundFlow"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a bunch of nodes for ComfyUI to help with sound work."
|
||||
},
|
||||
{
|
||||
"author": "A043-studios",
|
||||
"title": "Pixel3DMM ComfyUI Nodes",
|
||||
"reference": "https://github.com/A043-studios/comfyui-pixel3dmm",
|
||||
"files": [
|
||||
"https://github.com/A043-studios/comfyui-pixel3dmm"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Professional 3D face reconstruction for ComfyUI using the Pixel3DMM method"
|
||||
},
|
||||
{
|
||||
"author": "ShmuelRonen",
|
||||
"title": "Flux Kontext Creator for ComfyUI",
|
||||
"reference": "https://github.com/ShmuelRonen/FluxKontextCreator",
|
||||
"files": [
|
||||
"https://github.com/ShmuelRonen/FluxKontextCreator"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A powerful ComfyUI custom node for text-based image editing using Black Forest Labs' Flux Kontext API. Transform your images with simple text instructions while maintaining character consistency and quality."
|
||||
},
|
||||
{
|
||||
"author": "o-l-l-i",
|
||||
"title": "Olm LUT Node for ComfyUI",
|
||||
"reference": "https://github.com/o-l-l-i/ComfyUI-OlmLUT",
|
||||
"files": [
|
||||
"https://github.com/o-l-l-i/ComfyUI-OlmLUT"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The Olm LUT is a custom node for ComfyUI that allows you to apply .cube LUT (Look-Up Table) files to images within your generative workflows. It supports creative workflows including film emulation, color grading, and aesthetic stylization using LUTs."
|
||||
},
|
||||
{
|
||||
"author": "Yuan-ManX",
|
||||
"title": "ComfyUI-Direct3D-S2",
|
||||
"reference": "https://github.com/Yuan-ManX/ComfyUI-Direct3D-S2",
|
||||
"files": [
|
||||
"https://github.com/Yuan-ManX/ComfyUI-Direct3D-S2"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-Direct3D‑S2 is now available in ComfyUI, Direct3D‑S2 - Gigascale 3D Generation Made Easy with Spatial Sparse Attention. Direct3D‑S2 is a scalable 3D generation framework based on sparse volumes that achieves superior output quality with dramatically reduced training costs."
|
||||
},
|
||||
{
|
||||
"author": "lum3on",
|
||||
"title": "ComfyUI-FrameUtilitys",
|
||||
"reference": "https://github.com/lum3on/ComfyUI-FrameUtilitys",
|
||||
"files": [
|
||||
"https://github.com/lum3on/ComfyUI-FrameUtilitys"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Professional-grade frame manipulation tools for ComfyUI, providing advanced video editing capabilities with native IMAGE tensor support."
|
||||
},
|
||||
{
|
||||
"author": "INuBq8",
|
||||
"title": "Notification Bridge",
|
||||
"reference": "https://github.com/INuBq8/ComfyUI-NotificationBridge",
|
||||
"files": [
|
||||
"https://github.com/INuBq8/ComfyUI-NotificationBridge"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Bridge nodes for ComfyUI that send messages through WhatsApp (Twilio) and Discord when a workflow completes."
|
||||
},
|
||||
{
|
||||
"author": "Erehr",
|
||||
"title": "ComfyUI-EreNodes",
|
||||
"reference": "https://github.com/Erehr/ComfyUI-EreNodes",
|
||||
"files": [
|
||||
"https://github.com/Erehr/ComfyUI-EreNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of prompt managent nodes with advanced tag parsing. Prompt tag cloud, mutiselect, toggle list, randomizer, filter, autocompete."
|
||||
},
|
||||
{
|
||||
"author": "11dogzi",
|
||||
"title": "CYBERPUNK-STYLE-DIY",
|
||||
"id": "CYBERPUNK-STYLE-DIY",
|
||||
"reference": "https://github.com/11dogzi/CYBERPUNK-STYLE-DIY",
|
||||
"files": [
|
||||
"https://github.com/11dogzi/CYBERPUNK-STYLE-DIY"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A comprehensive ComfyUI theme plugin with stunning cyberpunk aesthetics and powerful customization features"
|
||||
},
|
||||
{
|
||||
"author": "keit",
|
||||
"title": "ComfyUI-keitNodes",
|
||||
"id": "comfyui-image-toolkit",
|
||||
"reference": "https://github.com/keit0728/ComfyUI-keitNodes",
|
||||
"files": [
|
||||
"https://github.com/keit0728/ComfyUI-keitNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is keit's utility nodes."
|
||||
},
|
||||
{
|
||||
"author": "xiaowc",
|
||||
"title": "Comfyui-Dynamic-Params",
|
||||
"reference": "https://github.com/xiaowc-lib/comfyui-dynamic-params",
|
||||
"files": [
|
||||
"https://github.com/xiaowc-lib/comfyui-dynamic-params"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Comfyui custom nodes that support dynamic parameter addition and deletion."
|
||||
},
|
||||
{
|
||||
"author": "avenstack",
|
||||
"title": "ComfyUI-AV-FunASR",
|
||||
@ -214,482 +693,6 @@
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A python port of pixelit by giventofly."
|
||||
},
|
||||
{
|
||||
"author": "s9roll7",
|
||||
"title": "Audio Batch",
|
||||
"reference": "https://github.com/set-soft/ComfyUI-AudioBatch",
|
||||
"files": [
|
||||
"https://github.com/set-soft/ComfyUI-AudioBatch"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Audio batch creation, extraction, resample, mono and stereo conversion."
|
||||
},
|
||||
{
|
||||
"author": "jack-liu",
|
||||
"title": "Pillar_For_ComfyUI",
|
||||
"reference": "https://github.com/aicoder-max/Pillar_For_ComfyUI",
|
||||
"files": [
|
||||
"https://github.com/aicoder-max/Pillar_For_ComfyUI"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Pillar is an extension plugin for ComfyUI, providing the ability to call local distributed services for ComfyUI. Currently, it integrates the llama-joycaption-beta-one-hf-llava model and offers a distributed deployment solution to solve the problem that the model occupies too many resources and affects the image generation efficiency."
|
||||
},
|
||||
{
|
||||
"author": "scraed",
|
||||
"title": "LanPaint",
|
||||
"reference": "https://github.com/scraed/LanPaint",
|
||||
"files": [
|
||||
"https://github.com/scraed/LanPaint"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Achieve seamless inpainting results without needing a specialized inpainting model."
|
||||
},
|
||||
{
|
||||
"author": "xl0",
|
||||
"title": "latent-tools",
|
||||
"reference": "https://github.com/xl0/latent-tools",
|
||||
"files": [
|
||||
"https://github.com/xl0/latent-tools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Visualize and manipulate the latent space in ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "chaunceyyann",
|
||||
"title": "ComfyUI Image Processing Nodes",
|
||||
"reference": "https://github.com/chaunceyyann/comfyui-image-processing-nodes",
|
||||
"files": [
|
||||
"https://github.com/chaunceyyann/comfyui-image-processing-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of custom nodes for ComfyUI focused on image processing operations."
|
||||
},
|
||||
{
|
||||
"author": "r-vage",
|
||||
"title": "ComfyUI-RvTools_v2",
|
||||
"reference": "https://github.com/r-vage/ComfyUI-RvTools_v2",
|
||||
"files": [
|
||||
"https://github.com/r-vage/ComfyUI-RvTools_v2"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "this node contains a lot of small little helpers like switches, passers and selectors that i use a lot to build my workflows."
|
||||
},
|
||||
{
|
||||
"author": "hvppycoding",
|
||||
"title": "RandomSamplerSchedulerSteps for ComfyUI",
|
||||
"reference": "https://github.com/hvppycoding/comfyui-random-sampler-scheduler-steps",
|
||||
"files": [
|
||||
"https://github.com/hvppycoding/comfyui-random-sampler-scheduler-steps"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node that randomly selects a (Sampler, Scheduler, Steps) combination from user-defined presets."
|
||||
},
|
||||
{
|
||||
"author": "o-l-l-i",
|
||||
"title": "Olm Resolution Picker for ComfyUI",
|
||||
"reference": "https://github.com/o-l-l-i/ComfyUI-Olm-Resolution-Picker",
|
||||
"files": [
|
||||
"https://github.com/o-l-l-i/ComfyUI-Olm-Resolution-Picker"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A smart, customizable resolution selector node with live aspect ratio preview, image overlays, and checkerboard support — cleanly parsed from a human-readable text file."
|
||||
},
|
||||
{
|
||||
"author": "synthetai",
|
||||
"title": "ComfyUI-JM-MiniMax-API",
|
||||
"reference": "https://github.com/synthetai/ComfyUI-JM-MiniMax-API",
|
||||
"files": [
|
||||
"https://github.com/synthetai/ComfyUI-JM-MiniMax-API"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of ComfyUI custom nodes that integrate with MiniMax API services."
|
||||
},
|
||||
{
|
||||
"author": "Santodan",
|
||||
"title": "Santodan Random LoRA Node",
|
||||
"reference": "https://github.com/Santodan/santodan-custom-nodes-comfyui",
|
||||
"files": [
|
||||
"https://github.com/Santodan/santodan-custom-nodes-comfyui"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Randomizes selected LoRAs and strengths. Includes trigger word output and support for exclusive/random selection."
|
||||
},
|
||||
{
|
||||
"author": "PenguinTeo",
|
||||
"title": "Comfyui-TextEditor-Penguin",
|
||||
"reference": "https://github.com/PenguinTeo/Comfyui-TextEditor-Penguin",
|
||||
"files": [
|
||||
"https://github.com/PenguinTeo/Comfyui-TextEditor-Penguin"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A text overlay node for ComfyUI that supports rich effects such as gradients, outlines, and shadows. It is suitable for adding highly customizable text content to images."
|
||||
},
|
||||
{
|
||||
"author": "mo230761",
|
||||
"title": "ComfyUI-Text-Translation",
|
||||
"reference": "https://github.com/mo230761/InsertAnything-ComfyUI-official",
|
||||
"files": [
|
||||
"https://github.com/mo230761/InsertAnything-ComfyUI-official"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository provides the official ComfyUI workflow for [a/Insert Anything](https://github.com/song-wensong/insert-anything)."
|
||||
},
|
||||
{
|
||||
"author": "pictorialink",
|
||||
"title": "ComfyUI-Text-Translation",
|
||||
"reference": "https://github.com/pictorialink/ComfyUI-Text-Translation",
|
||||
"files": [
|
||||
"https://github.com/pictorialink/ComfyUI-Text-Translation"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This node uses the Translators library for translation."
|
||||
},
|
||||
{
|
||||
"author": "vovler",
|
||||
"title": "ComfyUI Civitai Helper Extension",
|
||||
"reference": "https://github.com/vovler/comfyui-civitaihelper",
|
||||
"files": [
|
||||
"https://github.com/vovler/comfyui-civitaihelper"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI extension for parsing Civitai PNG workflows and automatically downloading missing models"
|
||||
},
|
||||
{
|
||||
"author": "zccrs",
|
||||
"title": "ComfyUI DCI",
|
||||
"reference": "https://github.com/zccrs/comfyui-dci",
|
||||
"files": [
|
||||
"https://github.com/zccrs/comfyui-dci"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A comprehensive ComfyUI extension for creating, previewing, and analyzing DCI (DSG Combined Icons) format files. This extension fully implements the DCI specification, supporting multi-state icons, multiple color tones, scaling factors, and advanced metadata analysis."
|
||||
},
|
||||
{
|
||||
"author": "s9roll7",
|
||||
"title": "Comfyui CoTracker Node",
|
||||
"reference": "https://github.com/s9roll7/comfyui_cotracker_node",
|
||||
"files": [
|
||||
"https://github.com/s9roll7/comfyui_cotracker_node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a node that outputs tracking results of a grid or specified points using CoTracker. It can be directly connected to the WanVideo ATI Tracks Node."
|
||||
},
|
||||
{
|
||||
"author": "MoonHugo",
|
||||
"title": "ComfyUI-BAGEL-Hugo",
|
||||
"reference": "https://github.com/MoonHugo/ComfyUI-BAGEL-Hugo",
|
||||
"files": [
|
||||
"https://github.com/MoonHugo/ComfyUI-BAGEL-Hugo"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository encapsulates the BAGEL model as ComfyUI nodes for use, including image editing and image inversion features, but it does not include text-to-image functionality."
|
||||
},
|
||||
{
|
||||
"author": "sm079",
|
||||
"title": "ComfyUI-Face-Detection",
|
||||
"reference": "https://github.com/sm079/ComfyUI-Face-Detection",
|
||||
"files": [
|
||||
"https://github.com/sm079/ComfyUI-Face-Detection"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "face detection nodes for comfyui"
|
||||
},
|
||||
{
|
||||
"author": "Aljnk",
|
||||
"title": "ComfyUI-JNK-Tiny-Nodes",
|
||||
"reference": "https://github.com/Aljnk/ComfyUI-JNK-Tiny-Nodes",
|
||||
"files": [
|
||||
"https://github.com/Aljnk/ComfyUI-JNK-Tiny-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of useful custom nodes for ComfyUI - image processing, text manipulation, and workflow automation."
|
||||
},
|
||||
{
|
||||
"author": "sugarkwork",
|
||||
"title": "ComfyUI_AspectRatioToSize",
|
||||
"reference": "https://github.com/sugarkwork/ComfyUI_AspectRatioToSize",
|
||||
"files": [
|
||||
"https://github.com/sugarkwork/ComfyUI_AspectRatioToSize"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node that calculates width and height while maintaining aspect ratio, making it easier to determine image resolutions with specified aspect ratios and longer side values."
|
||||
},
|
||||
{
|
||||
"author": "AEmotionStudio",
|
||||
"title": "ComfyUI-DiscordSend",
|
||||
"reference": "https://github.com/AEmotionStudio/ComfyUI-DiscordSend",
|
||||
"files": [
|
||||
"https://github.com/AEmotionStudio/ComfyUI-DiscordSend"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI extension that enables seamless sharing of AI-generated images and videos directly to Discord."
|
||||
},
|
||||
{
|
||||
"author": "shiertier",
|
||||
"title": "ComfyUI-TeaCache-Lumina",
|
||||
"reference": "https://github.com/shiertier/ComfyUI-TeaCache-lumina2",
|
||||
"files": [
|
||||
"https://github.com/shiertier/ComfyUI-TeaCache-lumina2"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI Node Implementation: TeaCache Acceleration Specifically Designed for the Lumina Model"
|
||||
},
|
||||
{
|
||||
"author": "sjh00",
|
||||
"title": "ComfyUI LoadImageWithInfo",
|
||||
"reference": "https://github.com/sjh00/ComfyUI-LoadImageWithInfo",
|
||||
"files": [
|
||||
"https://github.com/sjh00/ComfyUI-LoadImageWithInfo"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a custom node for ComfyUI that retrieves detailed information about an image, including its name, format (extension), DPI, dimensions, long side, short side, file size, and EXIF data. It also supports image saving "
|
||||
},
|
||||
{
|
||||
"author": "violet0927",
|
||||
"title": "ComfyUI OmniConsistency Nodes",
|
||||
"reference": "https://github.com/lc03lc/Comfyui_OmniConsistency",
|
||||
"files": [
|
||||
"https://github.com/lc03lc/Comfyui_OmniConsistency"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI OmniConsistency Nodes is a collection of nodes for ComfyUI that allows you to load and use OmniConsistency models."
|
||||
},
|
||||
{
|
||||
"author": "ShmuelRonen",
|
||||
"title": "ComfyUI_ChatterBox",
|
||||
"reference": "https://github.com/ShmuelRonen/ComfyUI_ChatterBox",
|
||||
"files": [
|
||||
"https://github.com/ShmuelRonen/ComfyUI_ChatterBox"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "An unofficial ComfyUI custom node integration for [a/Resemble AI's ChatterBox](https://github.com/resemble-ai/chatterbox) - a state-of-the-art open-source Text-to-Speech (TTS) model with voice cloning capabilities."
|
||||
},
|
||||
{
|
||||
"author": "bikiam",
|
||||
"title": "ComfyUI_WhisperSRT",
|
||||
"reference": "https://github.com/bikiam/ComfyUI_WhisperSRT",
|
||||
"files": [
|
||||
"https://github.com/bikiam/ComfyUI_WhisperSRT"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is custom node for audio transcribe with SRT."
|
||||
},
|
||||
{
|
||||
"author": "Chrisvenator",
|
||||
"title": "painting-by-colors-generator",
|
||||
"reference": "https://github.com/Chrisvenator/ComfyUI-Painting-by-colors-generator",
|
||||
"files": [
|
||||
"https://github.com/Chrisvenator/ComfyUI-Painting-by-colors-generator"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Create a painting by colors image from an image"
|
||||
},
|
||||
{
|
||||
"author": "wildminder",
|
||||
"title": "ComfyUI-Optim",
|
||||
"reference": "https://github.com/wildminder/000_ComfyUI-Optim",
|
||||
"files": [
|
||||
"https://github.com/wildminder/000_ComfyUI-Optim"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI startup optimizer and patcher"
|
||||
},
|
||||
{
|
||||
"author": "Chrisvenator",
|
||||
"title": "ComfyUI Image Processing Nodes",
|
||||
"reference": "https://github.com/chaunceyyann/comfyui-image-processing-nodes",
|
||||
"files": [
|
||||
"https://github.com/chaunceyyann/comfyui-image-processing-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of custom nodes for ComfyUI focused on image processing operations."
|
||||
},
|
||||
{
|
||||
"author": "tetsuoo-online",
|
||||
"title": "comfyui-too-xmp-metadata",
|
||||
"reference": "https://github.com/tetsuoo-online/comfyui-too-xmp-metadata",
|
||||
"files": [
|
||||
"https://github.com/tetsuoo-online/comfyui-too-xmp-metadata"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom nodes for ComfyUI that allow you to read and write XMP metadata to images"
|
||||
},
|
||||
{
|
||||
"author": "alessandrozonta",
|
||||
"title": "ComfyUI-PoseDirection",
|
||||
"reference": "https://github.com/alessandrozonta/ComfyUI-PoseDirection",
|
||||
"files": [
|
||||
"https://github.com/alessandrozonta/ComfyUI-PoseDirection"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node for ComfyUI analyzes OpenPose keypoints to determine if a person in an image is facing forward, showing their left side, or their right side."
|
||||
},
|
||||
{
|
||||
"author": "avocadori",
|
||||
"title": "ComfyUI-load-image-prompt-lora",
|
||||
"reference": "https://github.com/avocadori/ComfyUI-load-image-prompt-lora",
|
||||
"files": [
|
||||
"https://github.com/avocadori/ComfyUI-load-image-prompt-lora"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: YAML Image Cycler (Full), YAML Image Cycler (Simple), YAML LoRA Extractor, YAML LoRA Loader, YAML LoRA Selector"
|
||||
},
|
||||
{
|
||||
"author": "vivi-gomez",
|
||||
"title": "ComfyUI Fix Node Translate",
|
||||
"reference": "https://github.com/vivi-gomez/ComfyUI-fixnodetranslate",
|
||||
"files": [
|
||||
"https://github.com/vivi-gomez/ComfyUI-fixnodetranslate"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Addon for ComfyUI that adds 'Fix node (recreate + keep inputs)' context menu option"
|
||||
},
|
||||
{
|
||||
"author": "violet0927",
|
||||
"title": "Hugging Face LoRA Uploader",
|
||||
"reference": "https://github.com/violet0927/ComfyUI-HuggingFaceLoraUploader",
|
||||
"id": "comfyui_huggingfacelorauploader",
|
||||
"files": [
|
||||
"https://github.com/violet0927/ComfyUI-HuggingFaceLoraUploader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node to upload LoRA models to Hugging Face Hub."
|
||||
},
|
||||
{
|
||||
"author": "aimingfail",
|
||||
"title": "ComfyUI-LikeSpiderAI-SaveMP3",
|
||||
"id": "img2halftone",
|
||||
"reference": "https://github.com/Pigidiy/ComfyUI-LikeSpiderAI-SaveMP3",
|
||||
"files": [
|
||||
"https://github.com/Pigidiy/ComfyUI-LikeSpiderAI-SaveMP3"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom ComfyUI node that saves input AUDIO as .mp3 using ffmpeg."
|
||||
},
|
||||
{
|
||||
"author": "thalismind",
|
||||
"title": "ComfyUI Blend Image Nodes",
|
||||
"reference": "https://github.com/thalismind/ComfyUI-Blend-Nodes",
|
||||
"files": [
|
||||
"https://github.com/thalismind/ComfyUI-Blend-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository contains a ComfyUI node for blending images using various blending modes. Can be used to watermark images, create overlays, or apply effects to images in a ComfyUI workflow."
|
||||
},
|
||||
{
|
||||
"author": "boricuapab",
|
||||
"title": "ComfyUI-Bori-JsonSetGetConverter",
|
||||
"reference": "https://github.com/boricuapab/ComfyUI-Bori-JsonSetGetConverter",
|
||||
"files": [
|
||||
"https://github.com/boricuapab/ComfyUI-Bori-JsonSetGetConverter"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a custom node for ComfyUI that takes in a file path full of json's and finds the mape variable nodes in them and converts them to the kjnode set and get nodes."
|
||||
},
|
||||
{
|
||||
"author": "smthemex",
|
||||
"title": "ComfyUI_HunyuanAvatar_Sm",
|
||||
"reference": "https://github.com/smthemex/ComfyUI_HunyuanAvatar_Sm",
|
||||
"files": [
|
||||
"https://github.com/smthemex/ComfyUI_HunyuanAvatar_Sm"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "HunyuanVideo-Avatar: High-Fidelity Audio-Driven Human Animation for Multiple Characters,try it in comfyUI ,if your VRAM >24G."
|
||||
},
|
||||
{
|
||||
"author": "KERRY-YUAN",
|
||||
"title": "ComfyUI_Spark_TTS",
|
||||
"id": "ComfyUI_Spark_TTS",
|
||||
"reference": "https://github.com/KERRY-YUAN/ComfyUI_Spark_TTS",
|
||||
"files": [
|
||||
"https://github.com/KERRY-YUAN/ComfyUI_Spark_TTS"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Spark-TTS controllable synthesis and voice cloning."
|
||||
},
|
||||
{
|
||||
"author": "Yuan-ManX",
|
||||
"title": "ComfyUI-ChatterboxTTS",
|
||||
"reference": "https://github.com/Yuan-ManX/ComfyUI-ChatterboxTTS",
|
||||
"files": [
|
||||
"https://github.com/Yuan-ManX/ComfyUI-ChatterboxTTS"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-ChatterboxTTS is now available in ComfyUI, Chatterbox TTS is the first production-grade open-source TTS model."
|
||||
},
|
||||
{
|
||||
"author": "babydjac",
|
||||
"title": "ComfyUI Grok Prompts",
|
||||
"id": "comfyui-grok-prompts",
|
||||
"reference": "https://github.com/babydjac/comfyui-grok-prompts",
|
||||
"files": [
|
||||
"https://github.com/babydjac/comfyui-grok-prompts"
|
||||
],
|
||||
"description": "Custom ComfyUI nodes for generating prompts using Grok AI, enhancing prompt creation for text-to-image workflows.",
|
||||
"install_type": "git-clone"
|
||||
},
|
||||
{
|
||||
"author": "xhiroga",
|
||||
"title": "ComfyUI-FramePackWrapper_PlusOne",
|
||||
"id": "comfyui-framepackwrapper-plusone",
|
||||
"reference": "https://github.com/xhiroga/ComfyUI-FramePackWrapper_PlusOne",
|
||||
"files": [
|
||||
"https://github.com/xhiroga/ComfyUI-FramePackWrapper_PlusOne"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI custom node for FramePack, supporting 1-frame inferences."
|
||||
},
|
||||
{
|
||||
"author": "p1atdev",
|
||||
"title": "comfyui-timm-backbone",
|
||||
"reference": "https://github.com/p1atdev/comfyui-timm-backbone",
|
||||
"files": [
|
||||
"https://github.com/p1atdev/comfyui-timm-backbone"
|
||||
],
|
||||
"description": "ComfyUI Timm Backbone Nodes is a custom node set that enables you to load and use pre-trained models from the [a/timm](https://github.com/huggingface/pytorch-image-models) library within ComfyUI workflows.",
|
||||
"install_type": "git-clone"
|
||||
},
|
||||
{
|
||||
"author": "Zch6111",
|
||||
"title": "AI_Text_Comfyui",
|
||||
"reference": "https://github.com/Zch6111/AI_Text_Comfyui",
|
||||
"files": [
|
||||
"https://github.com/Zch6111/AI_Text_Comfyui"
|
||||
],
|
||||
"description": "AI_Text_Comfyui is a custom node for ComfyUI that connects to the OpenAI Chat API and automatically generates creative text prompts for AI workflows. This simplified version removes external dependencies like dotenv, requiring the OpenAI key to be set using a system environment variable.",
|
||||
"install_type": "git-clone"
|
||||
},
|
||||
{
|
||||
"author": "XWAVEart",
|
||||
"title": "ComfyUI XWAVE Nodes",
|
||||
"reference": "https://github.com/XWAVEart/comfyui-xwave-xlitch-nodes",
|
||||
"files": [
|
||||
"https://github.com/XWAVEart/comfyui-xwave-xlitch-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of artistic glitch and image manipulation nodes for ComfyUI, featuring advanced noise effects, color manipulations, distortions, and more."
|
||||
},
|
||||
{
|
||||
"author": "wildminder",
|
||||
"title": "ComfyUI-Chatterbox",
|
||||
"reference": "https://github.com/wildminder/ComfyUI-Chatterbox",
|
||||
"files": [
|
||||
"https://github.com/wildminder/ComfyUI-Chatterbox"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI Chatterbox TTS & Voice Conversion Node"
|
||||
},
|
||||
{
|
||||
"author": "LingSss9",
|
||||
"title": "Comfyui-Merge-LoRA",
|
||||
"id": "comfyui-merge",
|
||||
"reference": "https://github.com/LingSss9/comfyui-merge",
|
||||
"files": [
|
||||
"https://github.com/LingSss9/comfyui-merge"
|
||||
],
|
||||
"description": "Merge up to 4 LoRA models with balanced, order-independent logic. Inspired by WebUI SuperMerger.",
|
||||
"install_type": "git-clone"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user