Skip to content

Commit 3b804e2

Browse files
author
thorsten
committed
Update default parameters for Moonvalley video nodes
- Changed default negative prompts to a more extensive list for both BaseMoonvalleyVideoNode and MoonvalleyVideo2VideoNode. - Updated default guidance scale values for both nodes to enhance prompt adherence. - Set a fixed default seed value for consistency in video generation.
1 parent 9126c0c commit 3b804e2

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

comfy_api_nodes/nodes_moonvalley.py

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def INPUT_TYPES(cls):
424424
MoonvalleyTextToVideoInferenceParams,
425425
"negative_prompt",
426426
multiline=True,
427-
default="low-poly, flat shader, bad rigging, stiff animation, uncanny eyes, low-quality textures, looping glitch, cheap effect, overbloom, bloom spam, default lighting, game asset, stiff face, ugly specular, AI artifacts",
427+
default="<synthetic> <scene cut> gopro, bright, contrast, static, overexposed, bright, vignette, artifacts, still, noise, texture, scanlines, videogame, 360 camera, VR, transition, flare, saturation, distorted, warped, wide angle, contrast, saturated, vibrant, glowing, cross dissolve, texture, videogame, saturation, cheesy, ugly hands, mutated hands, mutant, disfigured, extra fingers, blown out, horrible, blurry, worst quality, bad, transition, dissolve, cross-dissolve, melt, fade in, fade out, wobbly, weird, low quality, plastic, stock footage, video camera, boring, static",
428428
),
429429
"resolution": (
430430
IO.COMBO,
@@ -441,12 +441,11 @@ def INPUT_TYPES(cls):
441441
"tooltip": "Resolution of the output video",
442442
},
443443
),
444-
# "length": (IO.COMBO,{"options":['5s','10s'], "default": '5s'}),
445444
"prompt_adherence": model_field_to_node_input(
446445
IO.FLOAT,
447446
MoonvalleyTextToVideoInferenceParams,
448447
"guidance_scale",
449-
default=7.0,
448+
default=13.0,
450449
step=1,
451450
min=1,
452451
max=20,
@@ -455,13 +454,12 @@ def INPUT_TYPES(cls):
455454
IO.INT,
456455
MoonvalleyTextToVideoInferenceParams,
457456
"seed",
458-
default=random.randint(0, 2**32 - 1),
457+
default=9,
459458
min=0,
460459
max=4294967295,
461460
step=1,
462461
display="number",
463462
tooltip="Random seed value",
464-
control_after_generate=True,
465463
),
466464
"steps": model_field_to_node_input(
467465
IO.INT,
@@ -578,9 +576,18 @@ def INPUT_TYPES(cls):
578576
MoonvalleyVideoToVideoInferenceParams,
579577
"negative_prompt",
580578
multiline=True,
581-
default="low-poly, flat shader, bad rigging, stiff animation, uncanny eyes, low-quality textures, looping glitch, cheap effect, overbloom, bloom spam, default lighting, game asset, stiff face, ugly specular, AI artifacts"
579+
default="<synthetic> <scene cut> gopro, bright, contrast, static, overexposed, bright, vignette, artifacts, still, noise, texture, scanlines, videogame, 360 camera, VR, transition, flare, saturation, distorted, warped, wide angle, contrast, saturated, vibrant, glowing, cross dissolve, texture, videogame, saturation, cheesy, ugly hands, mutated hands, mutant, disfigured, extra fingers, blown out, horrible, blurry, worst quality, bad, transition, dissolve, cross-dissolve, melt, fade in, fade out, wobbly, weird, low quality, plastic, stock footage, video camera, boring, static"
580+
),
581+
"seed": model_field_to_node_input(IO.INT,MoonvalleyVideoToVideoInferenceParams, "seed", default=9, min=0, max=4294967295, step=1, display="number", tooltip="Random seed value", control_after_generate=False),
582+
"prompt_adherence": model_field_to_node_input(
583+
IO.FLOAT,
584+
MoonvalleyVideoToVideoInferenceParams,
585+
"guidance_scale",
586+
default=10.0,
587+
step=1,
588+
min=1,
589+
max=20,
582590
),
583-
"seed": model_field_to_node_input(IO.INT,MoonvalleyVideoToVideoInferenceParams, "seed", default=random.randint(0, 2**32 - 1), min=0, max=4294967295, step=1, display="number", tooltip="Random seed value", control_after_generate=True),
584591
},
585592
"hidden": {
586593
"auth_token": "AUTH_TOKEN_COMFY_ORG",

0 commit comments

Comments
 (0)