Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
@@ -213,22 +213,22 @@ def gradio_worker(
|
|
213 |
)
|
214 |
with gr.Tab('Video') as video_tab:
|
215 |
video_path = gr.Video(label='Video Input')
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
with gr.Tab('Audio') as audio_tab:
|
224 |
audio_path = gr.Audio(label='Audio Input', type='filepath', sources=['upload'])
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
with gr.Tab('Point Cloud') as point_tab:
|
233 |
gr.Markdown('Coming soon🤗')
|
234 |
with gr.Tab('IMU') as imu_tab:
|
|
|
213 |
)
|
214 |
with gr.Tab('Video') as video_tab:
|
215 |
video_path = gr.Video(label='Video Input')
|
216 |
+
gr.Examples(
|
217 |
+
examples=[
|
218 |
+
"examples/flower.mp4",
|
219 |
+
"examples/star_kun.mp4",,
|
220 |
+
],
|
221 |
+
inputs=[video_path],
|
222 |
+
)
|
223 |
with gr.Tab('Audio') as audio_tab:
|
224 |
audio_path = gr.Audio(label='Audio Input', type='filepath', sources=['upload'])
|
225 |
+
gr.Examples(
|
226 |
+
examples=[
|
227 |
+
"examples/bell_ring.wav",
|
228 |
+
"examples/bird_audio.wav",
|
229 |
+
],
|
230 |
+
inputs=[audio_path],
|
231 |
+
)
|
232 |
with gr.Tab('Point Cloud') as point_tab:
|
233 |
gr.Markdown('Coming soon🤗')
|
234 |
with gr.Tab('IMU') as imu_tab:
|