Spaces:
Runtime error
Runtime error
maybe fixed to make them minimal?
Browse files
app.py
CHANGED
@@ -114,7 +114,7 @@ with gr.Blocks(title="Picklebot") as demo:
|
|
114 |
random_button.click(fn=generate_random_pitch,outputs=[inp],show_progress="minimal")
|
115 |
inp.play(fn=call_pitch,inputs=inp,outputs=[pb_out,ump_out],show_progress="minimal")
|
116 |
gr.ClearButton([inp,pb_out,ump_out])
|
117 |
-
gr.Examples(demo_files,inputs=inp,outputs=[inp])
|
118 |
with gr.Tab("Use Your Own Video!"):
|
119 |
with gr.Row():
|
120 |
gr.Markdown(value=
|
@@ -137,7 +137,7 @@ with gr.Blocks(title="Picklebot") as demo:
|
|
137 |
submit_button = gr.Button("Go!")
|
138 |
submit_button.click(fn=download_pitch,inputs=input_txt,outputs=vid_inp,show_progress="minimal")
|
139 |
pb_out = gr.Label(label="Picklebot's Call")
|
140 |
-
vid_inp.play(fn=call_pitch,inputs=vid_inp,outputs=pb_out)
|
141 |
gr.ClearButton([vid_inp,pb_out,input_txt])
|
142 |
|
143 |
with gr.Tab("About"):
|
|
|
114 |
random_button.click(fn=generate_random_pitch,outputs=[inp],show_progress="minimal")
|
115 |
inp.play(fn=call_pitch,inputs=inp,outputs=[pb_out,ump_out],show_progress="minimal")
|
116 |
gr.ClearButton([inp,pb_out,ump_out])
|
117 |
+
gr.Examples(demo_files,inputs=inp,outputs=[inp],show_progress="minimal")
|
118 |
with gr.Tab("Use Your Own Video!"):
|
119 |
with gr.Row():
|
120 |
gr.Markdown(value=
|
|
|
137 |
submit_button = gr.Button("Go!")
|
138 |
submit_button.click(fn=download_pitch,inputs=input_txt,outputs=vid_inp,show_progress="minimal")
|
139 |
pb_out = gr.Label(label="Picklebot's Call")
|
140 |
+
vid_inp.play(fn=call_pitch,inputs=vid_inp,outputs=pb_out,show_progress="minimal")
|
141 |
gr.ClearButton([vid_inp,pb_out,input_txt])
|
142 |
|
143 |
with gr.Tab("About"):
|