Spaces:
Runtime error
Runtime error
Upload app.py with huggingface_hub
Browse files
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(
|
|
|
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()
|