diff --git a/pyproject.toml b/pyproject.toml index d6b83f0..fc4550a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "comfyui-akatz-nodes" description = "Simple custom node pack for nodes I use in my workflows. Includes Dilate Mask Linear for animating masks." -version = "1.8.2" +version = "1.8.3" license = {file = "LICENSE"} dependencies = ["numpy", "torch", "opencv-python", "pydub"] diff --git a/src/ak_audioreactive_dilation_mask.py b/src/ak_audioreactive_dilation_mask.py index 06a3280..d23dbe3 100644 --- a/src/ak_audioreactive_dilation_mask.py +++ b/src/ak_audioreactive_dilation_mask.py @@ -26,7 +26,9 @@ def INPUT_TYPES(s): "max_radius": ("INT", { "default": 25 }), - "min_radius": ("INT",), + "min_radius": ("INT", { + "default": 0 + }), "threshold": ("FLOAT", { "default": 0.5 }), diff --git a/src/ak_video_speed_adjust.py b/src/ak_video_speed_adjust.py index 3c7d5a9..ab9facc 100644 --- a/src/ak_video_speed_adjust.py +++ b/src/ak_video_speed_adjust.py @@ -9,7 +9,7 @@ def INPUT_TYPES(s): return { "required": { "image_batch": ("IMAGE",), - "speed_schedule": ("FLOAT",), + "speed_schedule": ("FLOAT", {"forceInput": True}), "fps": ("INT", {"default": 30, "min": 1}), }, }