Spaces:
Running
on
L4
Running
on
L4
Update app.py
Browse files
app.py
CHANGED
@@ -195,16 +195,16 @@ with gr.Blocks(css='style.css') as demo:
|
|
195 |
inputs = [prompt,video_inp,seed_inp, trim_in]
|
196 |
outputs = [video_out]
|
197 |
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
# outputs=outputs,
|
205 |
# fn=infer,
|
206 |
# cache_examples=True,
|
207 |
-
|
208 |
|
209 |
gr.HTML(article)
|
210 |
|
|
|
195 |
inputs = [prompt,video_inp,seed_inp, trim_in]
|
196 |
outputs = [video_out]
|
197 |
|
198 |
+
ex = gr.Examples(
|
199 |
+
[
|
200 |
+
["Make it a marble sculpture", "./examples/pexels-jill-burrow-7665249_512x512.mp4", 422112651, 4],
|
201 |
+
["Make it molten lava", "./examples/Ocean_Pexels_ 8953474_512x512.mp4", 43571876, 4]
|
202 |
+
],
|
203 |
+
inputs=inputs,
|
204 |
# outputs=outputs,
|
205 |
# fn=infer,
|
206 |
# cache_examples=True,
|
207 |
+
)
|
208 |
|
209 |
gr.HTML(article)
|
210 |
|