Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -1059,6 +1059,20 @@ with gr.Blocks(css=css) as demo:
|
|
| 1059 |
)
|
| 1060 |
duration = gr.Slider(5, 30, 10, step=1, label="Duration(s)")
|
| 1061 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1062 |
with gr.Column(elem_id="step-column"):
|
| 1063 |
gr.HTML("""
|
| 1064 |
<div>
|
|
|
|
| 1059 |
)
|
| 1060 |
duration = gr.Slider(5, 30, 10, step=1, label="Duration(s)")
|
| 1061 |
|
| 1062 |
+
uncached_examples = gr.Examples(
|
| 1063 |
+
examples=[
|
| 1064 |
+
|
| 1065 |
+
[
|
| 1066 |
+
"assets/sofia-esp.mp4",
|
| 1067 |
+
],
|
| 1068 |
+
|
| 1069 |
+
[
|
| 1070 |
+
"assets/alba-port.mp4",
|
| 1071 |
+
],
|
| 1072 |
+
],
|
| 1073 |
+
inputs=video_input,
|
| 1074 |
+
)
|
| 1075 |
+
|
| 1076 |
with gr.Column(elem_id="step-column"):
|
| 1077 |
gr.HTML("""
|
| 1078 |
<div>
|