From 2e3c357e5adb68f49d51fba4f42843470743f22b Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Fri, 10 Apr 2026 22:12:04 +0200 Subject: [PATCH] fix: raise speed minimum from 0.1 to 0.3 to prevent VRAM explosion Speed values below 0.3 produce noise, and 0.1 generates 10x the normal audio length which can consume 20+ GB VRAM and freeze the system. Co-Authored-By: Claude Opus 4.6 --- nodes/generator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodes/generator.py b/nodes/generator.py index 955098d..41be1dc 100644 --- a/nodes/generator.py +++ b/nodes/generator.py @@ -116,8 +116,8 @@ class OmniVoiceGenerate: ), }), "speed": ("FLOAT", { - "default": 1.0, "min": 0.1, "max": 3.0, "step": 0.1, - "tooltip": "Playback speed multiplier. 1.0 = normal, >1.0 = faster, <1.0 = slower.", + "default": 1.0, "min": 0.3, "max": 3.0, "step": 0.1, + "tooltip": "Playback speed multiplier. 1.0 = normal, >1.0 = faster, <1.0 = slower. Below 0.3 produces noise and extreme VRAM usage.", }), "num_step": ("INT", { "default": 32, "min": 1, "max": 100,