dagloop5 commited on
Commit
86269a5
·
verified ·
1 Parent(s): ab1ad4a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -880,7 +880,10 @@ def generate(
880
  f"**duration**, drop the **steps**, or pick a smaller **target dimension** — the denoise loop is "
881
  f"quadratic in the canvas."
882
  )
883
- path, denoise_seconds, post_seconds, gpu_seconds, out_frames, fps, multiplier = _generate(*call)
 
 
 
884
 
885
  post = [f"RCAS {float(sharpen):.2f}" if float(sharpen) > 0 else "no sharpening"]
886
  post.append(f"FILM {multiplier}x -> {fps} fps" if multiplier > 1 else f"{fps} fps")
 
880
  f"**duration**, drop the **steps**, or pick a smaller **target dimension** — the denoise loop is "
881
  f"quadratic in the canvas."
882
  )
883
+ (
884
+ path, denoise_seconds, post_seconds, gpu_seconds, out_frames, fps, multiplier,
885
+ stage_video_latents, stage_audio_latents,
886
+ ) = _generate(*call)
887
 
888
  post = [f"RCAS {float(sharpen):.2f}" if float(sharpen) > 0 else "no sharpening"]
889
  post.append(f"FILM {multiplier}x -> {fps} fps" if multiplier > 1 else f"{fps} fps")