FizzleDorf / ComfyUI_FizzNodes

Custom Nodes for Comfyui
MIT License
375 stars 58 forks source link

Question: Is the "Simple Animation Workflow" in the README still working? #112

Open akechend opened 4 days ago

akechend commented 4 days ago

Thank you very much for providing such a great ComfyUI node with executable examples.

However, when I tried to execute the "Simple Animation Workflow" workflow in the README, I found that I couldn't reproduce the effects as shown in the examples. What could be the issue?

By the way, the only change I made to the workflow was setting the batch count to 72. Below are screenshots of my execution results. In each image, the character's movements from one frame to another are very exaggerated, not as smooth as the animation in the gif provided in the README document. Moreover, I didn't observe any eye closing actions in the sequence of images.

image

FizzleDorf commented 4 days ago

By the way, the only change I made to the workflow was setting the batch count to 72.

This is the issue. the seed needs to be fixed separately from the sampler because batches will always randomize the seed of the next latet. Luckily, the fix is in base comfy. simple link the node below before the ksampler node.

image

FizzleDorf commented 4 days ago

I forgot to mention. The Batch Prompt Scheduler is needed to observe the changes in the prompt when using batches as the current frame primitive is used by the single image method in the example. Since the current frame can't change until the next queue it will be the same image across the batch. The Batch Prompt Schedule will apply the conditioning properly to every latent in the batch. This plus the reply I made earlier will fix your issues.

akechend commented 4 days ago

Thank you so much. Now it works like magic!