increase frame limit to 120 and allow loading tae ltx

This commit is contained in:
Concedo
2026-05-29 18:50:01 +08:00
parent 8ddb4fedb1
commit 272c1ee232
3 changed files with 22 additions and 2 deletions
+1 -1
View File
@@ -2806,7 +2806,7 @@ def sd_generate(genparams):
if flow_shift is not None and flow_shift < 0:
flow_shift = None # fall back to the default
sample_steps = (1 if sample_steps < 1 else (forced_steplimit if sample_steps > forced_steplimit else sample_steps))
vid_req_frames = (1 if vid_req_frames < 1 else (100 if vid_req_frames > 100 else vid_req_frames))
vid_req_frames = (1 if vid_req_frames < 1 else (120 if vid_req_frames > 120 else vid_req_frames))
swap_refimg = (True if tryparseint(genparams.get("send_as_refimg", 0),0) else False)
if len(extra_images_arr)==0 and swap_refimg and init_images and init_images!="" and not mask: