Merge branch 'master' into format-blueprint

This commit is contained in:
guill 2026-04-06 20:30:06 -07:00 committed by GitHub
commit ea71c97e3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,7 +80,7 @@ class EmptyAceStepLatentAudio(io.ComfyNode):
@classmethod @classmethod
def execute(cls, seconds, batch_size) -> io.NodeOutput: def execute(cls, seconds, batch_size) -> io.NodeOutput:
length = int(seconds * 44100 / 512 / 8) length = int(seconds * 44100 / 512 / 8)
latent = torch.zeros([batch_size, 8, 16, length], device=comfy.model_management.intermediate_device()) latent = torch.zeros([batch_size, 8, 16, length], device=comfy.model_management.intermediate_device(), dtype=comfy.model_management.intermediate_dtype())
return io.NodeOutput({"samples": latent, "type": "audio"}) return io.NodeOutput({"samples": latent, "type": "audio"})
@ -103,7 +103,7 @@ class EmptyAceStep15LatentAudio(io.ComfyNode):
@classmethod @classmethod
def execute(cls, seconds, batch_size) -> io.NodeOutput: def execute(cls, seconds, batch_size) -> io.NodeOutput:
length = round((seconds * 48000 / 1920)) length = round((seconds * 48000 / 1920))
latent = torch.zeros([batch_size, 64, length], device=comfy.model_management.intermediate_device()) latent = torch.zeros([batch_size, 64, length], device=comfy.model_management.intermediate_device(), dtype=comfy.model_management.intermediate_dtype())
return io.NodeOutput({"samples": latent, "type": "audio"}) return io.NodeOutput({"samples": latent, "type": "audio"})
class ReferenceAudio(io.ComfyNode): class ReferenceAudio(io.ComfyNode):