Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -212,6 +212,9 @@ with gr.Blocks(css='style.css') as demo:
|
|
| 212 |
loading_icon = gr.HTML(loading_icon_html)
|
| 213 |
share_button = gr.Button("Share to community", elem_id="share-btn")
|
| 214 |
|
|
|
|
|
|
|
|
|
|
| 215 |
ex = gr.Examples(
|
| 216 |
[
|
| 217 |
["Make it a marble sculpture", "./examples/pexels-jill-burrow-7665249_512x512.mp4", 422112651, 4],
|
|
@@ -225,9 +228,6 @@ with gr.Blocks(css='style.css') as demo:
|
|
| 225 |
|
| 226 |
gr.HTML(article)
|
| 227 |
|
| 228 |
-
inputs = [prompt,video_inp,seed_inp, trim_in]
|
| 229 |
-
outputs = [video_out, share_group]
|
| 230 |
-
|
| 231 |
submit_btn.click(infer, inputs, outputs)
|
| 232 |
share_button.click(None, [], [], _js=share_js)
|
| 233 |
|
|
|
|
| 212 |
loading_icon = gr.HTML(loading_icon_html)
|
| 213 |
share_button = gr.Button("Share to community", elem_id="share-btn")
|
| 214 |
|
| 215 |
+
inputs = [prompt,video_inp,seed_inp, trim_in]
|
| 216 |
+
outputs = [video_out, share_group]
|
| 217 |
+
|
| 218 |
ex = gr.Examples(
|
| 219 |
[
|
| 220 |
["Make it a marble sculpture", "./examples/pexels-jill-burrow-7665249_512x512.mp4", 422112651, 4],
|
|
|
|
| 228 |
|
| 229 |
gr.HTML(article)
|
| 230 |
|
|
|
|
|
|
|
|
|
|
| 231 |
submit_btn.click(infer, inputs, outputs)
|
| 232 |
share_button.click(None, [], [], _js=share_js)
|
| 233 |
|