Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -138,6 +138,7 @@ def dl(inp):
|
|
138 |
return out,out,out,out,fps
|
139 |
def dl_json(inp):
|
140 |
out_json={}
|
|
|
141 |
try:
|
142 |
inp_out=inp.replace("https://","")
|
143 |
inp_out=inp_out.replace("/","_").replace(".","_")
|
@@ -235,7 +236,7 @@ with gr.Blocks() as app:
|
|
235 |
with gr.Tab("Frames"):
|
236 |
with gr.Row():
|
237 |
frame_btn = gr.Button("Get Frames")
|
238 |
-
frame_stat=gr.Textbox("Status")
|
239 |
|
240 |
with gr.Row():
|
241 |
with gr.Column():
|
@@ -246,7 +247,7 @@ with gr.Blocks() as app:
|
|
246 |
with gr.Tab("GIF"):
|
247 |
with gr.Row():
|
248 |
gif_btn = gr.Button("Make GIF")
|
249 |
-
gif_stat=gr.Textbox("Status")
|
250 |
|
251 |
with gr.Row():
|
252 |
with gr.Column():
|
@@ -266,8 +267,8 @@ with gr.Blocks() as app:
|
|
266 |
rem_bg_vid=gr.Video()
|
267 |
with gr.Tab("Info"):
|
268 |
with gr.Row():
|
269 |
-
info_btn = gr.Button("
|
270 |
-
info_stat=gr.Textbox("Status")
|
271 |
info_json = gr.JSON()
|
272 |
with gr.Row(visible=False):
|
273 |
text_input=gr.Textbox()
|
|
|
138 |
return out,out,out,out,fps
|
139 |
def dl_json(inp):
|
140 |
out_json={}
|
141 |
+
out_file=[]
|
142 |
try:
|
143 |
inp_out=inp.replace("https://","")
|
144 |
inp_out=inp_out.replace("/","_").replace(".","_")
|
|
|
236 |
with gr.Tab("Frames"):
|
237 |
with gr.Row():
|
238 |
frame_btn = gr.Button("Get Frames")
|
239 |
+
frame_stat=gr.Textbox(label="Status")
|
240 |
|
241 |
with gr.Row():
|
242 |
with gr.Column():
|
|
|
247 |
with gr.Tab("GIF"):
|
248 |
with gr.Row():
|
249 |
gif_btn = gr.Button("Make GIF")
|
250 |
+
gif_stat=gr.Textbox(label="Status")
|
251 |
|
252 |
with gr.Row():
|
253 |
with gr.Column():
|
|
|
267 |
rem_bg_vid=gr.Video()
|
268 |
with gr.Tab("Info"):
|
269 |
with gr.Row():
|
270 |
+
info_btn = gr.Button("Load")
|
271 |
+
info_stat=gr.Textbox(label="Status")
|
272 |
info_json = gr.JSON()
|
273 |
with gr.Row(visible=False):
|
274 |
text_input=gr.Textbox()
|