diff --git a/comfy_extras/nodes_audio.py b/comfy_extras/nodes_audio.py index e40a9893f..3462ecef9 100644 --- a/comfy_extras/nodes_audio.py +++ b/comfy_extras/nodes_audio.py @@ -23,7 +23,6 @@ class EmptyLatentAudio(IO.ComfyNode): IO.Float.Input("seconds", default=47.6, min=1.0, max=1000.0, step=0.1), IO.Int.Input( "batch_size", default=1, min=1, max=4096, tooltip="The number of latent images in the batch.", - advanced=True, ), ], outputs=[IO.Latent.Output()], diff --git a/comfy_extras/nodes_hunyuan.py b/comfy_extras/nodes_hunyuan.py index c3155a043..4ea93a499 100644 --- a/comfy_extras/nodes_hunyuan.py +++ b/comfy_extras/nodes_hunyuan.py @@ -46,7 +46,7 @@ class EmptyHunyuanLatentVideo(io.ComfyNode): io.Int.Input("width", default=848, min=16, max=nodes.MAX_RESOLUTION, step=16), io.Int.Input("height", default=480, min=16, max=nodes.MAX_RESOLUTION, step=16), io.Int.Input("length", default=25, min=1, max=nodes.MAX_RESOLUTION, step=4), - io.Int.Input("batch_size", default=1, min=1, max=4096, advanced=True), + io.Int.Input("batch_size", default=1, min=1, max=4096), ], outputs=[ io.Latent.Output(), @@ -89,7 +89,7 @@ class HunyuanVideo15ImageToVideo(io.ComfyNode): io.Int.Input("width", default=848, min=16, max=nodes.MAX_RESOLUTION, step=16), io.Int.Input("height", default=480, min=16, max=nodes.MAX_RESOLUTION, step=16), io.Int.Input("length", default=33, min=1, max=nodes.MAX_RESOLUTION, step=4), - io.Int.Input("batch_size", default=1, min=1, max=4096, advanced=True), + io.Int.Input("batch_size", default=1, min=1, max=4096), io.Image.Input("start_image", optional=True), io.ClipVisionOutput.Input("clip_vision_output", optional=True), ], @@ -313,7 +313,7 @@ class HunyuanImageToVideo(io.ComfyNode): io.Int.Input("width", default=848, min=16, max=nodes.MAX_RESOLUTION, step=16), io.Int.Input("height", default=480, min=16, max=nodes.MAX_RESOLUTION, step=16), io.Int.Input("length", default=53, min=1, max=nodes.MAX_RESOLUTION, step=4), - io.Int.Input("batch_size", default=1, min=1, max=4096, advanced=True), + io.Int.Input("batch_size", default=1, min=1, max=4096), io.Combo.Input("guidance_type", options=["v1 (concat)", "v2 (replace)", "custom"], advanced=True), io.Image.Input("start_image", optional=True), ], @@ -361,7 +361,7 @@ class EmptyHunyuanImageLatent(io.ComfyNode): inputs=[ io.Int.Input("width", default=2048, min=64, max=nodes.MAX_RESOLUTION, step=32), io.Int.Input("height", default=2048, min=64, max=nodes.MAX_RESOLUTION, step=32), - io.Int.Input("batch_size", default=1, min=1, max=4096, advanced=True), + io.Int.Input("batch_size", default=1, min=1, max=4096), ], outputs=[ io.Latent.Output(), diff --git a/comfy_extras/nodes_webcam.py b/comfy_extras/nodes_webcam.py index cab05a81e..6349ac017 100644 --- a/comfy_extras/nodes_webcam.py +++ b/comfy_extras/nodes_webcam.py @@ -11,8 +11,8 @@ class WebcamCapture(nodes.LoadImage): return { "required": { "image": ("WEBCAM", {}), - "width": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 1, "advanced": True}), - "height": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 1, "advanced": True}), + "width": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 1}), + "height": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 1}), "capture_on_queue": ("BOOLEAN", {"default": True}), } }