You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/deforum_helpers/args.py
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -967,16 +967,23 @@ def LoopArgs():
967
967
defParseqArgs():
968
968
return {
969
969
"parseq_manifest": {
970
-
"label": "Parseq Manifest (JSON or URL)",
970
+
"label": "Parseq manifest (JSON or URL)",
971
971
"type": "textbox",
972
972
"lines": 4,
973
973
"value": None,
974
974
},
975
975
"parseq_use_deltas": {
976
-
"label": "Use delta values for movement parameters",
976
+
"label": "Use delta values for movement parameters (recommended)",
977
977
"type": "checkbox",
978
978
"value": True,
979
-
}
979
+
"info": "Recommended. If you uncheck this, Parseq keyframe values as are treated as relative movement values instead of absolute."
980
+
},
981
+
"parseq_non_schedule_overrides": {
982
+
"label": "Use FPS, max_frames and cadence from the Parseq manifest, if present (recommended)",
983
+
"type": "checkbox",
984
+
"value": True,
985
+
"info": "Recommended. If you uncheck this, the FPS, max_frames and cadence in the Parseq doc are ignored, and the values in the A1111 UI are used instead."
expected_defined_frames=self.max_frame+1# frames are 0-indexed
56
-
if (expected_defined_frames!=count_defined_frames):
57
-
logging.warning(f"There may be duplicated or missing frame data in the Parseq input: expected {expected_defined_frames} frames including frame 0 because the highest frame number is {self.max_frame}, but there are {count_defined_frames} frames defined.")
73
+
max_frame=self.get_max('frame')
74
+
expected_frame_count=max_frame+1
75
+
if (self.frame_count!=expected_frame_count):
76
+
logging.warning(f"There may be duplicated or missing frame data in the Parseq input: expected {expected_frame_count} frames including frame 0 because the highest frame number is {max_frame}, but there are {self.frame_count} frames defined.")
0 commit comments