some tiny tiny tiny fixes

This commit is contained in:
deepbeepmeep 2025-08-04 03:04:49 +02:00
parent d2a9d5483d
commit 9c2e892fc9

5
wgp.py
View File

@ -4073,6 +4073,9 @@ def edit_video(
os.remove(tmp_path) os.remove(tmp_path)
if any_change: if any_change:
if mode == "edit_remux":
print(f"Remuxed Video saved to Path: "+ new_video_path)
else:
print(f"Postprocessed video saved to Path: "+ new_video_path) print(f"Postprocessed video saved to Path: "+ new_video_path)
with lock: with lock:
file_list.append(new_video_path) file_list.append(new_video_path)
@ -7584,7 +7587,7 @@ def generate_video_tab(update_form = False, state_dict = None, ui_defaults = Non
label="Generate more frames to preserve Reference Image Identity" label="Generate more frames to preserve Reference Image Identity"
) )
with gr.Tab("Sliding Window", visible= sliding_window_enabled) as sliding_window_tab: with gr.Tab("Sliding Window", visible= sliding_window_enabled and not image_outputs) as sliding_window_tab:
with gr.Column(): with gr.Column():
gr.Markdown("<B>A Sliding Window allows you to generate video with a duration not limited by the Model</B>") gr.Markdown("<B>A Sliding Window allows you to generate video with a duration not limited by the Model</B>")