Spaces:
Running on Zero
Running on Zero
Update app.py
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
|
| 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")
|