Spaces:
No application file
No application file
res fix
Browse files- gradio_ui.py +3 -3
gradio_ui.py
CHANGED
@@ -368,8 +368,8 @@ if __name__ == "__main__":
|
|
368 |
with gr.Row():
|
369 |
duration_compute = gr.Slider(10, 25, bf.t_compute_max_allowed, step=1, label='waiting time', interactive=True)
|
370 |
duration_video = gr.Slider(1, 100, bf.duration_video, step=0.1, label='video duration', interactive=True)
|
371 |
-
height = gr.Slider(256,
|
372 |
-
width = gr.Slider(256,
|
373 |
|
374 |
with gr.Accordion("Advanced Settings (click to expand)", open=False):
|
375 |
|
@@ -425,7 +425,7 @@ if __name__ == "__main__":
|
|
425 |
"""
|
426 |
# Parameters
|
427 |
## Main
|
428 |
-
-
|
429 |
- video duration: seconds per segment
|
430 |
- height/width: in pixels
|
431 |
|
|
|
368 |
with gr.Row():
|
369 |
duration_compute = gr.Slider(10, 25, bf.t_compute_max_allowed, step=1, label='waiting time', interactive=True)
|
370 |
duration_video = gr.Slider(1, 100, bf.duration_video, step=0.1, label='video duration', interactive=True)
|
371 |
+
height = gr.Slider(256, 1024, bf.height, step=128, label='height', interactive=True)
|
372 |
+
width = gr.Slider(256, 1024, bf.width, step=128, label='width', interactive=True)
|
373 |
|
374 |
with gr.Accordion("Advanced Settings (click to expand)", open=False):
|
375 |
|
|
|
425 |
"""
|
426 |
# Parameters
|
427 |
## Main
|
428 |
+
- waiting time: set your waiting time for the transition. high values = better quality
|
429 |
- video duration: seconds per segment
|
430 |
- height/width: in pixels
|
431 |
|