Spaces:
Running
on
Zero
Running
on
Zero
IceClear
commited on
Commit
·
161fcf3
1
Parent(s):
bfeb62a
add default value
Browse files
app.py
CHANGED
@@ -412,8 +412,8 @@ with gr.Blocks(title="SeedVR2: One-Step Video Restoration via Diffusion Adversar
|
|
412 |
# Interface
|
413 |
with gr.Row():
|
414 |
input_video = gr.Video(label="Upload a video")
|
415 |
-
seed = gr.Number(label="Seeds")
|
416 |
-
fps = gr.Number(label="fps")
|
417 |
|
418 |
with gr.Row():
|
419 |
output_video = gr.Video(label="Output")
|
|
|
412 |
# Interface
|
413 |
with gr.Row():
|
414 |
input_video = gr.Video(label="Upload a video")
|
415 |
+
seed = gr.Number(label="Seeds", value=666)
|
416 |
+
fps = gr.Number(label="fps", value=24)
|
417 |
|
418 |
with gr.Row():
|
419 |
output_video = gr.Video(label="Output")
|