Skip to content

Commit

Permalink
Merge pull request #27 from akatz-ai/alex-dev
Browse files Browse the repository at this point in the history
Updated video speed adjust and audioreactive dilate mask nodes to fix…
  • Loading branch information
akatz-ai authored Nov 6, 2024
2 parents 241a170 + 91e91f3 commit 6ef5c33
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]

Expand Down
4 changes: 3 additions & 1 deletion src/ak_audioreactive_dilation_mask.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
}),
Expand Down
2 changes: 1 addition & 1 deletion src/ak_video_speed_adjust.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}),
},
}
Expand Down

0 comments on commit 6ef5c33

Please sign in to comment.