ironjr commited on
Commit
3ea759a
·
1 Parent(s): 6a43180

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -98,9 +98,9 @@ with gr.Blocks(css=css) as demo:
98
 
99
  with gr.Row():
100
 
101
- result_gallery = gr.Video(label='RGB Video', show_label=True)
102
 
103
- result_depth = gr.Video(label='Depth Video', show_label=True)
104
 
105
  result_ply_file = gr.File(label='Gaussian splatting PLY', show_label=True)
106
 
@@ -308,4 +308,4 @@ with gr.Blocks(css=css) as demo:
308
 
309
 
310
  if __name__ == '__main__':
311
- demo.queue(max_size=20).launch()
 
98
 
99
  with gr.Row():
100
 
101
+ result_gallery = gr.Video(label='RGB Video', show_label=True, autoplay=True, format='mp4')
102
 
103
+ result_depth = gr.Video(label='Depth Video', show_label=True, autoplay=True, format='mp4')
104
 
105
  result_ply_file = gr.File(label='Gaussian splatting PLY', show_label=True)
106
 
 
308
 
309
 
310
  if __name__ == '__main__':
311
+ demo.queue().launch()