Compare commits

...

5 Commits

Author SHA1 Message Date
Ethanfel b4c1cb2955 chore: bump version to 1.0.6
Publish to ComfyUI Registry / publish (push) Has been cancelled
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-10 22:17:21 +02:00
Ethanfel 2e3c357e5a 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 <noreply@anthropic.com>
2026-04-10 22:12:04 +02:00
Ethanfel aa986fd534 fix: set transformers>=5.3.0 as required by omnivoice
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-10 12:14:13 +02:00
Ethanfel 3fee610050 fix: bump transformers minimum to >=4.57.0
Confirmed working version. Previous >=4.40.0 was too permissive and
older versions may lack APIs that omnivoice depends on.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-10 12:13:19 +02:00
Ethanfel d4638aa785 chore: bump version to 1.0.5
Publish to ComfyUI Registry / publish (push) Has been cancelled
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-10 12:08:44 +02:00
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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,
+1 -1
View File
@@ -1,7 +1,7 @@
[project]
name = "comfyui-omnivoice-fel"
description = "ComfyUI nodes for OmniVoice — multilingual zero-shot TTS with voice cloning, voice design, EPUB loading, and voice mixing."
version = "1.0.4"
version = "1.0.6"
license = { text = "GPL-3.0-only" }
dependencies = []
+1 -1
View File
@@ -1,4 +1,4 @@
transformers>=4.40.0
transformers>=5.3.0
accelerate
soundfile
numpy