freealise commited on
Commit
fed911d
1 Parent(s): abf38dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -623,7 +623,7 @@ with gr.Blocks(css=css) as demo:
623
  # Process the video and get the path of the output video
624
  output_video_path = make_video(uploaded_video,encoder=model_type)
625
 
626
- return output_video_path + ([locations])
627
 
628
  submit.click(on_submit, inputs=[input_video, model_type, coords], outputs=[processed_video, processed_zip, output_frame, output_depth, coords])
629
  render.click(partial(get_mesh), inputs=[output_frame, output_depth, blur_in, load_all], outputs=[result])
 
623
  # Process the video and get the path of the output video
624
  output_video_path = make_video(uploaded_video,encoder=model_type)
625
 
626
+ return output_video_path + (locations,)
627
 
628
  submit.click(on_submit, inputs=[input_video, model_type, coords], outputs=[processed_video, processed_zip, output_frame, output_depth, coords])
629
  render.click(partial(get_mesh), inputs=[output_frame, output_depth, blur_in, load_all], outputs=[result])